aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/html.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/html.vim')
-rw-r--r--vim/autoload/html.vim16
1 files changed, 0 insertions, 16 deletions
diff --git a/vim/autoload/html.vim b/vim/autoload/html.vim
index 83755fe6..c93c0b8e 100644
--- a/vim/autoload/html.vim
+++ b/vim/autoload/html.vim
@@ -1,19 +1,3 @@
-" Make a bare URL into a link to itself
-function! html#UrlLink() abort
-
- " 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
-
" Tidy the whole buffer
function! html#Tidy() abort
let view = winsaveview()