aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-08 20:57:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-08 20:57:45 +1200
commit02392fff73ab10c71732dc6d1fd867d274475937 (patch)
treea6a7fd033d4128198d5ec9c12ff071b72594dcfe /vim/vimrc
parentMerge branch 'hotfix/v8.31.1' into develop (diff)
downloaddotfiles-02392fff73ab10c71732dc6d1fd867d274475937.tar.gz
dotfiles-02392fff73ab10c71732dc6d1fd867d274475937.zip
Use nested single quotes rather than double
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/vim/vimrc b/vim/vimrc
index d60d66fd..ecce5812 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -2,7 +2,7 @@
" Tom Ryder (tejr)’s Literate Vimrc
" ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
"
-" Last updated: Mon, 04 May 2020 00:51:58 UTC
+" Last updated: Fri, 08 May 2020 08:47:55 UTC
"
" │ And I was lifted up in heart, and thought
" │ Of all my late-shown prowess in the lists,
@@ -121,7 +121,7 @@ if !empty(s:xdgconfigpaths)
\ s:xdgconfigpaths, 'option#item#Escape(v:val)'
\), ','))
execute 'set runtimepath+='.option#Escape(join(map(
- \ reverse(s:xdgconfigpaths), 'option#item#Escape(v:val."/after")'
+ \ reverse(s:xdgconfigpaths), 'option#item#Escape(v:val.''/after'')'
\), ','))
endif
unlet s:xdgconfigpaths
@@ -419,10 +419,10 @@ endif
if !empty(s:refdirs)
try
execute 'set dictionary^='.option#Escape(join(map(
- \ s:refdirs, 'option#item#Escape(v:val."/dictionary.txt")'
+ \ s:refdirs, 'option#item#Escape(v:val.''/dictionary.txt'')'
\), ','))
execute 'set thesaurus^='.option#Escape(join(map(
- \ s:refdirs, 'option#item#Escape(v:val."/thesaurus.txt")'
+ \ s:refdirs, 'option#item#Escape(v:val.''/thesaurus.txt'')'
\), ','))
catch /^Vim\%((\a\+)\)\=:E474:/
endtry