Created
February 2, 2015 12:39
-
-
Save haya14busa/53c5a1b32858107d5a36 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! s:_source(path) abort | |
try | |
execute ':source' a:path | |
catch /^Vim\%((\a\+)\)\=:E121/ | |
" NOTE: workaround for `E121: Undefined variable: s:save_cpo` | |
execute ':source' a:path | |
endtry | |
endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment