aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/html.vim
blob: a56ae77814a2219f283cf94188e536886246110a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
" Run `tidy -errors -quiet` over buffer
nnoremap <buffer> <silent> <LocalLeader>c
      \ :write !tidy -errors -quiet<CR>

" Make a bare URL into a link to itself
function! s:UrlLink()

  " 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
nnoremap <buffer> <silent> <LocalLeader>r
      \ :<C-U>call <SID>UrlLink()<CR>