Merge branch 'RGBD-fix-maparg-typo'

This commit is contained in:
Israel Chauca Fuentes
2015-05-01 22:35:56 -04:00

View File

@@ -326,10 +326,10 @@ function! s:ExtraMappings() "{{{
" If pair is empty, delete both delimiters: " If pair is empty, delete both delimiters:
inoremap <silent> <Plug>delimitMateBS <C-R>=delimitMate#BS()<CR> inoremap <silent> <Plug>delimitMateBS <C-R>=delimitMate#BS()<CR>
if !hasmapto('<Plug>delimitMateBS','i') if !hasmapto('<Plug>delimitMateBS','i')
if maparg('<BS>'. 'i') == '' if maparg('<BS>', 'i') == ''
silent! imap <unique> <buffer> <BS> <Plug>delimitMateBS silent! imap <unique> <buffer> <BS> <Plug>delimitMateBS
endif endif
if maparg('<C-h>'. 'i') == '' if maparg('<C-h>', 'i') == ''
silent! imap <unique> <buffer> <C-h> <Plug>delimitMateBS silent! imap <unique> <buffer> <C-h> <Plug>delimitMateBS
endif endif
endif endif