Created
June 10, 2018 05:58
-
-
Save a3linux/934038e977e0db780d28634142ce8ad2 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
| vim function to use <TAB> as auto complete trigger, | |
| function! InsertTabWrapper() | |
| let col = col(".") - 1 | |
| if !col || getline(".")[col - 1] !~ '\k' | |
| return "\<tab>" | |
| else | |
| return "\<c-n" | |
| endfunction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment