Chaves Putty + Vim + Alt

3

Estou usando o Putty (no Windows) para acessar os servidores Ubuntu, eu trabalho muito com o Vim (split e Vsplit) e estou tentando mapear: wincmd? comandos com Alt + Setas. Algo parecido com isto:

nmap <silent> <A-Up> :wincmd k<CR>
nmap <silent> <A-Down> :wincmd j<CR>
nmap <silent> <A-Left> :wincmd h<CR>
nmap <silent> <A-Right> :wincmd l<CR>

Obviamente não trabalhe com Putty, usando diretamente no bash (debian, ubuntu, etc), tudo bem .... Existe alguma maneira de trabalhar com putty + vim?

Ou map: wincmd como o Tmux (Ctrl + B Arrows)

    
por Fausto Branco 24.11.2017 / 16:19

1 resposta

0

Por enquanto, só consegui configurar as mesmas teclas de atalho do Tmux, o que já é bom

Ctrl + B + Setas

vim ~ / .vimrc

colorscheme desert
set nowrap
set expandtab
set tabstop=4
noremap <C-b><Up> :wincmd k<cr>
noremap <C-b><Down> :wincmd j<cr>
noremap <C-b><Left> :wincmd h<cr>
noremap <C-b><Right> :wincmd l<cr>

Para testar:

No vim:

: vsplit : split

Será aberto 3 painéis ... Então, pressione Ctrl + B + setas para navegar.

    
por 27.11.2017 / 18:22

Tags