Vim Tips Wiki
Advertisement
Tip 673 Printable Monobook Previous Next

created March 9, 2004 · complexity basic · author Yada · version 5.7


I find myself typing :wq in insert-mode many times. Add this to your vimrc.

function WQHelper()
  let x = confirm("Current Mode == Insert-Mode!\n Would you like ':wq'?"," &Yes \n &No",1,1)
  if x == 1
    silent! :wq
  else
    "???
  endif
endfunction
"
iab wq <bs><esc>:call WQHelper()<CR>

Comments


Advertisement