From 0a2bbffa1a5aa14d0281db1cc75e81c4d117e7de Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 30 Aug 2021 13:59:36 -0700 Subject: [oni-org] Use ‘grep -E’ instead of ‘egrep’ ‘egrep’ doesn’t seem to be a program that exists on Windows, even after installing the GNU coreutils through at least Cygwin and MSYS2. --- oni-org/oni-org.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'oni-org') diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el index 3646d57..5a429b1 100644 --- a/oni-org/oni-org.el +++ b/oni-org/oni-org.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2021.0815.233720 +;; Version: 2021.0830.135920 ;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-contrib org-bullets org-edna diminish all-the-icons olivetti) ;; This program is free software; you can redistribute it and/or modify @@ -539,14 +539,16 @@ also move point to the start of the heading." (mapcar (lambda (file) (expand-file-name file oni-org-exocortex-directory)) (split-string (let ((default-directory oni-org-exocortex-directory)) - (shell-command-to-string "egrep -l \"^\\\\*+ (TODO|WIP|BLOCKED|DONE|READ|READING|FINISHED|STOPPED|WATCH|WATCHING|WATCHED|LISTEN|LISTENING|CANCELLED)\" *.org")) + (shell-command-to-string "grep -E -l \"^\\\\*+ (TODO|WIP|BLOCKED|DONE|READ|READING|FINISHED|STOPPED|WATCH|WATCHING|WATCHED|LISTEN|LISTENING|CANCELLED)\" *.org")) "\n" t)))) (setq org-agenda-tags-todo-honor-ignore-options t) (setq org-agenda-todo-ignore-scheduled 'future) (setq org-agenda-restore-windows-after-quit t) (setq org-agenda-custom-commands - '(("i" "Inbox" todo "" + '(("i" + "Inbox: The giant list of things that I haven’t sorted through yet." + todo "" ((org-agenda-files (list org-default-notes-file)) (org-agenda-cmp-user-defined (lambda (_ _) -1)) (org-agenda-sorting-strategy '(user-defined-up)))) -- cgit v1.2.3-54-g00ecf