Casey Rodarmor

Results 497 issues of Casey Rodarmor

I prefer triple-backticks for codeblocks, since i find it a little easier to edit. What would you think of an option to use triple-backticks for codeblocks, instead of indentation?

good first issue
feature request

I prefer to use the underlined form for H1 and H2 headings, like so: ```markdown h1 heading ========== h2 heading ---------- ``` I personally find that it sets them off...

good first issue
feature request

I've used fehler on a few small projects and like it very much. (Thank you!) I'm considering using it for a larger project, but I'm worried that having the `#[throws]`...

Sorry for not getting it right the first time!

Thanks for this! I'm using it a command runner[0] to figure out when to produce colored error messages and it works great. It would be great if I could somehow...

I like to keep the console clean if there aren't any errors, so that errors are easier to spot. Would it be possible to disable the loading message?

I'm eager to use Bao in a project, so I'm curious about its current state, and when it might be ready for use. I read through the spec, and it...

What do you think about allowing the following: ``` run!( "echo foo"; "echo bar"; ); ``` I've wanted it a few times, just to make my scripts more compact. It's...

I tried to do: ```rust run!(%"systemctl edit foo"); ``` Which didn't work, because `systemctl edit foo` requires a TTY, because cradle always uses `command.stdin(Stdio::piped())`, the process doesn't inherit the TTY...

I'm writing a command wrapper and would like to exec the command I'm running, so that the process tree doesn't show the intermediate wrapper. I looked in the standard library,...