mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 17:24:32 +02:00
modules/keymaps: fix bug in keymaps generation (#184)
This commit is contained in:
parent
98ab10b8f2
commit
67f5db9cfd
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ with lib; rec {
|
||||||
action =
|
action =
|
||||||
if action.lua
|
if action.lua
|
||||||
then mkRaw action.action
|
then mkRaw action.action
|
||||||
else action;
|
else action.action;
|
||||||
})
|
})
|
||||||
maps;
|
maps;
|
||||||
in
|
in
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue