diff --git a/fish/.config/fish/conf.d/vgrep-abbr.fish b/fish/.config/fish/conf.d/vgrep-abbr.fish deleted file mode 100644 index 939dfeb..0000000 --- a/fish/.config/fish/conf.d/vgrep-abbr.fish +++ /dev/null @@ -1,7 +0,0 @@ -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/vgF.fish b/fish/.config/fish/functions/vgF.fish deleted file mode 100644 index 4126410..0000000 --- a/fish/.config/fish/functions/vgF.fish +++ /dev/null @@ -1,4 +0,0 @@ -function vgF --wraps=vgrep --description 'vgrep search with fzf' - set -f INITIAL_QUERY $argv[1] - FZF_DEFAULT_COMMAND="vgrep --no-header $INITIAL_QUERY" fzf --bind "Ctrl-d:half-page-down,Ctrl-u:half-page-up,change:reload:vgrep --no-header {q} || true" --ansi --phony --tac --query $INITIAL_QUERY | awk '{print $1}' | xargs -I{} -o vgrep --show {} -end diff --git a/fish/.config/fish/functions/vgf.fish b/fish/.config/fish/functions/vgf.fish deleted file mode 100644 index 452b498..0000000 --- a/fish/.config/fish/functions/vgf.fish +++ /dev/null @@ -1,4 +0,0 @@ -function vgf --wraps=vgrep --description 'vgrep search with fzf' - set -f INITIAL_QUERY $argv[1] - vgrep --no-header $INITIAL_QUERY | fzf --ansi --bind "Ctrl-d:half-page-down,Ctrl-u:half-page-up" | awk '{print $1}' | xargs -I{} -o vgrep --show {} -end