fish: fix ccat alias

This commit is contained in:
John Bowdre 2023-12-07 10:08:34 -06:00
parent 4e6a2a373d
commit 2474bdb45f

View file

@ -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'
'';
};
}
}