Roberto Castagnola

Results 21 comments of Roberto Castagnola

In `vim9script` you should use `g:LspAddServer(lspServers)` instead of `call LspAddServer(lspServers)` otherwise it will search for a script local function. (`call` is optional in `vim9script`)

If it can help, with the official driver, before I can use the card I need to enable it using a java application, which calls a function in the driver...

Hello, I'm using manjaro distro on raspberry pi 4 and I'm trying to use this tool with podman, but with any command I try to run (the ones listed here...

> The `tz.sh` script updates all those files to have your timezone and is run during `setup.sh`. The `updated.sh` uses `tz.sh` to reset to default (yes, America/Los_Angeles) and then does...

Hi, I wonder if the server is informing to use markdown or plaintext. Could you post the response from the language server? You should get it enabling the debug (see...

> @rcasta74 it is `plaintext`. So the issue is there. You can try to change the order here https://github.com/yegappan/lsp/blob/889df762ada9a0fdd6e612a16c33b4bbc4fb09e9/autoload/lsp/capabilities.vim#L297 and here https://github.com/yegappan/lsp/blob/889df762ada9a0fdd6e612a16c33b4bbc4fb09e9/autoload/lsp/capabilities.vim#L309 As per [specification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#hoverClientCapabilities), the order matter. ``` /**...

the lspgfm plugin does not rely on conceal feature, but it modify the buffer removing all markdown symbols and using text-prop to highlight text, so it should look a bit...

> Is it possible for you to take a look at adding the support for this? Yes, I'll take a look at it, but it will take a while as...

When I have tested my changes with the example in previous comment I have considered the character `→` as it was indicating a tab; in the above screenshot instead it...

1. I have refactorized `SplitLine` function and it looks like it is working now. Before to open a new PR, I will review all the code to check if a...