From 26f6007e6104cac72659e70336456888e22d6b33 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 15 Nov 2017 11:19:56 +1300 Subject: Correct URL link function name in HTML ftplugin I missed the filetype prefix I had added to the function call in the actual declaration of the function itself. --- vim/after/ftplugin/html/url_link.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vim/after/ftplugin/html') diff --git a/vim/after/ftplugin/html/url_link.vim b/vim/after/ftplugin/html/url_link.vim index 4f2d2526..85e9d719 100644 --- a/vim/after/ftplugin/html/url_link.vim +++ b/vim/after/ftplugin/html/url_link.vim @@ -10,8 +10,8 @@ if exists('b:undo_ftplugin') endif " Make a bare URL into a link to itself -if !exists('*s:UrlLink') - function! s:UrlLink() +if !exists('*s:HtmlUrlLink') + function! s:HtmlUrlLink() " Yank this whole whitespace-separated word normal! yiW -- cgit v1.2.3