From 2474bdb45f53339f44b40670ae324e12f17f8dc9 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Thu, 7 Dec 2023 10:08:34 -0600 Subject: [PATCH] fish: fix ccat alias --- home/features/cli/fish.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/features/cli/fish.nix b/home/features/cli/fish.nix index 804768e..770e4a8 100644 --- a/home/features/cli/fish.nix +++ b/home/features/cli/fish.nix @@ -9,7 +9,7 @@ in enable = true; shellAbbrs = rec { - ccat = "egrep -v '^\s*(#|$)'"; + ccat = "egrep -v '^\s*(#|\\$)'"; g = "git"; ga = "git add"; gc = "git commit"; # interactive commit @@ -88,4 +88,4 @@ in set -U fish_pager_color_progress 'brwhite' '--background=cyan' ''; }; -} \ No newline at end of file +}