Skip to content

Instantly share code, notes, and snippets.

@a3linux
Created June 10, 2018 05:58
Show Gist options
  • Select an option

  • Save a3linux/934038e977e0db780d28634142ce8ad2 to your computer and use it in GitHub Desktop.

Select an option

Save a3linux/934038e977e0db780d28634142ce8ad2 to your computer and use it in GitHub Desktop.
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