mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
maps: fix bad mode names
This commit is contained in:
parent
cce4195148
commit
93c6f6e7f4
1 changed files with 11 additions and 11 deletions
|
@ -42,17 +42,17 @@ in {
|
|||
}
|
||||
];
|
||||
})
|
||||
(mapAttrs (_key: processLegacyMap "n") cfg.maps.normal)
|
||||
(mapAttrs (_key: processLegacyMap "i") cfg.maps.insert)
|
||||
(mapAttrs (_key: processLegacyMap "s") cfg.maps.select)
|
||||
(mapAttrs (_key: processLegacyMap "v") cfg.maps.visual)
|
||||
(mapAttrs (_key: processLegacyMap "t") cfg.maps.terminal)
|
||||
(mapAttrs (_key: processLegacyMap "nvo") cfg.maps.normalVisualOp)
|
||||
(mapAttrs (_key: processLegacyMap "nx") cfg.maps.visualOnly)
|
||||
(mapAttrs (_key: processLegacyMap "o") cfg.maps.operator)
|
||||
(mapAttrs (_key: processLegacyMap "ic") cfg.maps.insertCommand)
|
||||
(mapAttrs (_key: processLegacyMap "l") cfg.maps.lang)
|
||||
(mapAttrs (_key: processLegacyMap "c") cfg.maps.command)
|
||||
(mapAttrs (_key: processLegacyMap ["n"]) cfg.maps.normal)
|
||||
(mapAttrs (_key: processLegacyMap ["i"]) cfg.maps.insert)
|
||||
(mapAttrs (_key: processLegacyMap ["s"]) cfg.maps.select)
|
||||
(mapAttrs (_key: processLegacyMap ["v"]) cfg.maps.visual)
|
||||
(mapAttrs (_key: processLegacyMap ["t"]) cfg.maps.terminal)
|
||||
(mapAttrs (_key: processLegacyMap ["n" "v" "o"]) cfg.maps.normalVisualOp)
|
||||
(mapAttrs (_key: processLegacyMap ["n" "x"]) cfg.maps.visualOnly)
|
||||
(mapAttrs (_key: processLegacyMap ["o"]) cfg.maps.operator)
|
||||
(mapAttrs (_key: processLegacyMap ["i" "c"]) cfg.maps.insertCommand)
|
||||
(mapAttrs (_key: processLegacyMap ["l"]) cfg.maps.lang)
|
||||
(mapAttrs (_key: processLegacyMap ["c"]) cfg.maps.command)
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue