Zach Oakes
Zach Oakes
Interesting! I'll look into that.
It is indeed a child process, but it isn't killed automatically. See [this discussion](http://stackoverflow.com/questions/284325/how-to-make-child-process-die-after-parent-exits), which seems to suggest that there is no cross-platform way to ensure a child process is...
The reason I'm not using `--embed` is because VteTerminal uses stdin/stdout to display it. Perhaps that could change if I began using a DrawingArea widget like python-client. I recall you...
@tarruda I'm considering trying to implement `ui.h` directly so I don't need to run neovim in a separate process. I figure it should be possible if I use a DrawingArea...
Great, I was wondering if my idea might have threading problems so I'll follow that issue. I have temporarily stopped rebasing my fork on the latest Neovim commits, however, because...
I am indeed using malloc [in one place](https://github.com/oakes/neovim-rs/blob/master/src/lib.rs#L203), so I take it that all I need to do is use `je_malloc` instead? Either that, or disable jemalloc, I suppose.
The reason you can't just eval `all-todos` in a REPL is because it isn't a top-level var. You would have to define it using `def` to get that. In odoyle,...
Actually you can still click where the disclosure triangle normally is and it should expand/collapse the tree as usual. You just can't see the actual triangles.
Looks pretty good! Thanks for working on this. Are you planning on adding more?
I originally wrote `insert-text!` in order to support IE/Edge, but removed support for those browsers in [this commit](https://github.com/oakes/paren-soup/commit/30d61fb63283cbaa9f47de2633db9bac488e6f65) so right now that function isn't being used. But I don't remember...