Skip to content

Commit 813221c

Browse files
committed
Fixed key bindings.
They were not updated to the new format.
1 parent 2fc2ca1 commit 813221c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

init.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,11 @@ end
168168
-- @name keys
169169
M.keys = {
170170
['\n'] = M.evaluate_repl,
171-
[not OSX and 'c ' or 'aesc'] = M.complete_lua,
172-
cup = M.cycle_history_prev,
173-
cdown = M.cycle_history_next,
174-
cp = M.cycle_history_prev,
175-
cn = M.cycle_history_next
171+
[not OSX and 'ctrl+ ' or 'alt+esc'] = M.complete_lua,
172+
['ctrl+up'] = M.cycle_history_prev,
173+
['ctrl+down'] = M.cycle_history_next,
174+
['ctrl+p'] = M.cycle_history_prev,
175+
['ctrl+n'] = M.cycle_history_next
176176
}
177177
-- LuaFormatter on
178178

0 commit comments

Comments
 (0)