aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-17 23:31:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-17 23:31:49 +1200
commitf08628015d664700b03812962540f01f2d1bc643 (patch)
treefc84e3e3b2b7a532bebb02e9d4bea21c8777c9a5 /vim
parentCorrect variable reference (diff)
downloaddotfiles-f08628015d664700b03812962540f01f2d1bc643.tar.gz
dotfiles-f08628015d664700b03812962540f01f2d1bc643.zip
Adjust comment
Diffstat (limited to 'vim')
-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, '\\\@<!,[, ]*')