hinell

Results 170 comments of hinell

@D0ot How in hell hitting `shift+2` or `shift+[` circumevents that condition and appends `

Why so dumb? These posts above aren't off-topic. They are about the issue. Right on spot.

Any updates on this?

```lua api.nvim_set_hl(ns, "NormalFloat", {link = "Normal"}) ``` Why don't you use this line? By `link = ` you specify a pre-defined group that you want your hl-group to link to.

@lithammer This won't stop servers local to some specific language or buffer if you switch between them. I've tweaked to stop server only if `nvim` window looses focus. @sigmaSd I...

@lithammer Fixed it. My mistake. If we hook into buffers lifecycle it will constantly create/destroy timer. This may create problems if someone switches between buffers often.

@lithammer It won't stop servers if you don't move away from nvim window. But if you switch to some another window it will (e.g. browser). Should I set timeout to...

@gegoune Checkout. The feature is now disabled by default and can only be enabled by setting a global `vim.g.lspconfigServerLifeCycle = {}` option. Default timeout is now set to 30 minutes....

@glepnir Some servers may easily take up gigabytes of memory. Keeping cache in memory is problem of servers, not LSP clients. They should not rely on RAM in this sense....

Cache is a not problem. Optimized servers keep theer cache on HDD instead of memory to make it shareable. This PR is intended for optimization as it requires lspconfig commands.