Ricardo Catalinas Jiménez wrote the following on 05.02.2012 23:15 Hello Ricardo,
-- <snip> -- > Finally Csaba and me decided to send you for inclusion in the official > Vim distribution just the ftplugin for Erlang with the modifications > that Csaba proposed. I have updated the already sent out patch regarding protection against 'set cpo+=l'. It is attached. Please apply it. Is Oscar still the maintainer of this script? > We prefer to keep the current Csaba's syntax and indent scripts > already present in the Vim runtime. If Csaba decides to update any of > those, I support his decision. > > > Regards -- Regards, Thilo 4096R/0xC70B1A8F 721B 1BA0 095C 1ABA 3FC6 7C18 89A4 A2A0 C70B 1A8F -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
erlang.vim
Description: application/wine-extension-vim
--- erlang.vim.orig 2012-02-06 09:11:15.000000000 +0000
+++ erlang.vim 2012-02-06 09:12:34.000000000 +0000
@@ -19,6 +19,9 @@
let s:did_function_definitions = 1
endif
+let s:cpo_save = &cpo
+set cpo&vim
+
if !exists('g:erlang_keywordprg')
let g:erlang_keywordprg = 'erl -man'
endif
@@ -76,3 +79,6 @@
endfunction
call s:SetErlangOptions()
+
+let &cpo = s:cpo_save
+unlet s:cpo_save
