Jorenar
Jorenar
> Core ships a config with an on_attach field which the user does not want. Not ideal, but this particular case can be solved with empty function: ```lua vim.lsp.config('myls', {...
> Stuff like `on_attach` and other callbacks should probably be implemented as autocmds and providers should be wary about adding them. Indeed, adding events `LspInit`, `LspBeforeInit`, etc., and appropriate warnings...
> Adding a [`merge` item](https://github.com/neovim/neovim/issues/33577#issuecomment-2832866835) to vim.lsp.config, which is passed along to `tbl_deep_extend(behavior: string|fun(key,val))`, is a complete solution, that also allows us to keep the mental model / docs simple....
That would be indeed neat. As a workaround, for now, I propose the following to be pasted into _Custom code_: ```js function sortByTitle(parent) { const nodes = Array.from(parent.children).sort((a, b) =>...
In relation to neovim/nvim-lspconfig#3788 I have a table of servers like so: ```lua local servers = { asm_lsp = { ... }, ast_grep = { ... }, harper_ls = {...
In my case, the help banner is blending with the background
I've noticed this bug simply by using my OPML file, and seeing feed titles downloaded from upstream instead of mine. > it will no longer update the title when the...
Yeah, GDB simply adds "i" suffix to stepping commands, and I've did the same here as it's quite convenient. I'm playing around with making a plugin adding disassembly view ([nvim-dap-disasm](https://github.com/Jorenar/nvim-dap-disasm)),...
> @sermuns, you can use ~/.cache directory for that. Clearing cache shouldn't rather result in user's favourites disappearing. It should rather go to `$XDG_DATA_HOME` (`~/.local/share`).
It would be also helpful when using enterprise instances