diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-09-11 13:24:17 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-09-11 13:24:17 +0200 |
commit | 0244e228faf6ee71750cbca3bdcd18411a927d22 (patch) | |
tree | a72e5c9839ea593f6edc23f7f0e637e0a4a89413 /indent/eruby.vim | |
parent | ab61d2ac8eafc9c10097577736602da48ec568ca (diff) | |
download | vim-polyglot-0244e228faf6ee71750cbca3bdcd18411a927d22.tar.gz vim-polyglot-0244e228faf6ee71750cbca3bdcd18411a927d22.zip |
Update
Diffstat (limited to 'indent/eruby.vim')
-rw-r--r-- | indent/eruby.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indent/eruby.vim b/indent/eruby.vim index 82313a08..3736f529 100644 --- a/indent/eruby.vim +++ b/indent/eruby.vim @@ -43,6 +43,10 @@ if exists("*GetErubyIndent") finish endif +" this file uses line continuations +let s:cpo_sav = &cpo +set cpo&vim + function! GetErubyIndent(...) " The value of a single shift-width if exists('*shiftwidth') @@ -101,6 +105,9 @@ function! GetErubyIndent(...) return ind endfunction +let &cpo = s:cpo_sav +unlet! s:cpo_sav + " vim:set sw=2 sts=2 ts=8 noet: endif |