Skip to content

Instantly share code, notes, and snippets.

@zindel
Created June 15, 2016 13:08
Show Gist options
  • Save zindel/f6e88f6d40430d07fe2dff35bbefc151 to your computer and use it in GitHub Desktop.
Save zindel/f6e88f6d40430d07fe2dff35bbefc151 to your computer and use it in GitHub Desktop.
function! TabForward()
if col('.')>1 && strpart( getline('.'), col('.')-2, 3 ) =~ '^\w'
return "\<C-N>"
else
return "\<Tab>"
endfunction
inoremap <Tab> <C-R>=TabForward()<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment