File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -67,10 +67,11 @@ setting the tag filter with :kbd:`Ctrl`:kbd:`W` or by clicking on the ``Tags``
67
67
button. If the first word of what you've typed matches a valid command, then the
68
68
autocomplete options switch to showing commands that have similar functionality
69
69
to the one that you've typed. Click on an autocomplete list option to select it
70
- or cycle through them with :kbd: `Tab ` and :kbd: `Shift `:kbd: `Tab `. You can run a
71
- command quickly without parameters by double-clicking on the tool name in the
72
- list. Holding down shift while you double-click allows you to run the command
73
- and close `gui/launcher ` at the same time.
70
+ or cycle through them with :kbd: `Shift `:kbd: `Left ` and
71
+ :kbd: `Shift `:kbd: `Right `. You can run a command quickly without parameters by
72
+ double-clicking on the tool name in the list. Holding down shift while you
73
+ double-click allows you to run the command and close `gui/launcher ` at the same
74
+ time.
74
75
75
76
Context-sensitive help and command output
76
77
-----------------------------------------
Original file line number Diff line number Diff line change @@ -354,9 +354,9 @@ function AutocompletePanel:init()
354
354
},
355
355
widgets .Label {
356
356
frame = {l = 1 , t = 1 },
357
- text = {{text = ' Tab ' , pen = COLOR_LIGHTGREEN },
357
+ text = {{text = ' Shift+Left ' , pen = COLOR_LIGHTGREEN },
358
358
{text = ' /' },
359
- {text = ' Shift+Tab ' , pen = COLOR_LIGHTGREEN }}
359
+ {text = ' Shift+Right ' , pen = COLOR_LIGHTGREEN }}
360
360
},
361
361
widgets .Label {
362
362
frame = {l = 0 , t = 3 },
@@ -741,9 +741,9 @@ function MainPanel:onInput(keys)
741
741
elseif keys .CUSTOM_ALT_D then
742
742
toggle_dev_mode ()
743
743
self :refresh_autocomplete ()
744
- elseif keys .CHANGETAB then
744
+ elseif keys .KEYBOARD_CURSOR_RIGHT_FAST then
745
745
self .subviews .autocomplete :advance (1 )
746
- elseif keys .SEC_CHANGETAB then
746
+ elseif keys .KEYBOARD_CURSOR_LEFT_FAST then
747
747
self .subviews .autocomplete :advance (- 1 )
748
748
else
749
749
return false
You can’t perform that action at this time.
0 commit comments