I have an EX command that I use pretty regularly to remove multi-line comments.
:%s,/\*\_.\{-}\*/\n,,g
Is there any way I can make it an EX alias (if such a thing exists?) in vimrc file?
The goal would be something like:
:nocomments
Then it would run that regex search and replace. Thanks!