Results 372 comments of glepnir

```lua vim.opt.runtimepath:append("~/Workspace/nvim-lspconfig/") local origin_make_floating_popup_options = vim.lsp.util.make_floating_popup_options function vim.lsp.util.make_floating_popup_options(width, height, opts) local inner_opts = origin_make_floating_popup_options(width, height, opts) return vim.tbl_extend("force", inner_opts, {border = "single", title = "Hover", title_pos = "center" }) end...

use `vim.fn.getcwd` is not correct way check the root dir https://github.com/neovim/nvim-lspconfig/blob/master/CONTRIBUTING.md

`command` field will remove in future. I do not recommend any customization on this field. It is deeply bound to the server configuration. This is not a good direction. if...

check #1937 It would be great if we could bypass the server configuration and get some desired parameters and pass them through the api.

yeah. So I am planning to make a lsp plugin template. Based on this template anyone can make an lsp plugin for their language. That way it will have more...

@ofwinterpassed I can't reproduce ![images](https://user-images.githubusercontent.com/41671631/189075240-ec5887c9-2190-4cc5-88f3-bdacde378bd8.gif)

okay problem is `\r\n` we should handle it . Thanks for report.

I will accept any suggestion for improvement. My aim is to make lspsaga have a great ui. Have you used lspsaga's diagnostic yet. I also looked at vscode for this...