Skip to content

Instantly share code, notes, and snippets.

@johntyree
Created December 13, 2012 19:26
Show Gist options
  • Save johntyree/4279026 to your computer and use it in GitHub Desktop.
Save johntyree/4279026 to your computer and use it in GitHub Desktop.
Pass by 'reference' in VimL
fun! pymode#Toggle(toggle, msg) "{{{
let {a:toggle} = {a:toggle} ? 0 : 1
if {a:toggle}
echomsg a:msg." enabled"
else
echomsg a:msg." disabled"
endif
endfunction "}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment