diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-07-06 19:13:39 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-07-06 19:13:39 +0200 |
commit | 8500ae8bb9f4da69273eace4d9cef54ae7f18627 (patch) | |
tree | 85acb09cdf450251a775e23a76a42db7003303d0 /autoload/crystal_lang.vim | |
parent | d09a56a494863afd789cba1850e123dfc1dd26cf (diff) | |
download | vim-polyglot-8500ae8bb9f4da69273eace4d9cef54ae7f18627.tar.gz vim-polyglot-8500ae8bb9f4da69273eace4d9cef54ae7f18627.zip |
Update
Diffstat (limited to 'autoload/crystal_lang.vim')
-rw-r--r-- | autoload/crystal_lang.vim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/autoload/crystal_lang.vim b/autoload/crystal_lang.vim index a697a943..b0e63ea2 100644 --- a/autoload/crystal_lang.vim +++ b/autoload/crystal_lang.vim @@ -1,8 +1,5 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'crystal') == -1 -let s:save_cpo = &cpo -set cpo&vim - let s:V = vital#crystal#new() let s:P = s:V.import('Process') let s:C = s:V.import('ColorEcho') @@ -365,9 +362,6 @@ function! crystal_lang#expand(file, pos, ...) abort return crystal_lang#tool('expand', a:file, a:pos, get(a:, 1, '')) endfunction -let &cpo = s:save_cpo -unlet s:save_cpo - " vim: sw=2 sts=2 et: endif |