view runtime/indent/vroom.vim @ 32930:2ff007677dba

runtime(rust): fix rust indent (#12542) Commit: https://github.com/vim/vim/commit/478668013f060a75b8cd8cc6ca2cf2abb3bcc4a5 Author: Raphael <glephunter@gmail.com> Date: Mon Aug 21 02:42:39 2023 +0800 runtime(rust): fix rust indent (https://github.com/vim/vim/issues/12542)
author Christian Brabandt <cb@256bit.org>
date Sun, 20 Aug 2023 20:45:06 +0200
parents 1e8ebf870720
children
line wrap: on
line source

" 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