Skip to content

Instantly share code, notes, and snippets.

@llimllib
Created June 30, 2010 19:13
Show Gist options
  • Save llimllib/459089 to your computer and use it in GitHub Desktop.
Save llimllib/459089 to your computer and use it in GitHub Desktop.
"tab autocompletes
function! InsertTabWrapper()
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
else
return "\<c-p>"
endif
endfunction
inoremap <tab> <c-r>=InsertTabWrapper()<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment