mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 23:24:21 +00:00
kakoune: support user modes in keyMappings
kakoune: support user modes in keyMappings User modes are declared automatically. PR #1286
This commit is contained in:
parent
8736190743
commit
7dc322c1eb
1 changed files with 18 additions and 11 deletions
|
@ -97,16 +97,7 @@ let
|
|||
keyMapping = types.submodule {
|
||||
options = {
|
||||
mode = mkOption {
|
||||
type = types.enum [
|
||||
"insert"
|
||||
"normal"
|
||||
"prompt"
|
||||
"menu"
|
||||
"user"
|
||||
"goto"
|
||||
"view"
|
||||
"object"
|
||||
];
|
||||
type = types.str;
|
||||
example = "user";
|
||||
description = ''
|
||||
The mode in which the mapping takes effect.
|
||||
|
@ -543,6 +534,21 @@ let
|
|||
}"
|
||||
];
|
||||
|
||||
userModeString = mode:
|
||||
optionalString (!builtins.elem mode [
|
||||
"insert"
|
||||
"normal"
|
||||
"prompt"
|
||||
"menu"
|
||||
"user"
|
||||
"goto"
|
||||
"view"
|
||||
"object"
|
||||
]) "try %{declare-user-mode ${mode}}";
|
||||
|
||||
userModeStrings = map userModeString
|
||||
(lists.unique (map (km: km.mode) cfg.config.keyMappings));
|
||||
|
||||
keyMappingString = km:
|
||||
concatStringsSep " " [
|
||||
"map global"
|
||||
|
@ -592,7 +598,8 @@ let
|
|||
++ [ "# UI options" ]
|
||||
++ optional (ui != null) "set-option global ui_options ${uiOptions}"
|
||||
|
||||
++ [ "# Key mappings" ] ++ map keyMappingString keyMappings
|
||||
++ [ "# User modes" ] ++ userModeStrings ++ [ "# Key mappings" ]
|
||||
++ map keyMappingString keyMappings
|
||||
|
||||
++ [ "# Hooks" ] ++ map hookString hooks);
|
||||
in pkgs.writeText "kakrc"
|
||||
|
|
Loading…
Reference in a new issue