summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorkylo252 <59826753+kylo252@users.noreply.github.com>2022-04-22 16:13:32 +0200
committerGitHub <noreply@github.com>2022-04-22 16:13:32 +0200
commitcc1a3440f9ba6f28a8ca0bfff867f60c2d80c353 (patch)
tree965bd4cb118219c3f45dfdd7442379938f849938 /doc
parent5a58b1f53577a8e124d703b5f8f3a29d07416753 (diff)
fix: fix keep insert when going from telescope window to telescope window (#1600)
Also fixes `initial_mode` Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
Diffstat (limited to 'doc')
-rw-r--r--doc/telescope.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt
index e6a2a5e..501c2e3 100644
--- a/doc/telescope.txt
+++ b/doc/telescope.txt
@@ -2179,14 +2179,14 @@ actions.close({prompt_bufnr}) *telescope.actions.close()*
{prompt_bufnr} (number) The prompt bufnr
-actions._close({prompt_bufnr}, {keepinsert}) *telescope.actions._close()*
- Close the Telescope window and specify if you want to keep insert mode or
- not
+actions._close({prompt_bufnr}) *telescope.actions._close()*
+ Close the Telescope window, usually used within an action
+ Deprecated and no longer needed, does the same as
+ |telescope.actions.close|. Might be removed in the future
Parameters: ~
- {prompt_bufnr} (number) The prompt bufnr
- {keepinsert} (boolean) Remain in INSERT mode if true
+ {prompt_bufnr} (number) The prompt bufnr
actions.edit_command_line({prompt_bufnr}) *telescope.actions.edit_command_line()*