LocalLeader -> localleader

This commit is contained in:
Karl Yngve Lervåg 2014-11-24 20:25:00 +01:00
parent 86c189eb39
commit df2ed5292b
2 changed files with 3 additions and 3 deletions

View File

@ -176,7 +176,7 @@ function! s:init_environment() " {{{1
nnoremap <silent><buffer> <localleader>li :call latex#info()<cr>
nnoremap <silent><buffer> <localleader>lh :call latex#help()<cr>
nnoremap <silent><buffer> <localleader>lv :call latex#view()<cr>
nnoremap <silent><buffer> <LocalLeader>lR :call latex#reinit()<cr>
nnoremap <silent><buffer> <localleader>lR :call latex#reinit()<cr>
endif
endfunction

View File

@ -13,8 +13,8 @@ function! latex#toc#init(initialized) " {{{1
" Define mappings
if g:latex_mappings_enabled
nnoremap <buffer> <LocalLeader>lt :call latex#toc#open()<cr>
nnoremap <buffer> <LocalLeader>lT :call latex#toc#toggle()<cr>
nnoremap <buffer> <localleader>lt :call latex#toc#open()<cr>
nnoremap <buffer> <localleader>lT :call latex#toc#toggle()<cr>
endif
endfunction