Tag: vim

0

auto save in vim

I’d been using vim-auto-save for a long time, but I also found that it often messed up with my buffer order because it used silent wa to save all buffers. And sometimes undo didn’t work, I suspected t

0

map Ctrl-V as Ctrl-Q in vim

If you want to map Ctrl-V as Ctrl-Q, you can add the following line in your .vimrc file 1nnoremap <C-V> <C-Q> It works in gvim, but it wouldn’t work in terminal-vim. Why? I’d been confused