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 6if exists('b:did_indent') 7 finish 8endif 9let b:did_indent = 1 10 11let s:cpo_save = &cpo 12set cpo-=C 13 14 15let b:undo_indent = 'setlocal autoindent<' 16 17setlocal autoindent 18 19 20let &cpo = s:cpo_save 21unlet s:cpo_save 22