Skip to content

Instantly share code, notes, and snippets.

@haya14busa
Created February 2, 2015 12:39
Show Gist options
  • Save haya14busa/53c5a1b32858107d5a36 to your computer and use it in GitHub Desktop.
Save haya14busa/53c5a1b32858107d5a36 to your computer and use it in GitHub Desktop.
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