From 3e2e748ccb6695a90dd65e7977210834993d7118 Mon Sep 17 00:00:00 2001 From: ja0nz Date: Wed, 7 Sep 2022 18:05:03 +0200 Subject: [PATCH] feat: find->ripgrep https://github.com/l3kn/org-fc/issues/69 --- org-fc-awk.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-fc-awk.el b/org-fc-awk.el index 951c1a6..230b618 100644 --- a/org-fc-awk.el +++ b/org-fc-awk.el @@ -37,7 +37,7 @@ Matches all .org files ignoring ones with names don't start with a '.' to exclude temporary / backup files. With the '-L' option, 'find' follows symlinks." (format - "find -L %s -name \"*.org\" -not -name \".*\" -print0" + "rg ^:REVIEW_DATA: -L %s -g \"*.org\" -l -0" (mapconcat (lambda (path) (shell-quote-argument (expand-file-name path))) paths " ")))