From e76807b1b5d01474dcfa24cd2092deb40f636930 Mon Sep 17 00:00:00 2001 From: Robert Irelan Date: Wed, 29 Jan 2020 10:59:34 -0800 Subject: [PATCH] ignore/types: add *.org_archive to org file type .org_archive is the default extension for Org archive files, created when entries from an Org-mode file are archived (see ). These files are still in Org mode format, so it's worth searching them at the same time as non-archive Org mode files. PR #1475 --- ignore/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignore/src/types.rs b/ignore/src/types.rs index d6deb2b..4eff914 100644 --- a/ignore/src/types.rs +++ b/ignore/src/types.rs @@ -226,7 +226,7 @@ const DEFAULT_TYPES: &'static [(&'static str, &'static [&'static str])] = &[ ("objc", &["*.h", "*.m"]), ("objcpp", &["*.h", "*.mm"]), ("ocaml", &["*.ml", "*.mli", "*.mll", "*.mly"]), - ("org", &["*.org"]), + ("org", &["*.org", "*.org_archive"]), ("pascal", &["*.pas", "*.dpr", "*.lpr", "*.pp", "*.inc"]), ("perl", &["*.perl", "*.pl", "*.PL", "*.plh", "*.plx", "*.pm", "*.t"]), ("pdf", &["*.pdf"]),