aserowy / tmux.nvim

tmux integration for nvim features pane movement and resizing from within nvim.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enhancement: Not jump to other tmux pane if current pane is in fullscreen

imroc opened this issue · comments

commented

When there are a few windows in neovim, and also a few pane in tmux window, and current pane is in fullscreen, I use C-hjkl to jump to other window in neovim, but it jumped to other tmux pane, which is not what I wanted, If we can disable jump tmux panes in fullscreen, it would be useful.

Heho,

i guess you are looking for the following config entry. Let me know, if this is what you meant.

navigation = {
        -- prevents unzoom tmux when navigating beyond vim border
        persist_zoom = true,
...
commented

@aserowy Cool, thanks, that's just what I wanted