Guillaume Gomez

Results 1141 comments of Guillaume Gomez

I'm a bit lost. Your content from `users.md` is included as a doc comment, meaning it's not rust code and cannot be used as such. So even if I make...

It doesn't need to reside in a `.rs` at all. It can reside in whatever you want. I just double-checked the [docs](https://docs.rs/doc-comment/latest/doc_comment/macro.doctest.html) just in case and it's showing a `.md`...

If your markdown file look like this: ```md pub struct Something; ``` Then you can also include this as rust source code since it's literally rust source code.

Well, I don't get why you want to do that in the first place so...

That could be a nice addition indeed.

Well, one unwrap less. But a bit more confusing. I'm not sure which is preferable in such a situation... :-/

If the Neovim process is a child of the GUI process, shoud it stop by itself when its parent dies ?

It all depends on one thing: does it need to be represented as a `u24` in memory? If yes, then go for `[u8; 3]` hidden inside a struct, otherwise go...