Bogdan Grigoruță

Results 4 comments of Bogdan Grigoruță

I am really excited to see these type of changes to the flash hil. Not depending on a fixed page size struct would be really helpful for chips that have...

Yes. That is mainly what I was thinking about. A use case would be: ``` self.client.map(|client| { self.buffer.take().map(|buffer| { client.write_complete(buffer, ReturnCode::EFLASH("error name"); }); }); ``` It would allow chip maintainers...

Shameless plug, but I have impemented a similar feature for my plugin: https://github.com/krady21/compiler-explorer.nvim. It is based on `vim.api.nvim_win_set_cursor`.

I always set the cursor to the first line from the corresponding assembly output. I also thought about setting the cursor to the line exactly in the middle of the...