neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

vroom.vim (379B)


      1 " Vim indent file
      2 " Language:	Vroom (vim testing and executable documentation)
      3 " Maintainer:	David Barnett (https://github.com/google/vim-ft-vroom)
      4 " Last Change:	2014 Jul 23
      5 
      6 if exists('b:did_indent')
      7  finish
      8 endif
      9 let b:did_indent = 1
     10 
     11 let s:cpo_save = &cpo
     12 set cpo-=C
     13 
     14 
     15 let b:undo_indent = 'setlocal autoindent<'
     16 
     17 setlocal autoindent
     18 
     19 
     20 let &cpo = s:cpo_save
     21 unlet s:cpo_save