Skip to content

Commit

Permalink
Merge pull request #758 from louispan/3.0
Browse files Browse the repository at this point in the history
fixed missing . in <S-CR> bindings
  • Loading branch information
spf13 committed May 1, 2015
2 parents b7aaa97 + c9e5c9d commit bf50405
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 bf50405

Please sign in to comment.