Last active
June 19, 2018 13:28
-
-
Save promisedlandt/98673e1fb31df92d9d7d643e901b7a93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def testmethod1 | |
end | |
def testmethod2 | |
end | |
# try test<space> | |
# expected: test followed by a space | |
# actual: testmethod2 followed by a space |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tags=./tags | |
let g:AutoPairsMapCR = 0 | |
imap <Plug>MyCR <Plug>(MUcompleteCR)<Plug>AutoPairsReturn | |
imap <cr> <Plug>MyCR | |
"let g:AutoPairsMapSpace = 0 | |
"imap <silent> <expr> <space> pumvisible() | |
"\ ? "<space>" | |
"\ : "<C-R>=AutoPairsSpace()<CR>" | |
let g:mucomplete#enable_auto_at_startup = 1 | |
let g:mucomplete#buffer_relative_paths = 1 | |
let g:mucomplete#chains = { | |
\ 'default' : ['path', 'tags', 'omni', 'keyn'], | |
\} | |
set completeopt=menuone,noinsert | |
set belloff+=ctrlg | |
set shortmess+=c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment