Prevent imap of <CR>
if already mapped
This commit is contained in:
parent
0966031234
commit
3b96f8ffeb
@ -564,13 +564,14 @@ function! s:CR(normal, just_mrkr) "{{{
|
|||||||
call vimwiki#lst#kbd_cr(a:normal, a:just_mrkr)
|
call vimwiki#lst#kbd_cr(a:normal, a:just_mrkr)
|
||||||
endfunction "}}}
|
endfunction "}}}
|
||||||
|
|
||||||
|
if !hasmapto('VimwikiReturn', 'i')
|
||||||
if maparg('<CR>', 'i') !~? '<Esc>:VimwikiReturn'
|
if maparg('<CR>', 'i') !~? '<Esc>:VimwikiReturn'
|
||||||
inoremap <silent><buffer> <CR> <Esc>:VimwikiReturn 1 5<CR>
|
inoremap <silent><buffer> <CR> <Esc>:VimwikiReturn 1 5<CR>
|
||||||
endif
|
endif
|
||||||
if maparg('<S-CR>', 'i') !~? '<Esc>:VimwikiReturn'
|
if maparg('<S-CR>', 'i') !~? '<Esc>:VimwikiReturn'
|
||||||
inoremap <silent><buffer> <S-CR> <Esc>:VimwikiReturn 2 2<CR>
|
inoremap <silent><buffer> <S-CR> <Esc>:VimwikiReturn 2 2<CR>
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
"Table mappings
|
"Table mappings
|
||||||
if g:vimwiki_table_mappings
|
if g:vimwiki_table_mappings
|
||||||
|
Loading…
Reference in New Issue
Block a user