Skip to content

kristijanhusak/completion-tags

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

completion-tags

Tags autocompletion source for completion-nvim

It works almost the same as built-in tags completion, with additional floating window that contains paths where tag is pulled from.

screenshot

Installation

Use your favorite plugin manager to install it, and add tags to the chain completion list:

function! PackagerInit()
  call packager#add('kristijanhusak/vim-packager')
  call packager#add('nvim-lua/completion-nvim')
  call packager#add('kristijanhusak/completion-tags')
endfunction

let g:completion_chain_complete_list = {
      \ 'default': [
      \    {'complete_items': ['lsp']},
      \    {'complete_items': ['tags']},
      \  ]}

" Or combine with lsp
let g:completion_chain_complete_list = {
      \ 'default': [
      \    {'complete_items': ['lsp', 'tags']},
      \  ]}

About

Tags completion for completion-nvim

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published