From 59674079544753e40a9d93b93012089c0ea647c0 Mon Sep 17 00:00:00 2001 From: Bruno Romero Date: Thu, 22 Jun 2023 17:51:41 -0300 Subject: [PATCH] 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",