summaryrefslogtreecommitdiff
path: root/lua/telescope/actions/init.lua
diff options
context:
space:
mode:
authorHubert Pelczarski <41551030+hoob3rt@users.noreply.github.com>2021-02-24 03:35:52 +0100
committerGitHub <noreply@github.com>2021-02-24 03:35:52 +0100
commit67b06615371465b53a82c39c603c3249286b5b2a (patch)
tree73c93ec151b303c1b892277aa082eda2502e062d /lua/telescope/actions/init.lua
parent10627e889e82a82560b6fc48ea0ca20e1963d07f (diff)
feat: adds M mapping in normal mode (#544)
Diffstat (limited to 'lua/telescope/actions/init.lua')
-rw-r--r--lua/telescope/actions/init.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/telescope/actions/init.lua b/lua/telescope/actions/init.lua
index 5ae284b..19a6d04 100644
--- a/lua/telescope/actions/init.lua
+++ b/lua/telescope/actions/init.lua
@@ -78,6 +78,11 @@ function actions.move_to_top(prompt_bufnr)
))
end
+function actions.move_to_middle(prompt_bufnr)
+ local current_picker = actions.get_current_picker(prompt_bufnr)
+ current_picker:set_selection(p_scroller.middle(nil, current_picker.max_results, nil))
+end
+
function actions.move_to_bottom(prompt_bufnr)
local current_picker = actions.get_current_picker(prompt_bufnr)
current_picker:set_selection(p_scroller.bottom(current_picker.sorting_strategy,