Spenser Black

Results 106 issues of Spenser Black

Annotated tags can contain release notes, and it would be nice if this action provided an option to use the tag's message as the GitHub Release notes.

`cargo install --git https://github.com/vhakulinen/gnvim.git --tag v0.1.6` seems to install gnvim properly. You might want to add this as an alternative installation method since it doesn't require sudo access or manually...

While working on #39 I noticed that my editor wasn't indenting consistently with existing indents. This adds an [`.editorconfig`](https://editorconfig.org/) file, which should help keep basic styling consistent with [any editor...

Fixes #35 If users prefer `-/+` to ``, they can add this to `Cargo.toml`: ```toml [dev-dependencies] pretty_assertions = { version = "*", features = ["git-style-diff"] } ``` This probably isn't...

This adds a config value in a file called `default_owner`. The config value is in the format `name:type`, where `name` is the user or organization, and `type` is either `user`...

I think it would be useful to optionally allow a default user to be set, which can be displayed by simply running `octotui` with no subcommand. I'm thinking of tools...

**Name:** svelte-check **URL:** https://www.npmjs.com/package/svelte-check, https://github.com/sveltejs/language-tools/tree/master/packages/svelte-check `svelte-check` is a tool that can be used to find issues with `.svelte` files, such as unused CSS or Typescript errors. Machine-readable output is possible...

new tool

This attribute will show up as a warning in the documentation, and also cause a warning on compilation if anyone uses `reverse` instead of `reversed`.

A string can be converted to a `Box`, allowing something like ```rust fn main() -> Result { Err("ERROR")? } ``` This PR also allows type conversion from `ColoredString` to `Box`,...

This PR makes TrueColor convert into one of the more "basic" colors (`Color::Black`, `Color::Red`, etc.) if TrueColor is not supported based on the `COLORTERM` environment variable. It gets the closest...