Created
August 3, 2011 18:46
-
-
Save kyleterry/1123459 to your computer and use it in GitHub Desktop.
This file contains 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
" Don't allow snipmate to take over tab | |
autocmd VimEnter * ino <c-j> <c-r>=TriggerSnippet()<cr> | |
" Use tab to scroll through autocomplete menus | |
autocmd VimEnter * imap <expr> <Tab> pumvisible() ? "<C-N>" : "<Tab>" | |
autocmd VimEnter * imap <expr> <S-Tab> pumvisible() ? "<C-P>" : "<S-Tab>" | |
snor <c-j> <esc>i<right><c-r>=TriggerSnippet()<cr> | |
let g:acp_completeoptPreview=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment