We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
completion-nvim
omnifunc
kind
symbol
on_attach
runtime/lua/vim/lsp/protocol.lua
texlab
local lsp = require'nvim_lsp' local protocol = require'vim.lsp.protocol' local function texlab_attach() require'completion'.on_attach() protocol.SymbolKind = { 'file'; 'sec'; 'fold'; ''; 'class'; 'float'; 'lib'; 'field'; 'label'; 'enum'; 'misc'; 'cmd'; 'thm'; 'equ'; 'strg'; 'arg'; ''; ''; 'PhD'; ''; ''; 'item'; 'book'; 'artl'; 'part'; 'coll'; } protocol.CompletionItemKind = { 'string'; ''; ''; ''; 'field'; ''; 'class'; 'misc'; ''; 'library'; 'thesis'; 'argument'; ''; ''; 'snippet'; 'color'; 'file'; ''; 'folder'; ''; ''; 'book'; 'article'; 'part'; 'collect'; } end lsp.texlab.setup{ cmd = {vim.fn.stdpath("cache")..'/nvim_lsp/texlab'}, on_attach=texlab_attach }