Ideally, I would like to <A-left>fulfill :tabmove -1and <A-right>fulfill :tabmove +1. However, when I put
nnoremap <A-left> :tabmove -1<cr>
nnoremap <A-right> :tabmove +1<cr>
in my .vimrc and try or, vim beeps and moves my cursor one character in the direction I clicked. However, entering :tabmove -1<cr>directly into command mode gives the desired effect. How can i fix this? Thanks in advance.
source
share