Neovim user documentation| neovim.io
Neovim user documentation| neovim.io
Neovim 0.11 was just released. As in previous installments in this series, let’s talk a bit about some of the big highlights! As always, the full list of changes can be found in :h news and in the release notes. Table of Contents Breaking Changes LSP Simpler LSP setup and configuration Builtin autocompletion Improved hover documentation Putting it all together Diagnostics Virtual text handler changed from opt-out to opt-in Virtual lines Defaults More default mappings Terminal Miscellaneous ...| gpanders.com
Neovim user documentation| neovim.io
Neovim user documentation| neovim.io
Neovim user documentation| neovim.io
I like how easy it is to configure neovim. Last month I wanted a task runner for a very particular use-case that none of the available plugins handled. So I wrote my own. Show Code This is not good code. vim.g.global_task = {} function LoadTask(cmd, num, silent) local tmp = vim.g.global_task -- (a) if not num then num = vim.tbl_count(vim.g.global_task) + 1 end tmp[tonumber(num)] = cmd -- (a) vim.| Hillel Wayne