In another thread this terrific mapping was suggested as a way to upper-case SQL keywords:
noremap <leader>s <Esc>:s/\v<select>\|<from>\|<insert>\|<into>\|<table>\|<where>\|<delete>\|<limit>\|<order>\|<by>\|<asc>\|<desc>\|<set>\|<update>/\U\0/g<Return>
However, it appears that <insert> and <delete> are VIM keywords. How does one escape them? The obvious attempt to precede them with \ does not work!
Thanks.
\vat the beginning and escape all the<>with backslashes. – romainl Oct 26 '12 at 15:06