aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/vimrc13
1 files changed, 6 insertions, 7 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 557df575..69bf6e3d 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -93,14 +93,13 @@ scriptencoding utf-8
" a map() over substitute(), string-eval style to accommodate older Vim before
" Funcref variables were added.
"
-" We don't, however, have to deal with escaped backslashes, or any other
-" character; you can read the source code for the ad-hoc tokenizer in
-" copy_option_part() in src/misc2.c in Vim's source code and test it with some
-" values of your own if you want to understand why.
+" We don't, however, have to deal with backslashes before other backslashes,
+" nor before any other character. You can read the source code for the ad-hoc
+" tokenizer in copy_option_part() in src/misc2.c in Vim's source code, and
+" test it with some values of your own, if you want to understand why.
"
-" I'll factor this out into a global function if I ever need it anywhere else.
-"
-" Vim, I love you, but you are really weird.
+" I'll factor all of this mess out into a global function if I ever need it
+" anywhere else. Vim, I love you, but you are really weird.
"
let s:runtimepath = map(
\ split(&runtimepath, '\\\@<!,[, ]*')