Thiago Padilha
Thiago Padilha
> I'm not sure why it uses a virtual cursor rather than the real terminal cursor... seems to me using the real terminal cursor would be much preferable. Hopefully someone...
> I can't rerun the test right now, but you should still be able to apply the patch in neovim/neovim#8102 (comment) to reproduce. So all I have to do is...
> Was this intended to be merged as-is? I thought it was just being used for debugging. I'm not sure we should be printing the debug messages and writing a...
@justinmk applying your [patch](https://github.com/neovim/neovim/issues/8102#issuecomment-399789795) actually results in an invalid msgpack-rpc payload being sent After applying @phodge [patch](https://github.com/neovim/neovim/issues/8102#issuecomment-403377604) and running `while true ; do TEST_FILE=test/functional/ui/spell_spec.lua make functionaltest || break ; done`...
@cweagans If you want to do this, I suggest to investigate how [component.io](http://component.github.io/) (javascript package registry and installer) is implemented. It is simple, well designed and has minimal server-side requirements,...
> However, I'm not actually sure we want to spawn a greenlet for every poll event, because this event doesn't imply that there actually is useful data that needs to...
> Which "just happens" to work given how the python client library uses greenlets. Perhaps it would be a cleaner abstraction if there was a session.schedule_greenlet method (i e switch...
> The "right way(TM)" is to have replace_termcodes return a new Binary type that is not treated as a decodable string. Can't that be done with another SessionHook? For example,...
I'm not sure what can be done, I've tried setting the **main** module in the compatibility module setup: ``` diff diff --git a/runtime/autoload/provider/script_host.py b/runtime/autoload/provider/script_host.py index 1420831..dddded8 100644 --- a/runtime/autoload/provider/script_host.py +++...
> so that the individual gui implementation only need to care about the grid and not the details of the ui update events. If a gtk widget is also implemented,...