File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{ lib } :
2
2
let
3
3
inherit ( lib ) optionalAttrs isAttrs types ;
4
- inherit ( lib . nixvim ) defaultNullOpts ;
4
+ inherit ( lib . nixvim ) defaultNullOpts mkNullOrStr ;
5
5
in
6
6
rec {
7
7
# These are the configuration options that change the behavior of each mapping.
20
20
21
21
remap = defaultNullOpts . mkBool false "Make the mapping recursive. Inverses `noremap`." ;
22
22
23
- desc = lib . nixvim . mkNullOrOption lib . types . str "A textual description of this keybind, to be shown in which-key, if you have it." ;
23
+ desc = mkNullOrStr "A textual description of this keybind, to be shown in which-key, if you have it." ;
24
24
25
25
buffer = defaultNullOpts . mkBool false "Make the mapping buffer-local. Equivalent to adding `<buffer>` to a map." ;
26
26
} ;
You can’t perform that action at this time.
0 commit comments