Roland Fredenhagen
Roland Fredenhagen
Trying to set up my CI on an nvim-oxi plugin, but linking fails: https://github.com/ModProg/config.nvim/actions/runs/3302333877 I see you have removed windows building from the CI in this repo. But do you...
Is there a good way to get comprehensive testing on the nvim api? To avoid having problems with breaking changes, I opted to add all functionality I use to the...
Add the possiblility to have custom configuration when running tests. i.e. amend the runtimepath with some folder containing a custom init script and maybe specify the pwd for the neovim...
Similar to the std's Vec has a `is_empty()` method this would be nice for quick checks on whether there is a need to produce messages instead of `publisher.subscriber_count() != 0`.
This allows using them in e.g. a match statement without a block, and it matches the behavior of [std's `print!()` macros](https://doc.rust-lang.org/src/std/macros.rs.html#132-139). ```rust match true { true => ros_info!("hello"), false =>...
As this was the smaller crate I used it as a POC for thiserror use. (as this is not really a library and more of a bin crate being a...
AFAICT `error_chain` is more or less dead sadly. One issue it has is that their errors don't implement `Sync` therefor you cannot use e.g. `anyhow` or similar libraries because they...
I'm thinking about implementing `rosrust_dynamic_reconfigure` would that be something you'd include in this repo or should that be a completely seperate project?
Some shell completions, such as `fish` and `zsh` allow displaying a help message. Currently, we use the short help, but this might not always be appropriate due to the constraints...
While there are some shell specific behaviors for options, e.g. for `zsh` and `fish`: In `zsh`, options are completed if at least one `-` is present. In `fish` options are...