aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/html/url_link.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/html/url_link.vim')
-rw-r--r--vim/after/ftplugin/html/url_link.vim26
1 files changed, 12 insertions, 14 deletions
diff --git a/vim/after/ftplugin/html/url_link.vim b/vim/after/ftplugin/html/url_link.vim
index 2e600b5e..a5a926d6 100644
--- a/vim/after/ftplugin/html/url_link.vim
+++ b/vim/after/ftplugin/html/url_link.vim
@@ -14,22 +14,20 @@ if exists('b:undo_ftplugin')
endif
" Make a bare URL into a link to itself
-if !exists('*s:HtmlUrlLink')
- function! s:HtmlUrlLink()
+function! s:HtmlUrlLink()
- " Yank this whole whitespace-separated word
- normal! yiW
- " Open a link tag
- normal! i<a href="">
- " Paste the URL into the quotes
- normal! hP
- " Move to the end of the link text URL
- normal! E
- " Close the link tag
- normal! a</a>
+ " Yank this whole whitespace-separated word
+ normal! yiW
+ " Open a link tag
+ normal! i<a href="">
+ " Paste the URL into the quotes
+ normal! hP
+ " Move to the end of the link text URL
+ normal! E
+ " Close the link tag
+ normal! a</a>
- endfunction
-endif
+endfunction
" Set up a mapping for the function, if we're allowed
if !exists('g:no_plugin_maps') && !exists('g:no_html_maps')