Alejandro Sanchez

Results 116 comments of Alejandro Sanchez

I don't think `:Man` is supposed to work like that. For me `:Man git init` open the page `runit-init(8)`; it probably runs `man init`, which happens to open `git-init(1)` on...

Do you have an example of how to use that? If it is useful I would like to add it. > I added support for this on my fork, but...

That does sound pretty useful. I will have to try to add it. > Lua would be a solution overall, but `nvim` is not an option for me, it's not...

I managed to hack something together. https://user-images.githubusercontent.com/4954650/164110406-ad143571-1e26-4601-88ee-29b0f8be480b.mp4 The code is quite a mess, but it works. I will have to test it with other languages and clean it up properly....

I have currently linked the `rainbowcolN` groups to the rainbow colours of my theme: ``` vim.cmd 'hi link rainbowcol1 RainbowRed' vim.cmd 'hi link rainbowcol2 RainbowYellow' vim.cmd 'hi link rainbowcol3 RainbowBlue'...

Works out of the box with [erlang-ls](https://erlang-ls.github.io/) for me, tested with version 0.23.1. ![Screenshot_20220219_142025](https://user-images.githubusercontent.com/4954650/154802698-5472533b-fdd6-49bf-bcd9-39bf2781400b.png)

Wow, thank you for the detailed response, especially the last part. If I understand this part correctly ``` 2 [IntelliJ] receive comrade_complete create a result response object set response.is_finished =...

I think I'm getting somewhere, but it's not quite there yet. The manual scheduling of repeated requests is what is giving me trouble. ```vim " This function sends a blocking...

It's me again, I tried Comrade with Deoplete to see how it fares, and I am not getting the same completion results as I am getting in IntelliJ. It will...

> Right, the completion results are not exact same with IntelliJ. The completion system of IntelliJ is quite complex, and it is not fully designed to be used like this....