summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2020-08-31 22:43:09 -0400
committerTJ DeVries <devries.timothyj@gmail.com>2020-08-31 22:43:09 -0400
commit120f1cc8c2effe6fb4d601328b0c91786adb506e (patch)
tree693ddfd71e7b79b7784d79aacd6b754f61ceeb49 /lua
parent018ac0a1183bb4cf5ba07d62be670f7004f886df (diff)
closes: #10
Diffstat (limited to 'lua')
-rw-r--r--lua/telescope/pickers.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/telescope/pickers.lua b/lua/telescope/pickers.lua
index fd1b615..9668ce0 100644
--- a/lua/telescope/pickers.lua
+++ b/lua/telescope/pickers.lua
@@ -35,6 +35,10 @@ local default_mappings = {
n = {
["<esc>"] = actions.close,
+
+ -- TODO: This would be weird if we switch the ordering.
+ ["j"] = actions.move_selection_next,
+ ["k"] = actions.move_selection_previous,
},
}