From e6e564a29c618b4dfd158b5ba2b1cfb549fe41a6 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 9 Jun 2019 01:19:39 +1200 Subject: Adjust comma comment --- vim/vimrc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'vim') diff --git a/vim/vimrc b/vim/vimrc index 35e838be..0b359398 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -80,15 +80,16 @@ endif " The path named in the MYVIM environment variable can't contain a comma " anywhere, because its use in comma-separated option values will confuse Vim -" into thinking more than one directory is being specified for the option -" value, per normal :set semantics. If there's a comma, we raise an error and -" end the script. +" into thinking more than one directory is being specified, per normal :set +" semantics. " " It's possible to work around this with some careful escaping, either at :set " time with an :execute abstraction or with a separate environment variable " for that particular context, but it's not really worth the extra complexity " for such a niche situation. " +" So, if there's a comma, we just raise an error and end the script. +" if stridx($MYVIM, ',') != -1 echoerr '$MYVIM contains a comma, refusing to proceed' finish -- cgit v1.2.3