Fix navigation annoyances #6
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently
tmuxandvimare configured to use the same key bindings fornavigation seamlessly between the two:
C-h,C-j,C-k,C-lThe mechanism for detecting when a pane contains a
viminstance depends on thename of the process that pane is currently running, this is error prone since a
process such as
git commitcan spawn aviminstance. The process name doesnot match
grep -iqE "(^|\/)g?(view|n?vim?)(diff)?$"so onlytmuxnavigationoccurs. A possible solution to this issue:
tmuxwindow options, those prefixed with@followed by any string.tmux set-window option @vim<pane-index> 1vimto set thetmuxwindow option on process start, and unset it onprocess finish.
vimprocess.