From a8bbabce94d256fbb9280bdb37693e0f441408a0 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 6 Jul 2019 10:56:40 +1200 Subject: Translate a :let-& call into a :set= one --- vim/vimrc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 1f5f1743..1b6e61a5 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -436,10 +436,7 @@ let &isfname = s:isfname " of a sentence. This means that we could make abbreviations like "i.e. " something" without flagging "something" as a spelling error. " -" We use :let syntax rather than :set here, just to avoid a whole bunch of -" annoying escaping for the value. -" -let &spellcapcheck = '[.?!]\%( \|[\n\r\t]\)' +set spellcapcheck=[.?!]\\%(\ \ \\\|[\\n\\r\\t]\\) " For word completion in insert mode with CTRL-X CTRL-K, or if 'complete' " includes the ‘k’ flag, the 'dictionary' option specifies the path to the -- cgit v1.2.3 From 77d1848b3861aa6a349928f5ced62bbf090f77cd Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 6 Jul 2019 10:57:03 +1200 Subject: Spelling corrections --- vim/vimrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 1b6e61a5..c2e2f015 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -63,9 +63,9 @@ scriptencoding utf-8 " With encoding handled, we’ll turn our attention to the value of the " 'runtimepath' option, since any scripts loaded from the paths specified -" therein control so much of the behaviour of Vim. I’d like to do this as -" accurately as possible, even with Vim’s unintuitive behavior around escaping -" of these variables. One of the first things we’ll need to be able to do is +" therein control so much of the behavior of Vim. I’d like to do this as +" accurately as possible, even with Vim’s unusual behavior around escaping of +" these variables. One of the first things we’ll need to be able to do is " split the value of 'runtimepath' into its constituent path parts. " " Splitting the values of these comma-separated options correctly is @@ -472,7 +472,7 @@ set spellcapcheck=[.?!]\\%(\ \ \\\|[\\n\\r\\t]\\) " the setting entirely, rather than throwing cryptic errors at the user. None " of the blacklisted characters are particularly wise characters to have in " paths, anyway, legal though they may be on Unix filesystems. We can’t work -" around this one with 'isfname'; the blacklist is hardcoded. +" around this one with 'isfname'; the blacklist is hard-coded. " set dictionary^=/usr/share/dict/words let s:ref = $MYVIM.'/ref' -- cgit v1.2.3 From 9a0484d442c85e58c7b4e27c86f8dd19906df0fc Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 6 Jul 2019 10:57:15 +1200 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index c12ea637..ffb23ce0 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v6.49.0 -Fri, 05 Jul 2019 22:35:24 +0000 +tejr dotfiles v6.50.0 +Fri, 05 Jul 2019 22:57:15 +0000 -- cgit v1.2.3