mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
272f1064c7
Updated runtime files. https://code.google.com/p/vim/source/detail?r=1e8ebf870720e7b671f98f22d653009826304c4f
22 lines
379 B
VimL
22 lines
379 B
VimL
" Vim indent file
|
|
" Language: Vroom (vim testing and executable documentation)
|
|
" Maintainer: David Barnett (https://github.com/google/vim-ft-vroom)
|
|
" Last Change: 2014 Jul 23
|
|
|
|
if exists('b:did_indent')
|
|
finish
|
|
endif
|
|
let b:did_indent = 1
|
|
|
|
let s:cpo_save = &cpo
|
|
set cpo-=C
|
|
|
|
|
|
let b:undo_indent = 'setlocal autoindent<'
|
|
|
|
setlocal autoindent
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
unlet s:cpo_save
|