Raghu
Raghu
Chiming in for a me too:). I'm trying to implement a plugin for [GhostText](https://addons.mozilla.org/en-US/firefox/addon/ghosttext/) and basically need two workers that both need to be on the main thread since they...
@bfredl thanks.. can you point me to some more documentation/details on how to use nvim.run_loop?
So I tried to `nvim.run_loop` with gevent greenlets and hasn't worked out well. It's most likely my poor understanding of the nvim.run_loop - but could it be that mixing Gevent...
Got it. By the way, can I start multiple nvim.run_loop - one per thread?
This worked for me on Windows 7 1. install elecron ``` npm install electron-prebuilt -g ``` 2. Download latest neovim binary for windows from appveyor. Keep it somewhere on the...
It seems to be helping... however, behavior is inconsistent where maybe once in 5 times, neovim isn't closed properly.
+1 came here looking for a `config.cson` option for this...
Editing `src\nvim.css` seems to at least to get us partially there... ``` #nvas-cursor { position: absolute; box-sizing: border-box; border: 1px solid; background-color: rgba(244,244,244,0.3); } ```
Also, this fixes insert mode cursor ``` css .insert-mode #nvas-cursor { border: 0; border-left: 2px solid; background-color: transparent; } ```
https://developers.google.com/blogger/docs/3.0/reference/posts/insert says that post body is a Posts resource that has a url attribute. I'm not sure it will work though since you're creating a new resource. In any case,...