aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/html.vim
blob: f46b323f46d255664086ea9d8f66146d6e02c24e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" 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