Fix #415, expand iabbrev entries on <CR>.
This commit is contained in:
parent
70a4852f3c
commit
6755068152
@ -3520,6 +3520,7 @@ Removed:~
|
||||
point.
|
||||
|
||||
Fixed:~
|
||||
* Issue #415: Expand iabbrev entries on <CR>.
|
||||
* Issue #619: allow escaped characters in markdown links.
|
||||
* Issue #240: Fix regex pattern for markdown '[]()' links
|
||||
* Issue #685: Error message for invalid user options fixed.
|
||||
|
@ -438,8 +438,14 @@ nnoremap <silent><buffer> <Plug>VimwikiListo
|
||||
\ :<C-U>call vimwiki#lst#kbd_o()<CR>
|
||||
nnoremap <silent><buffer> <Plug>VimwikiListO
|
||||
\ :<C-U>call vimwiki#lst#kbd_O()<CR>
|
||||
inoremap <silent><buffer> <Plug>VimwikiReturn15
|
||||
if has('patch-7.3.489')
|
||||
" expand iabbrev on enter
|
||||
inoremap <silent><buffer> <Plug>VimwikiReturn15
|
||||
\ <C-]><Esc>:VimwikiReturn 1 5<CR>
|
||||
else
|
||||
inoremap <silent><buffer> <Plug>VimwikiReturn15
|
||||
\ <Esc>:VimwikiReturn 1 5<CR>
|
||||
endif
|
||||
inoremap <silent><buffer> <Plug>VimwikiReturn22
|
||||
\ <Esc>:VimwikiReturn 2 2<CR>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user