Skip to content

Instantly share code, notes, and snippets.

@SethMilliken
Created October 7, 2011 01:40
Show Gist options
  • Save SethMilliken/1269234 to your computer and use it in GitHub Desktop.
Save SethMilliken/1269234 to your computer and use it in GitHub Desktop.
function! TestFunction(option)
exec "let original = &" . a:option
exec "set " . a:option . "&"
exec "let default = &" . a:option
exec "set " . a:option . "=" . original
if original == default
echo "heck yeah!"
endif
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment