Tmux and neovim and moving between panels not working

Last night i decided to start using tmux again, i could create panels and move bet them, but when i launched neovim i couldn’t move out of that panel * ok, there’s a nice plugin for that tmux.nvim that works in the mac, but when i ssh to my linux little box (raspberryp) suddenly it doesn’t work

i use c-hjkl to move between panels.

Any idea why this is happening?

I have this in my .tmux.conf, taken from this vim plugin: vim-tmux-navigator. I’m on a mac but it should work just fine on linux?

is_vim="ps -o state= -o comm= -t '#{pane_tty}' \
    | grep -iqE '^[^TXZ ]+ +(\\S+\\/)?g?(view|n?vim?x?)(diff)?$'"
bind-key -n 'C-h' if-shell "$is_vim" 'send-keys C-h'  'select-pane -L'
bind-key -n 'C-j' if-shell "$is_vim" 'send-keys C-j'  'select-pane -D'
bind-key -n 'C-k' if-shell "$is_vim" 'send-keys C-k'  'select-pane -U'
bind-key -n 'C-l' if-shell "$is_vim" 'send-keys C-l'  'select-pane -R'
tmux_version='$(tmux -V | sed -En "s/^tmux ([0-9]+(.[0-9]+)?).*/\1/p")'
if-shell -b '[ "$(echo "$tmux_version < 3.0" | bc)" = 1 ]' \
    "bind-key -n 'C-\\' if-shell \"$is_vim\" 'send-keys C-\\'  'select-pane -l'"
if-shell -b '[ "$(echo "$tmux_version >= 3.0" | bc)" = 1 ]' \
    "bind-key -n 'C-\\' if-shell \"$is_vim\" 'send-keys C-\\\\'  'select-pane -l'"
1 Like

Thank you, i’ll give this a try.

SOLVED
Somehow it just started working. Maybe it was an update. I am running nightly…
Thanks for watching!!