I am using the ex mode of vim in a script to perform vim regular expression and substitution on text files.
ex $NAME <<EOEX
:%s/<.\{-}>//g
:%s/\[.\{-}\]//g
:%s/ / /g
:%s/^Contents$
:%s/^\d.*$
:%s/ (.\{1,4\})//g
:g/^$\n^$/d
:x
EOEX
I was having issues with the regex :%s/ ([^)]\{-}[^\d0-\d1000].\{-})//g
(not shown). I am using it to filter out sets of parentheses and their contents when a character with a value greater than 1000 is found within.
This expression would delete all sets of parentheses and content when put into the ex commands above, so I had to call it the following way:
vim $NAME -c ':%s/ ([^)]\{-}[^\d0-\d1000].\{-})//g' -c ':wq'
which works fine. Does anyone have insight into why it works when given to vim with the -c option but not as a command in ex mode?
(Side question: what does the syntax of <<'EOEX ... EOEX' do? I can't find any documentation for it. EDIT: As I understand it now, the use of <<'EOEX ... EOEX' is a Here document and EOEX wraps the string literal that is passed to the ex $NAME command. As far as it seems to me the name of the wrapping identified (in my case EOEX) is arbitrary)