vim-clevertab
vim-clevertab copied to clipboard
Tiny replacement for Supertab that DOES do what I need.
By default plugin uses `UltiSnips#ExpandSnippet()`. And if `g:CleverTabUltiSnipsExpandOrJump` setted, `UltiSnips#ExpandSnippetOrJump`. This helps with autocomplete inside UltiSnips tabstops.
Hello, Nice small plugin, I like its simplicity. I've added a small bit to complete filenames ``. Sadly it can be triggered also on whitespaces so it should be sent...
# Example VIMRC ``` vim set nocompatible set runtimepath+=~/.vim/plugins/repos/github.com/Shougo/dein.vim " Required: call dein#begin('~/.vim/plugins') " Let dein manage dein call dein#add('Shougo/dein.vim') call dein#add('Shougo/neocomplete.vim') call dein#add('SirVer/ultisnips') call dein#add('honza/vim-snippets') call dein#add('neitanod/vim-clevertab') call dein#end()...
My example VIMRC ``` vim set nocompatible set runtimepath+=~/.vim/plugins/repos/github.com/Shougo/dein.vim " Required: call dein#begin('~/.vim/plugins') " Let dein manage dein call dein#add('Shougo/dein.vim') call dein#add('Shougo/neocomplete.vim') call dein#add('SirVer/ultisnips') call dein#add('honza/vim-snippets') call dein#add('neitanod/vim-clevertab') call dein#end()...
It seems that "keyword" completion is cycling from the bottom to up in my Vim. I was able to fix it with: ``` diff --git a/autoload/CleverTab.vim b/autoload/CleverTab.vim index 612bbb0..781761e 100644...