Skip to content

Commit

Permalink
respect v:count when navigating
Browse files Browse the repository at this point in the history
  • Loading branch information
kjubybot committed Mar 2, 2024
1 parent 9c02adf commit 177e9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/tmux/navigation/navigate.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function M.to(direction)
elseif is_nvim_border and options.navigation.cycle_navigation then
nvim.wincmd(opposite_directions[direction], 999)
elseif not is_nvim_border then
nvim.wincmd(direction)
nvim.wincmd(direction, vim.v.count)
end
end

Expand Down

0 comments on commit 177e9b9

Please sign in to comment.