ghost-text.vim
ghost-text.vim copied to clipboard
“fail to start tcp svr on localhost:4001” when calling :GhostTextStart
- vim version 9.0.844
- Python 3.10.8
- macOS 11.7
Calling :GhostTextStart fails with “fail to start tcp svr on localhost:4001”
I tried hacking in some simple debugging to catch the exception message, and I what I got was this:
BaseEventLoop.create_server() got an unexpected keyword argument 'loop'
I guess this is due to the asyncio loop parameters having been removed in in Python 3.10?
I’ve opened PR #10 with a patch that fixes this problem.