summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2019-05-22 06:43:32 -0700
committerAmjith Ramanujam <amjith.r@gmail.com>2019-05-22 06:43:32 -0700
commit2cd7ed8305c534cef9418d72ec0d056171937140 (patch)
treec27276771db286095d38360cc76f7ff3d8728da4
parent1d061a376ded6e2d37983d68f94bccea5289c250 (diff)
Use s-tab to select the last item in the completion menu.
-rw-r--r--litecli/key_bindings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/litecli/key_bindings.py b/litecli/key_bindings.py
index 43394e5..44d59d2 100644
--- a/litecli/key_bindings.py
+++ b/litecli/key_bindings.py
@@ -46,7 +46,7 @@ def cli_bindings(cli):
if b.complete_state:
b.complete_previous()
else:
- b.start_completion(select_first=True)
+ b.start_completion(select_last=True)
@kb.add("c-space")
def _(event):