pseyfert
pseyfert
between 0.21 and 0.22.1 the cli arguments have been updated.
this fixes #69
as reported https://aur.archlinux.org/packages/shellex/, there is an `install -d` missing in conf.mk. afaiu the missing directory should get created in `install-conf`, but since there's no dependency between `install-rc` and `install-conf`, i...
Reviewing #66 , I noticed `$thefiles` leaks into the shellex command line. It does not make it to the child process (`cat $thefiles > /tmp/test` yields and empty file) but...
replacing `urxvt` by `urxvtc` in `shellex.in` (and running `urxvtd`) it appears the shellex size file never gets filled, and subsequently the size file doesn't get unlinked.
disclaimer: Yes, I'm aware that `nan == nan` has to return `false`. I would expect that a testing utility should consider a comparison between two floating point variables, which are...
The current cmake completion does not suggest the `-D` arguments that are required when running `--find-package`. [See also stackoverflow](https://stackoverflow.com/questions/28863366/command-line-equivalent-of-cmakes-find-package). Essentially, when one uses `--find-package`, also `-DNAME` must be set. Otherwise...
Iiuc the value hint CommandWithArgs for zsh was incorrect when in a positional argument after the first positional argument. I updated the clap_complete/tests/common.rs:value_hint_command accordingly to generate a test case. The...
I basically went through the reproducer from https://github.com/clap-rs/clap/issues/1596 and tried to narrow down which characters cause issues in: ``` fn main() { let values = (0u8..128u8) .map(|i| i as char)...
when one marks a section in visual mode (visual, visual block, visual line) in vim, and hits `r␣`, then all marked characters get replaced by whitespaces. on godbolt.org, `r␣` just...