Skip to content

Commit b500daa

Browse files
committed
fix: remove nowait in local mappings to stop overriding global mappings, fixes #213
1 parent 6b379bf commit b500daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/neo-tree/ui/renderer.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ create_window = function(state)
551551
["nop"] = true,
552552
["noop"] = true,
553553
}
554-
local map_options = { noremap = true, nowait = true }
554+
local map_options = { noremap = true }
555555
local mappings = utils.get_value(state, "window.mappings", {}, true)
556556
for cmd, func in pairs(mappings) do
557557
if utils.truthy(func) then

0 commit comments

Comments
 (0)