From 901fc36da55f92de981fdc135125544c1b690ace Mon Sep 17 00:00:00 2001 From: Bruno Romero Date: Thu, 22 Jun 2023 17:58:52 -0300 Subject: [PATCH] fix(harpoon): typo in concatenation (#303) fixes harpoon --- lua/astrocommunity/motion/harpoon/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/astrocommunity/motion/harpoon/init.lua b/lua/astrocommunity/motion/harpoon/init.lua index 1eb51704d..ca83712b8 100644 --- a/lua/astrocommunity/motion/harpoon/init.lua +++ b/lua/astrocommunity/motion/harpoon/init.lua @@ -1,6 +1,6 @@ local prefix = "" local running_tmux_session = vim.fn.exists "$TMUX" == 1 -local dynamic_tmux_keymap_desc = "Go to " .. running_tmux_session and "TMUX" or "terminal" .. " window" +local dynamic_tmux_keymap_desc = "Go to " .. (running_tmux_session and "TMUX" or "terminal") .. " window" local icon = vim.g.icons_enabled and "󱡀 " or "" return { "ThePrimeagen/harpoon",