a capacidade de alternar entre painéis foi interrompida no tmux com o vim

1
Ok, então eu rodei o vim dentro do tmux e recentemente (hoje, de fato) eu de repente não posso usar o ctrl+hjkl para alternar entre os painéis no tmux e no vim, em vez disso, ele soa a campainha e se recusa a mudar. / p>

Se eu selecionar o painel tmux com o mouse, posso voltar para o painel vim usando ctrl+hjkl , mas novamente não posso voltar a sair a menos que eu use o mouse (eu sei, eu sei).

O problema ocorre apenas no painel que contém o vim.

No meu tmux.conf eu tenho:

# smart pane switching with awareness of vim splits
bind -n C-h run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-h) || tmux select-pane -L"
bind -n C-j run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-j) || tmux select-pane -D"
bind -n C-k run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-k) || tmux select-pane -U"
bind -n C-l run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys C-l) || tmux select-pane -R"
bind -n C-\ run "(tmux display-message -p '#{pane_current_command}' | grep -iq vim && tmux send-keys 'C-\') || tmux select-pane -l"

e tenho as seguintes combinações de teclas na configuração do meu vim:

so ~/.vim/config/key_codes.vim

" Buffer switching
nnoremap <S-l> :bnext<CR>
nnoremap <S-h> :bprev<CR>

" \d delete buffer
nnoremap <S-x> :Kwbd<CR> 

"tagbar toggling
map <F8> :TagbarToggle<CR> 
map <F7> :NERDTreeToggle<CR>

" Increment numbers
nnoremap <A-a> <C-a>
nnoremap <A-x> <C-x>

nmap <C-W>! <Plug>Kwbd

nmap <C-p> :CommandT<CR>

map <Leader>c :call vroom#RunTestFile()<CR>
map <Leader>s :call vroom#RunNearestTest()<CR>
" \t to jump to test file
map <leader>t :A<CR>
" \t to jump to related file
map <leader>r :r<cr>
" \E to open file explorer in root
map <leader>E :Explore .<cr>
" \e to open file explorer in current dir
map <leader>e :Explore<cr>

"nerd tree mapings
" map <C-n> <plug>NERDTreeFocusToggle<CR>

" shift plus arrow for selection mode
" shift+arrow selection
map  <Del> <Esc>x1i
vmap  <Del> <Esc>x1v

"multi-cursor mappings"
let g:multi_cursor_next_key='<C-n>'
let g:multi_cursor_prev_key='<C-p>'
let g:multi_cursor_skip_key='<C-x>'
let g:multi_cursor_quit_key='<Esc>'

" Removing escape
ino jj <esc>
cno jj <c-c>
vno v <esc>

" Remove highlights with leader + enter
nmap <Leader><CR> :nohlsearch<cr>

" Ruby hash syntax conversion
nnoremap <F12> :%s/:\([^ ]*\)\(\s*\)=>/:/g<return>

" bind K to grep word under cursor
vmap K :grep! "\b<C-R><C-W>\b"<CR>:cw<CR>

key_codes.vim:

function Allmap(mapping)
  execute 'map' a:mapping
  execute 'map!' a:mapping
endfunction


call Allmap('   <ESC>[A         <Up>')
call Allmap('   <ESC>[B         <Down>')
call Allmap('   <ESC>[C         <Right>')
call Allmap('   <ESC>[D         <Left>')
call Allmap('   <ESC>[F         <End>')
call Allmap('   <ESC>[H         <Home>')
call Allmap('   <ESC>[5~        <PageUp>')
call Allmap('   <ESC>[6~        <PageDown>')
call Allmap('   <ESC>[k4~       <C-Left>')
call Allmap('   <ESC>[5D        <C-Left>')
call Allmap('   <ESC>Od         <C-Left>')
call Allmap('   <ESC>[k6~       <C-Right>')
call Allmap('   <ESC>[5C        <C-Right>')
call Allmap('   <ESC>Oc         <C-Right>')
call Allmap('   <ESC>[1;2       <S>')
call Allmap('   <ESC>[1;2A      <S-Up>')
call Allmap('   <ESC>[1;2B      <S-Down>')
call Allmap('   <ESC>[1;2C      <S-Right>')
call Allmap('   <ESC>[1;2D      <S-Left>')
call Allmap('   <ESC>[1;2d      <S-d>')
call Allmap('   <ESC>[1;2x      <S-x>')
call Allmap('   <ESC>[1;2s      <S-s>')
call Allmap('   <ESC>[3~        <Del>')
call Allmap('   <ESC>[1;2h       <S-h>')
call Allmap('   <ESC>[1;2l       <S-l>')

e porque pode ser importante meus dotfiles .

EDITAR: Segurar ctrl e pressionar h faz meu cursor se mover para a esquerda e fazer o mesmo, mas com l cuases meu cursor pisca em Nerdtree e então ele imediatamente pisca de volta ao buffer de texto principal.

O mesmo acontece com j e k , exceto que ele move o cursor para baixo e se recusa a mudar para cima.

    
por Thermatix 25.07.2017 / 14:45

1 resposta

0

Ok, então por recomendação de outra pessoa eu instalei um plugin chamado vim-tmux-navigator assim:

Bundle "tmux-plugins/vim-tmux"

e ele consertou meu problema, enquanto eu não estou feliz que eu tive que instalar um plugin para recuperar a funcionalidade que eu tinha antes de parar de funcionar, pelo menos está funcionando agora, no lado direito, eu não tinha para alterar o meu tmux-conf como o que eu já tinha era bom o suficiente.

    
por 29.07.2017 / 13:52