summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2022-04-30 09:22:08 +0200
committerSimon Hauser <Simon-Hauser@outlook.de>2022-04-30 09:22:08 +0200
commit460eb8c32bd946cc0e810e93aa72f7d7d9acc19d (patch)
tree68aceb7f97c42a21a42d055306a4ac4892226b7c /lua
parentbf16fe620fa8290eb4c575caec0101b6e1dc5dcd (diff)
fix: man_pages respect nosplitright for <c-v>
followup to bf16fe620fa8290eb4c575caec0101b6e1dc5dcd
Diffstat (limited to '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 8b6421b..99cc296 100644
--- a/lua/telescope/builtin/internal.lua
+++ b/lua/telescope/builtin/internal.lua
@@ -696,7 +696,7 @@ internal.man_pages = function(opts)
if cmd == "default" or cmd == "horizontal" then
vim.cmd("Man " .. args)
elseif cmd == "vertical" then
- vim.cmd("vert bo Man " .. args)
+ vim.cmd("vert Man " .. args)
elseif cmd == "tab" then
vim.cmd("tab Man " .. args)
end