From 3f586a3d48bb04ef9206a202235b54cfcec38859 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 3 Nov 2017 20:35:23 +1300 Subject: Use / correctly in Vim config From ":help ": > In a global plugin should be used and in a filetype plugin > . "mapleader" and "maplocalleader" can be equal. --- vim/ftplugin/html.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vim/ftplugin/html.vim') 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 v :exe "!tidy -eq -utf8 " . shellescape(expand("%")) +nnoremap v :exe "!tidy -eq -utf8 " . shellescape(expand("%")) " Make a bare URL into a link to itself function! s:UrlLink() @@ -8,4 +8,4 @@ function! s:UrlLink() normal! E execute "normal! a\" endfunction -nnoremap r :call UrlLink() +nnoremap r :call UrlLink() -- cgit v1.2.3