summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/internal.lua
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2022-04-30 09:18:16 +0200
committerSimon Hauser <Simon-Hauser@outlook.de>2022-04-30 09:18:16 +0200
commitbf16fe620fa8290eb4c575caec0101b6e1dc5dcd (patch)
treecea391228365ea03c5a0c0c5c0459683cc5613bc /lua/telescope/builtin/internal.lua
parent7cde1ca834ff421f2545ccbc10d282b6a6290263 (diff)
fix: help_tags respect nosplitright for <c-v>
fix #1897
Diffstat (limited to 'lua/telescope/builtin/internal.lua')
-rw-r--r--lua/telescope/builtin/internal.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin/internal.lua b/lua/telescope/builtin/internal.lua
index 9f0e1e9..8b6421b 100644
--- a/lua/telescope/builtin/internal.lua
+++ b/lua/telescope/builtin/internal.lua
@@ -657,7 +657,7 @@ internal.help_tags = function(opts)
if cmd == "default" or cmd == "horizontal" then
vim.cmd("help " .. selection.value)
elseif cmd == "vertical" then
- vim.cmd("vert bo help " .. selection.value)
+ vim.cmd("vert help " .. selection.value)
elseif cmd == "tab" then
vim.cmd("tab help " .. selection.value)
end