From bf16fe620fa8290eb4c575caec0101b6e1dc5dcd Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Sat, 30 Apr 2022 09:18:16 +0200 Subject: [PATCH] fix: help_tags respect nosplitright for fix #1897 --- lua/telescope/builtin/internal.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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