dotfiles

<-- duh.
git clone https://hhvn.uk/dotfiles
git clone git://hhvn.uk/dotfiles
Log | Files | Refs | Submodules | LICENSE

lazy_print.vim (340B)


      1 " function to wait to print error messages
      2 function! quick_scope#lazy_print#err(message) abort
      3   augroup quick_scope_lazy_print
      4     autocmd!
      5     " clear the augroup so that these lazy loaded error messages only execute
      6     " once after starting
      7   augroup END
      8   echohl ErrorMsg
      9   echomsg 'quick_scope ' . a:message
     10   echohl None
     11 endfunction