mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
096d9c04b3
The documentation for the option says... > If you want a default binding to be passed through to the website, > bind it to null. but if you actually try to set a key to `null`, it causes an error. > A definition for option > `programs.qutebrowser.keyBindings."<Ctrl+Shift+Tab>".normal' is not > of type `strings concatenated with " ;; "'. So this commit implements unbinding as it is documented.
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
|
|
enableDefaultBindings = false;
|
|
|
|
keyBindings = {
|
|
normal = {
|
|
":" = null;
|
|
"<Ctrl-v>" = "spawn mpv {url}";
|
|
",l" = ''config-cycle spellcheck.languages ["en-GB"] ["en-US"]'';
|
|
"<F1>" = lib.mkMerge [
|
|
"config-cycle tabs.show never always"
|
|
"config-cycle statusbar.show in-mode always"
|
|
"config-cycle scrolling.bar never always"
|
|
];
|
|
};
|
|
prompt = { "<Ctrl-y>" = "prompt-yes"; };
|
|
};
|
|
};
|
|
|
|
test.stubs.qutebrowser = { };
|
|
|
|
nmt.script = let
|
|
qutebrowserConfig = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
".qutebrowser/config.py"
|
|
else
|
|
".config/qutebrowser/config.py";
|
|
in ''
|
|
assertFileContent \
|
|
home-files/${qutebrowserConfig} \
|
|
${
|
|
pkgs.writeText "qutebrowser-expected-config.py" ''
|
|
config.load_autoconfig(False)
|
|
c.bindings.default = {}
|
|
config.bind(",l", "config-cycle spellcheck.languages [\"en-GB\"] [\"en-US\"]", mode="normal")
|
|
config.unbind(":", mode="normal")
|
|
config.bind("<Ctrl-v>", "spawn mpv {url}", mode="normal")
|
|
config.bind("<F1>", "config-cycle tabs.show never always ;; config-cycle statusbar.show in-mode always ;; config-cycle scrolling.bar never always", mode="normal")
|
|
config.bind("<Ctrl-y>", "prompt-yes", mode="prompt")''
|
|
}
|
|
'';
|
|
}
|