summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-10 20:21:50 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-10 20:21:50 -0800
commit86eaa7369827554ad252892838b261a11b79ddec (patch)
tree542cdb69d2cd6db0ae7da2f2060cdf15d657d724
parent8339dd0b19b325df9e07a6633d2892833e39f635 (diff)
fix: broke tmux navigatormain
-rw-r--r--.config/nvim/lua/function.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/function.lua b/.config/nvim/lua/function.lua
index d0327fd..6754212 100644
--- a/.config/nvim/lua/function.lua
+++ b/.config/nvim/lua/function.lua
@@ -20,7 +20,7 @@ function navigate_tmux(direction)
local notmove = (winnr == vim.fn.winnr())
if notmove then
- vim.fn.system("tmux -S " .. socket .. " select-pane -" .. tmux_map[direction])
+ vim.fn.system("command tmux -S " .. socket .. " select-pane -" .. tmux_map[direction])
end
end