aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/path.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-12-21 12:56:40 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-12-21 12:56:40 +1300
commite43249fbdf9b4a8a28c53271e832676ed5ef1c1e (patch)
treeb16f37f65fbff117bdc6821dfaae27dba665e9aa /vim/autoload/path.vim
parentuuu uuu(6df) (diff)
downloaddotfiles-e43249fbdf9b4a8a28c53271e832676ed5ef1c1e.tar.gz
dotfiles-e43249fbdf9b4a8a28c53271e832676ed5ef1c1e.zip
Delete unused autoload function
Diffstat (limited to 'vim/autoload/path.vim')
-rw-r--r--vim/autoload/path.vim12
1 files changed, 0 insertions, 12 deletions
diff --git a/vim/autoload/path.vim b/vim/autoload/path.vim
deleted file mode 100644
index 83102138..00000000
--- a/vim/autoload/path.vim
+++ /dev/null
@@ -1,12 +0,0 @@
-function! path#Create(name, ...) abort
- if a:0 > 2
- echoerr 'Too many arguments'
- endif
- if isdirectory(a:name)
- return 1
- endif
- let name = a:name
- let path = 'p'
- let prot = a:0 == 1 && a:1 ? 0700 : 0755
- return mkdir(name, path, prot)
-endfunction