mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
40 lines
827 B
Nix
40 lines
827 B
Nix
|
# Test custom keymap functionality
|
||
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
programs.zed-editor = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { };
|
||
|
userKeymaps = [
|
||
|
{ bindings = { up = "menu::SelectPrev"; }; }
|
||
|
{
|
||
|
context = "Editor";
|
||
|
bindings = { escape = "editor::Cancel"; };
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
|
||
|
nmt.script = let
|
||
|
expectedContent = builtins.toFile "expected.json" ''
|
||
|
[
|
||
|
{
|
||
|
"bindings": {
|
||
|
"up": "menu::SelectPrev"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"bindings": {
|
||
|
"escape": "editor::Cancel"
|
||
|
},
|
||
|
"context": "Editor"
|
||
|
}
|
||
|
]
|
||
|
'';
|
||
|
|
||
|
keymapPath = ".config/zed/keymap.json";
|
||
|
in ''
|
||
|
assertFileExists "home-files/${keymapPath}"
|
||
|
assertFileContent "home-files/${keymapPath}" "${expectedContent}"
|
||
|
'';
|
||
|
}
|