aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-12-21 14:37:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-12-21 14:38:56 +1300
commit3e400157a4049bd6409e775f1be814de6281e936 (patch)
treee747ff4e09c268079aec824a258b3426f2a37aac /vim/vimrc
parentFix up capitalization patterns for indent autoload (diff)
downloaddotfiles-3e400157a4049bd6409e775f1be814de6281e936.tar.gz
dotfiles-3e400157a4049bd6409e775f1be814de6281e936.zip
Reshape autoloads into noun#Verb() pattern
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc22
1 files changed, 13 insertions, 9 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 07f979b8..7daa54b6 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -91,7 +91,7 @@ scriptencoding utf-8
" test it with some values of your own, if you want to understand why. Vim,
" I love you, but you are really weird sometimes.
"
-" We do all this with an autoloaded function split#Option().
+" We do all this with an autoloaded function option#Split().
"
" If an environment variable MYVIM exists, and it isn’t blank, apply its value
" as the first value of 'runtimepath', after escaping it appropriately.
@@ -99,9 +99,9 @@ scriptencoding utf-8
" list becomes MYVIM.
"
if exists('$MYVIM') && $MYVIM !=# ''
- execute 'set runtimepath^='.escape#Arg(escape#Item(escape#Wild($MYVIM)))
+ execute 'set runtimepath^='.argument#Escape(option#item#Escape($MYVIM, 1))
elseif &runtimepath !=# ''
- let $MYVIM = split#Option(&runtimepath)[0]
+ let $MYVIM = option#Split(&runtimepath)[0]
endif
" We need a command to reliably establish a full path, whether or not the
@@ -133,7 +133,7 @@ command! -bang -bar -complete=dir -nargs=1 CreatePath
"
" <https://github.com/vim/vim/releases/tag/v8.1.0716>
"
-execute 'set viminfo+='.escape#Arg('n'.$MYVIM.'/viminfo')
+execute 'set viminfo+='.argument#Escape('n'.$MYVIM.'/viminfo')
CreatePath $MYVIM
" Speaking of recorded data in viminfo files, the default Vim limit of a mere
@@ -179,7 +179,7 @@ set history=10000
" 'backupfullname', 'swapfilefullname' would have been clearer.
"
set backup
-execute 'set backupdir^='.escape#Arg(escape#Item(
+execute 'set backupdir^='.argument#Escape(option#item#Escape(
\ $MYVIM.'/backup'.(has#('patch-8.1.251') ? '//' : ''),
\))
CreatePath! $MYVIM/backup
@@ -218,7 +218,8 @@ endif
" option has supported that hint for much longer than 'backupdir' has. We
" apply path#Create() to attempt to create the path, if needed.
"
-execute 'set directory^='.escape#Arg(escape#Item($MYVIM.'/swap//'))
+execute 'set directory^='
+ \.argument#Escape(option#item#Escape($MYVIM.'/swap//'))
CreatePath! $MYVIM/swap
" Keep tracked undo history for files permanently, in a dedicated cache
@@ -236,7 +237,8 @@ CreatePath! $MYVIM/swap
"
if has#('persistent_undo')
set undofile
- execute 'set undodir^='.escape#Arg(escape#Item($MYVIM.'/undo//'))
+ execute 'set undodir^='
+ \.argument#Escape(option#item#Escape($MYVIM.'/undo//'))
CreatePath! $MYVIM/undo
endif
@@ -354,8 +356,10 @@ set spellcapcheck=[.?!]\\%(\ \ \\\|[\\n\\r\\t]\\)
set dictionary^=/usr/share/dict/words
let s:ref = $MYVIM.'/ref'
try
- execute 'set dictionary^='.escape#Arg(escape#Item(s:ref.'/dictionary.txt'))
- execute 'set thesaurus^='.escape#Arg(escape#Item(s:ref.'/thesaurus.txt'))
+ execute 'set dictionary^='
+ \.argument#Escape(option#item#Escape(s:ref.'/dictionary.txt'))
+ execute 'set thesaurus^='
+ \.argument#Escape(option#item#Escape(s:ref.'/thesaurus.txt'))
catch /^Vim\%((\a\+)\)\=:E474:/
endtry