From 160372a48f40bda7371798892cbddce10d882205 Mon Sep 17 00:00:00 2001 From: gbstan Date: Fri, 13 Dec 2019 10:15:30 +0000 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 451a0b0..fdcbb5c 100644 --- a/Examples.md +++ b/Examples.md @@ -305,7 +305,7 @@ Suggested by [@gbstan](https://github.com/gbstan) fif() { if [ ! "$#" -gt 0 ]; then echo "Need a string to search for!"; return 1; fi local file - file="$(rag --max-count=1 --ignore-case --files-with-matches --no-messages "$@" | fzf-tmux +m --preview="rga --ignore-case --pretty --context 10 '"$@"' {}")" && open "$file" + file="$(rga --max-count=1 --ignore-case --files-with-matches --no-messages "$@" | fzf-tmux +m --preview="rga --ignore-case --pretty --context 10 '"$@"' {}")" && open "$file" } ```