aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-01-03 17:27:37 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-01-03 17:27:37 +1300
commitd389cbec9bddfcb4418df43fa7dca7a837be1c3d (patch)
tree1476b0eeb6dacae5b491db726cb4f103e72aac22 /vim/autoload
parentFix case sensitivity of an operator for vim-vint (diff)
downloaddotfiles-d389cbec9bddfcb4418df43fa7dca7a837be1c3d.tar.gz
dotfiles-d389cbec9bddfcb4418df43fa7dca7a837be1c3d.zip
Rename filetype repeat commands
Diffstat (limited to 'vim/autoload')
-rw-r--r--vim/autoload/filetype/repeat.vim (renamed from vim/autoload/filetype.vim)4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/autoload/filetype.vim b/vim/autoload/filetype/repeat.vim
index 6a66d62e..f681932b 100644
--- a/vim/autoload/filetype.vim
+++ b/vim/autoload/filetype/repeat.vim
@@ -1,6 +1,6 @@
" Helper function to run the 'filetypedetect' group on a file with its
" extension stripped off
-function! filetype#StripRepeat() abort
+function! filetype#repeat#Strip() abort
" Check we have the fnameescape() function
if !exists('*fnameescape')
@@ -33,7 +33,7 @@ endfunction
" Helper function to run the 'filetypedetect' group on a file in a temporary
" sudoedit(8) directory, modifying it with an attempt to reverse the temporary
" filename change
-function! filetype#SudoRepeat() abort
+function! filetype#repeat#Sudo() abort
" Check we have the fnameescape() function
if !exists('*fnameescape')