summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJonathan Birk <1965620+cafce25@users.noreply.github.com>2022-03-20 19:08:54 +0000
committerGitHub <noreply@github.com>2022-03-20 20:08:54 +0100
commit6a43634f5f492113fd0bdec225d936a17b9ecbf2 (patch)
tree67e2131ecb941ab2dfcc6dc98ff1e9e8208fee8b /doc
parent8c7ac1df9dff09630461e99f169047b37b903619 (diff)
doc: help for select_{default,tab,vertical,horizontal} (#1801)
Diffstat (limited to 'doc')
-rw-r--r--doc/telescope.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt
index c3417e1..26638ca 100644
--- a/doc/telescope.txt
+++ b/doc/telescope.txt
@@ -1966,6 +1966,50 @@ actions.toggle_all({prompt_bufnr}) *actions.toggle_all()*
{prompt_bufnr} (number) The prompt bufnr
+actions.select_default({prompt_bufnr}) *actions.select_default()*
+ Perform default action on selection, usually something like
+ `:edit <selection>`
+
+ i.e. open the selection in the current buffer
+
+
+ Parameters: ~
+ {prompt_bufnr} (number) The prompt bufnr
+
+
+actions.select_horizontal({prompt_bufnr}) *actions.select_horizontal()*
+ Perform 'horizontal' action on selection, usually something like
+ `:new <selection>`
+
+ i.e. open the selection in a new horizontal split
+
+
+ Parameters: ~
+ {prompt_bufnr} (number) The prompt bufnr
+
+
+actions.select_vertical({prompt_bufnr}) *actions.select_vertical()*
+ Perform 'vertical' action on selection, usually something like
+ `:vnew <selection>`
+
+ i.e. open the selection in a new vertical split
+
+
+ Parameters: ~
+ {prompt_bufnr} (number) The prompt bufnr
+
+
+actions.select_tab({prompt_bufnr}) *actions.select_tab()*
+ Perform 'tab' action on selection, usually something like
+ `:tabedit <selection>`
+
+ i.e. open the selection in a new tab
+
+
+ Parameters: ~
+ {prompt_bufnr} (number) The prompt bufnr
+
+
actions.git_create_branch({prompt_bufnr}) *actions.git_create_branch()*
Create and checkout a new git branch if it doesn't already exist