From c00b382f1334ad56fb182e5bc15d0616ff0115c1 Mon Sep 17 00:00:00 2001 From: Simon Olofsson Date: Fri, 28 Mar 2025 22:01:23 +0100 Subject: [PATCH 1/2] Add abbreviations for fish to Readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 0eebd295..4d628a17 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,13 @@ alias -g -- -h='-h 2>&1 | bat --language=help --style=plain' alias -g -- --help='--help 2>&1 | bat --language=help --style=plain' ``` +For `fish`, you can use abbreviations: + +```fish +abbr -a --position anywhere -- --help '--help | bat -plhelp' +abbr -a --position anywhere -- -h '-h | bat -plhelp' +``` + This way, you can keep on using `cp --help`, but get colorized help pages. Be aware that in some cases, `-h` may not be a shorthand of `--help` (for example with `ls`). From 5ea762a46c7940366e75693285af7e146eab4b7d Mon Sep 17 00:00:00 2001 From: Simon Olofsson Date: Sat, 29 Mar 2025 00:07:48 +0100 Subject: [PATCH 2/2] Use built-in detection for OS theme in Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d628a17..3b3c8ec4 100644 --- a/README.md +++ b/README.md @@ -691,7 +691,7 @@ theme based on the OS theme. The following snippet uses the `default` theme when and the `GitHub` theme when in the _light mode_. ```bash -alias cat="bat --theme=\$(defaults read -globalDomain AppleInterfaceStyle &> /dev/null && echo default || echo GitHub)" +alias cat="bat --theme auto:system --theme-dark default --theme-light GitHub" ```