aboutsummaryrefslogtreecommitdiffhomepage
path: root/snippets/vim_autoevent_for_visual_mode
blob: 998a5846cc621ce148b80dc0e6d2d09b64dd6af8 (plain)
1
2
3
4
5
augroup VisualEvent
  autocmd!
  autocmd ModeChanged *:[vV\x16]* :echom 'VisualEnter'
  autocmd Modechanged [vV\x16]*:* :echom 'VisualLeave'
augroup END