Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 700 Bytes

README.md

File metadata and controls

27 lines (25 loc) · 700 Bytes

cmp-help-tags

Syntax completion for all help tags in Neovim (including your plugins). It uses the same data structure as :Telescope help_tags. The plugin targets nvim-cmp.

Installation and Configuration (Lazy.nvim)

{
  'PhilippFeO/cmp-help-tags',
  opts = {
    filetypes = {
        ...
    }
  }
}
  • filetypes: Table of filetypes where the completion should be activated, fi. 'markdown'.

Enabling within nvim-cmp

require("cmp").setup({
  sources = {
    { name = "cmp_help_tags",-- '_' not '-' 😯
      -- recommended to avoid cluttering
      -- keyword_length = 5
    },
  }
})