Justin M. Keyes

Results 2414 comments of Justin M. Keyes

> As for describing version ranges, it looks like the suggested syntax employs npm's syntax, which I think is entirely proprietary to npm. I think cargo's approach is a bit...

> On the topic on uninstall scripts: Is it sure that we don't want that? Yes > Clean uninstall would be a really cool feature. It would. And yet... >...

Via https://twitter.com/oilsforunix/status/1680957458431213569 : > I have been lightly working on almost exactly this, many notes on [https://oilshell.zulipchat.com](https://t.co/qk22EV4Iri) (please join). Working name is "Silo" for dumb artifacts; "medo"/meadow for git-versioned trees....

The status is described by the issue status: it's open, and in the "unplanned" milestone. Some pull requests exist in various states of completion. - https://github.com/neovim/neovim/pull/6162 (**update:** merged) allows external...

~~Seems that it is currently not possible~~ To transform a floating window into a split window: ``` :lua vim.api.nvim_win_set_config(0, {win=1000, split='left'}) ``` Or alternatively, split the LSP doc hover buffer...

> You need to also specify `win`, not just `split`. Thanks, updated the docs in https://github.com/neovim/neovim/pull/36610

You don't need to monkeypatch anything, just define a mapping that calls `nvim_win_set_config`

@eamonburns the code is [here](https://github.com/neovim/neovim/blob/410744210386c8305da047e1a0e91f798c2cac0c/runtime/lua/vim/lsp/util.lua#L1452-L1466) , you can make change and run it locally, and if you find something that makes sense as a core change, please send a PR....

> This makes the pattern list have precedence over paths, often matching patterns on parent folders before closest ones. In Nvim 0.11.2, the config has full control over `root_markers` precedence....

The configs in `lua/lspconfig/configs/*` are deprecated. Update the config in `lsp/*`.