Skip to content

Commit

Permalink
fixed missing . in <S-CR> bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
louispan committed Apr 24, 2015
1 parent 80f430d commit c9e5c9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@

" <CR>: close popup
" <s-CR>: close popup and save indent.
inoremap <expr><s-CR> pumvisible() ? neocomplete#smart_close_popup()"\<CR>" : "\<CR>"
inoremap <expr><s-CR> pumvisible() ? neocomplete#smart_close_popup()."\<CR>" : "\<CR>"
function! CleverCr()
if pumvisible()
Expand Down Expand Up @@ -881,7 +881,7 @@
" <CR>: close popup
" <s-CR>: close popup and save indent.
inoremap <expr><s-CR> pumvisible() ? neocomplcache#close_popup()"\<CR>" : "\<CR>"
inoremap <expr><s-CR> pumvisible() ? neocomplcache#close_popup()."\<CR>" : "\<CR>"
"inoremap <expr><CR> pumvisible() ? neocomplcache#close_popup() : "\<CR>"

" <C-h>, <BS>: close popup and delete backword char.
Expand Down

0 comments on commit c9e5c9d

Please sign in to comment.