aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-08-30 13:59:36 -0700
committerGravatar Tom Willemse2021-08-30 13:59:36 -0700
commit0a2bbffa1a5aa14d0281db1cc75e81c4d117e7de (patch)
tree18a7d12811b040734f79e3940f5e8a2d29e25a0f /oni-org
parentee6dd64430d8b94265cf25cb26e0e408a940580a (diff)
downloademacs-config-0a2bbffa1a5aa14d0281db1cc75e81c4d117e7de.tar.gz
emacs-config-0a2bbffa1a5aa14d0281db1cc75e81c4d117e7de.zip
[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.
Diffstat (limited to 'oni-org')
-rw-r--r--oni-org/oni-org.el8
1 files changed, 5 insertions, 3 deletions
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 <tom@ryuslash.org>
;; 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))))