aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/html.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-03 20:38:36 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-03 20:38:36 +1300
commite7068824399af0ffa412f520563aef6962c8877a (patch)
treea397b67d51b09fb8de35eabe004e2bc22693c207 /vim/ftplugin/html.vim
parentMerge branch 'hotfix/v0.4.2' into develop (diff)
parentUse <Leader>/<LocalLeader> correctly in Vim config (diff)
downloaddotfiles-e7068824399af0ffa412f520563aef6962c8877a.tar.gz
dotfiles-e7068824399af0ffa412f520563aef6962c8877a.zip
Merge branch 'feature/local-leader' into develop
* feature/local-leader: Use <Leader>/<LocalLeader> correctly in Vim config
Diffstat (limited to 'vim/ftplugin/html.vim')
-rw-r--r--vim/ftplugin/html.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/ftplugin/html.vim b/vim/ftplugin/html.vim
index 3f28e9ea..309b7132 100644
--- a/vim/ftplugin/html.vim
+++ b/vim/ftplugin/html.vim
@@ -1,5 +1,5 @@
" Run tidy -eq -utf8 on file for the current buffer
-nnoremap <leader>v :exe "!tidy -eq -utf8 " . shellescape(expand("%"))<CR>
+nnoremap <LocalLeader>v :exe "!tidy -eq -utf8 " . shellescape(expand("%"))<CR>
" Make a bare URL into a link to itself
function! s:UrlLink()
@@ -8,4 +8,4 @@ function! s:UrlLink()
normal! E
execute "normal! a</a>\<Esc>"
endfunction
-nnoremap <silent> <leader>r :<C-U>call <SID>UrlLink()<CR>
+nnoremap <silent> <LocalLeader>r :<C-U>call <SID>UrlLink()<CR>