Skip to content

Commit

Permalink
fix(harpoon): typo in concatenation (#303)
Browse files Browse the repository at this point in the history
fixes harpoon
  • Loading branch information
bruunoromero authored Jun 22, 2023
1 parent 9bb0747 commit 901fc36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/astrocommunity/motion/harpoon/init.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local prefix = "<leader><leader>"
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",
Expand Down

0 comments on commit 901fc36

Please sign in to comment.