We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc2ca1 commit 813221cCopy full SHA for 813221c
init.lua
@@ -168,11 +168,11 @@ end
168
-- @name keys
169
M.keys = {
170
['\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
+ [not OSX and 'ctrl+ ' or 'alt+esc'] = M.complete_lua,
+ ['ctrl+up'] = M.cycle_history_prev,
+ ['ctrl+down'] = M.cycle_history_next,
+ ['ctrl+p'] = M.cycle_history_prev,
+ ['ctrl+n'] = M.cycle_history_next
176
}
177
-- LuaFormatter on
178
0 commit comments