aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-08 19:42:59 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-08 19:42:59 +1200
commit1558c26258df559f9702bcb826dd33e6a61d4edb (patch)
treeae59093f3c064de0d21dd8b2e15dfd7cc48d05aa /vim/autoload
parentFlesh out comments and refactor vimrc auto funcs (diff)
downloaddotfiles-1558c26258df559f9702bcb826dd33e6a61d4edb.tar.gz
dotfiles-1558c26258df559f9702bcb826dd33e6a61d4edb.zip
Rename vimrc#Establish() to vimrc#Ensure()
Per the suggestion of NickNameNick in #kiwicon.
Diffstat (limited to 'vim/autoload')
-rw-r--r--vim/autoload/vimrc.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/vimrc.vim b/vim/autoload/vimrc.vim
index eccdbf95..f5cad283 100644
--- a/vim/autoload/vimrc.vim
+++ b/vim/autoload/vimrc.vim
@@ -23,7 +23,7 @@ endfunction
" Expand the first path in an option string, check if it exists, and attempt
" to create it if it doesn't. Strip double-trailing-slash hints.
-function! vimrc#Establish(string) abort
+function! vimrc#Ensure(string) abort
" Get first part of the option string
let part = vimrc#SplitOption(a:string)[0]