Skip to content

Commit 9694a80

Browse files
committed
temporarily revert to not using tab for 50.11 compat
1 parent 27449d2 commit 9694a80

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/gui/launcher.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,11 @@ setting the tag filter with :kbd:`Ctrl`:kbd:`W` or by clicking on the ``Tags``
6767
button. If the first word of what you've typed matches a valid command, then the
6868
autocomplete options switch to showing commands that have similar functionality
6969
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.
7475

7576
Context-sensitive help and command output
7677
-----------------------------------------

gui/launcher.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,9 @@ function AutocompletePanel:init()
354354
},
355355
widgets.Label{
356356
frame={l=1, t=1},
357-
text={{text='Tab', pen=COLOR_LIGHTGREEN},
357+
text={{text='Shift+Left', pen=COLOR_LIGHTGREEN},
358358
{text='/'},
359-
{text='Shift+Tab', pen=COLOR_LIGHTGREEN}}
359+
{text='Shift+Right', pen=COLOR_LIGHTGREEN}}
360360
},
361361
widgets.Label{
362362
frame={l=0, t=3},
@@ -741,9 +741,9 @@ function MainPanel:onInput(keys)
741741
elseif keys.CUSTOM_ALT_D then
742742
toggle_dev_mode()
743743
self:refresh_autocomplete()
744-
elseif keys.CHANGETAB then
744+
elseif keys.KEYBOARD_CURSOR_RIGHT_FAST then
745745
self.subviews.autocomplete:advance(1)
746-
elseif keys.SEC_CHANGETAB then
746+
elseif keys.KEYBOARD_CURSOR_LEFT_FAST then
747747
self.subviews.autocomplete:advance(-1)
748748
else
749749
return false

0 commit comments

Comments
 (0)