aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-14 01:26:25 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-14 01:26:25 +1200
commite5290f5e0a575fe644722267759f5119db62858d (patch)
tree25b2775cdd764cb87064f92b980c6749ff89281f
parentSpell checking (US English) and reformatting (diff)
downloaddotfiles-e5290f5e0a575fe644722267759f5119db62858d.tar.gz
dotfiles-e5290f5e0a575fe644722267759f5119db62858d.zip
Use arrows to indicate regex parts
-rw-r--r--vim/vimrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/vim/vimrc b/vim/vimrc
index c8a32ca2..ff46a151 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -75,13 +75,13 @@ scriptencoding utf-8
"
" The pattern required for the split breaks down like this:
"
-" \\ -- Literal backslash
-" \@<! -- Negative lookbehind assertion; means that whatever occurred
+" \\ <- Literal backslash
+" \@<! <- Negative lookbehind assertion; means that whatever occurred
" before this pattern, here a backslash, cannot precede what
" follows, but anything that does precede it is not removed from
" the data as part of the split delimiter
-" , -- Literal comma
-" [, ]* -- Any number of commas and spaces
+" , <- Literal comma
+" [, ]* <- Any number of commas and spaces
"
" We don't have to deal with escaped backslashes. You can read the source
" code for the ad-hoc tokenizer in copy_option_part() in src/misc2.c in Vim's