René Heinrich

Results 6 comments of René Heinrich

We had the same problem in our project and found out that angular-carousel was loading angular-touch version 1.6.x which was most likely not compatible with our angular version 1.5.11. To...

Line 13 in lua/lspsaga/provider.lua ```lua local def_response = lsp.buf_request_sync(0, method[1], def_params, timeout or 1000) ``` For some reason, the response includes an empty table as first entry. Edit: A comment...

There is actually already an option for this: `max_preview_lines`. Problem with this, it is applied after the buffers are created which will not prevent problems caused by too many buffers.

As an alternative to fetching the file contents with buffers, one could think of using file system operations instead. In my test it dit not performe worse but avoided buffer...

The only problem I encountered was the loss of filetype detection and therefore syntax highlighting in the previews. A library like [plenary](https://github.com/nvim-lua/plenary.nvim) can help with that but would add a...

I think the way of registering the auto commands is flawed. Since it always uses the same group, every time a new auto command is registered, all previous auto commands...