diff --git a/lua/plugins/comment.lua b/lua/plugins/comment.lua index adcf48c..c21a6d3 100644 --- a/lua/plugins/comment.lua +++ b/lua/plugins/comment.lua @@ -1,4 +1,5 @@ return { + -- TODO: v0.10.0 Added built-in |commenting| support. 'terrortylor/nvim-comment', config = function() require('nvim_comment').setup({ diff --git a/lua/plugins/completions.lua b/lua/plugins/completions.lua index 82a66ed..adec410 100644 --- a/lua/plugins/completions.lua +++ b/lua/plugins/completions.lua @@ -181,6 +181,9 @@ return { vim.keymap.set('n', 'rn', vim.lsp.buf.rename, opts) -- Help mappings + -- TODO: v0.10.0 |vim.lsp.start()| now maps |K| to use + -- |vim.lsp.buf.hover()| if the server supports it, unless + -- |'keywordprg'| was customized before calling |vim.lsp.start()|. vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts) vim.keymap.set('i', '', vim.lsp.buf.signature_help, opts)