aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-10-23 21:30:42 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-10-23 21:30:42 +1300
commit5214fbd8b85565940345ad687404c232f2631944 (patch)
tree0dc922b01fe392423c8dd7e36f837dc808907fc7 /vim/vimrc
parentUpdate vim-redact-pass to v2.2.1 (diff)
downloaddotfiles-5214fbd8b85565940345ad687404c232f2631944.tar.gz
dotfiles-5214fbd8b85565940345ad687404c232f2631944.zip
Rewrap comments in vimrc
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc14
1 files changed, 7 insertions, 7 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 26407eea..425a1d5b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -2,7 +2,7 @@
" Tom Ryder (tejr)’s Literate Vimrc
" ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
"
-" Last updated: Fri, 09 Oct 2020 08:52:09 UTC
+" Last updated: Fri, 23 Oct 2020 08:28:38 UTC
"
" │ And I was lifted up in heart, and thought
" │ Of all my late-shown prowess in the lists,
@@ -256,12 +256,12 @@ endif
if has('unix')
" Prior to v8.1.1519, Vim didn’t check patterns added to 'backupskip' for
- " uniqueness, so adding the same path repeatedly resulted in duplicate strings
- " in the value. This was due to the absence of the P_NODUP flag for the
- " option’s definition in src/option.c in the Vim source code. If we’re using
- " a version older than v8.1.1519, we’ll need to explicitly reset 'backupskip'
- " to its default value before adding patterns to it, so that reloading this
- " file doesn’t stack up multiple copies of any added paths.
+ " uniqueness, so adding the same path repeatedly resulted in duplicate
+ " strings in the value. This was due to the absence of the P_NODUP flag for
+ " the option’s definition in src/option.c in the Vim source code. If we’re
+ " using a version older than v8.1.1519, we’ll need to explicitly reset
+ " 'backupskip' to its default value before adding patterns to it, so that
+ " reloading this file doesn’t stack up multiple copies of any added paths.
"
" <https://github.com/vim/vim/releases/tag/v8.1.1519>
"