sunn4room
sunn4room
Unfortunately, I can't find a perfect solution. Just a temporary solution: copy current buffer into a temp file and toggle tagbar. The next issue is that you can't execute "coc-definition" in the...
I agree your counter-suggestion because this is a project written in python. Compared to javascript, python is not good at asynchronous programming and GUI programming although python has asyncio, threading...
Maybe it's a good idea to make a new thread. ```python # Client.py: 56 - self.extension.trigger_event(event) + def extension_trigger_event(): + self.extension.trigger_event(event) + threading.Thread(target=extension_trigger_event).start() ``` it can avoid blocking the main...
> Why? This doesn't solve anything, and it makes it more complex. subprocess is only one type of blocking operation. There are many others. And there are different methods of...