Ilya Grigoriev
Ilya Grigoriev
> 3\. (Not for the first version) I wish there was some way to specify the branches that define immutable commits (e.g. `main`), so that `jj commit --advance-branches` would know...
> Doesn't the `trunk()` alias pretty much resolve the question of how to exclude `main` and `master` from automatic advancement? `trunk()` would indeed often work, but it is currently supposed...
Probably in addition to `--advance-branches`, here's an idea that could maybe help with the fancier use-cases. It feels a bit incomplete/underbaked at the moment, but might be worth considering and...
You can check out https://github.com/blacknon/hwatch. It's less polished than `viddy` in some ways, but it doesn't suffer from this particular problem.
I think there's no need for quite so much custom argv parsing, at least not anymore. `clap` now has [`indices_of`](https://docs.rs/clap/2.33.3/clap/struct.ArgMatches.html#method.indices_of) which should do the job: it will give positions of...
Thanks for looking at this! I might or might not get to fixing this further at some point.
Looking at bugs like https://github.com/jaraco/keyring/issues/496, it might help if somebody ran `keyring --list-backends` and tried to debug what causes the issue to happen. Can it be reproduced with the "Command-line...
I think it'd help a lot simply if extrakto gave these instructions (or a link to them) and an error message when run on Mac OS's default bash. IIRC, it...
I think this should be documented in https://martinvonz.github.io/jj/v0.13.0/config/#pager. The simplest thing would be to change a sentence to say: > less -FRX is the default pager in the absence of...
> I almost feel like the actual right answer is to have a built-in pager with the defaults `jj` would prefer, then allow users to set preferring the system pager...