Skip to content

Instantly share code, notes, and snippets.

@yunlingz
Created July 3, 2020 11:23
Show Gist options
  • Select an option

  • Save yunlingz/57335a08c3031bd008f9063ab755a513 to your computer and use it in GitHub Desktop.

Select an option

Save yunlingz/57335a08c3031bd008f9063ab755a513 to your computer and use it in GitHub Desktop.
vim tab completion
" tab complete
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment