Skip to content

Instantly share code, notes, and snippets.

@dahu
Created July 4, 2012 13:26
Show Gist options
  • Select an option

  • Save dahu/3047302 to your computer and use it in GitHub Desktop.

Select an option

Save dahu/3047302 to your computer and use it in GitHub Desktop.
toggle or inc/dec
function! ToggleBoolean()
return "ciw\<c-r>=@\" =~# 'true' ? 'false' : 'true'\<cr>\<esc>"
endfunction
nnoremap <expr> <c-x> match(expand('<cword>'), '[-+]\?\d\+') == -1 ? ToggleBoolean() : ":normal! \<c-x>\<cr>"
finish
3
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment