Terts Diepraam

Results 57 issues of Terts Diepraam

In `true` and `false`, we override clap's default help and version arguments. With clap 3.2, this can probably be simplified by using `clap::ArgAction::{Help, Version}`.

good first issue

I got annoyed that there was no `stty` yet, so I started working on it :) In this initial version: - ~Only binary flags are implemented (i.e. attributes that are...

Experimental implementation of https://github.com/uutils/coreutils/issues/2816 I wanted to test my idea from https://github.com/uutils/coreutils/issues/2816 and gather some feedback on it, so here we are :) The macro reads the `help.md` file at...

Hi! In the uutils/coreutils repository, we ran into this issue: https://github.com/uutils/coreutils/pull/3687. The minimum reproducible case is: ```rust quick_error! { #[derive(Debug)] enum Error { SomeError(s: String, err: io::Error) { context(s: String,...

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the existing issues ### Clap Version 3.0.7 ### Describe your use case...

C-enhancement
M-breaking-change
S-waiting-on-decision
A-builder

Closes #1455 Based on the recent discord discussion around https://github.com/uutils/coreutils/issues/1455, I figured I would give it a go to see what the feature would look like. This is mostly meant...

From the GNU manual: ``` ‘-F DEVICE’ ‘--file=DEVICE’ Set the line opened by the file name specified in DEVICE instead of the tty line connected to standard input. This option...

U - stty

From the GNU manual: ``` ‘-g’ ‘--save’ Print all current settings in a form that can be used as an argument to another ‘stty’ command to restore the current settings....

U - stty

GNU `stty` can list and change special terminal characters. This consists of two parts: printing and changing them. Printing is done in the following format: ``` intr = ^C; quit...

U - stty

GNU `stty` has several "combination settings" that are shortcuts for multiple flags. We need to support these too. ``` Combination settings: * [-]LCASE same as [-]lcase cbreak same as -icanon...

U - stty