From 120f1cc8c2effe6fb4d601328b0c91786adb506e Mon Sep 17 00:00:00 2001 From: TJ DeVries Date: Mon, 31 Aug 2020 22:43:09 -0400 Subject: [PATCH] closes: #10 --- lua/telescope/pickers.lua | 4 ++++ 1 file changed, 4 insertions(+) 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 = { [""] = actions.close, + + -- TODO: This would be weird if we switch the ordering. + ["j"] = actions.move_selection_next, + ["k"] = actions.move_selection_previous, }, }