diff --git a/fish/.config/fish/conf.d/vgrep-abbr.fish b/fish/.config/fish/conf.d/vgrep-abbr.fish new file mode 100644 index 0000000..939dfeb --- /dev/null +++ b/fish/.config/fish/conf.d/vgrep-abbr.fish @@ -0,0 +1,7 @@ +abbr vg vgrep +abbr vs vgrep -s +abbr vgi vgrep --interactive +abbr vgng vgrep --no-git +abbr vgnr vgrep --no-ripgrep +abbr vgnh vgrep --no-header +abbr vgnl vgrep --no-less diff --git a/fish/.config/fish/functions/vg.fish b/fish/.config/fish/functions/vg.fish deleted file mode 100644 index b4e8726..0000000 --- a/fish/.config/fish/functions/vg.fish +++ /dev/null @@ -1,3 +0,0 @@ -function vg --wraps=vgrep --description 'alias vg=vgrep' - vgrep $argv -end diff --git a/fish/.config/fish/functions/vs.fish b/fish/.config/fish/functions/vs.fish deleted file mode 100644 index 31f3732..0000000 --- a/fish/.config/fish/functions/vs.fish +++ /dev/null @@ -1,3 +0,0 @@ -function vs --wraps='vgrep -s' --description 'alias vs=vgrep -s' - vgrep -s $argv -end