Skip to content

Instantly share code, notes, and snippets.

@chrisortman
Created August 3, 2011 21:25
Show Gist options
  • Save chrisortman/1123807 to your computer and use it in GitHub Desktop.
Save chrisortman/1123807 to your computer and use it in GitHub Desktop.
vim script to remove webforms tags and replace with razor
function! DumpWebforms()
%s/<% \([^}]\)/@\1
%s/<%= /@
%s/<%=/@
%s/<%//
%s/%>//
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment