comparison runtime/ftplugin/erlang.vim @ 3410:94601b379f38

Updated runtime files. Add Dutch translations.
author Bram Moolenaar <bram@vim.org>
date Sun, 11 Mar 2012 15:57:40 +0100
parents b37888de599c
children 5b7ea82bc18f
comparison
equal deleted inserted replaced
3409:b3ccae22bae7 3410:94601b379f38
16 call s:SetErlangOptions() 16 call s:SetErlangOptions()
17 finish 17 finish
18 else 18 else
19 let s:did_function_definitions = 1 19 let s:did_function_definitions = 1
20 endif 20 endif
21
22 let s:cpo_save = &cpo
23 set cpo&vim
21 24
22 if !exists('g:erlang_keywordprg') 25 if !exists('g:erlang_keywordprg')
23 let g:erlang_keywordprg = 'erl -man' 26 let g:erlang_keywordprg = 'erl -man'
24 endif 27 endif
25 28
74 77
75 return retval 78 return retval
76 endfunction 79 endfunction
77 80
78 call s:SetErlangOptions() 81 call s:SetErlangOptions()
82
83 let b:undo_ftplugin = "setlocal foldmethod< foldexpr< foldtext<"
84 \ . " comments< commentstring< formatoptions<"
85
86 let &cpo = s:cpo_save
87 unlet s:cpo_save