Skip to content

Instantly share code, notes, and snippets.

@kcollasarundell
Created March 12, 2012 16:46
Show Gist options
  • Save kcollasarundell/2023268 to your computer and use it in GitHub Desktop.
Save kcollasarundell/2023268 to your computer and use it in GitHub Desktop.
Vim indenting and regex
"Brute force an ignorance time
if line =~ '^\s*#'
return indent
elseif line =~ ':\s*$'
return increase
elseif line =~ ':\s*#.*$'
return increase
else
return indent
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment