mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 08:14:15 +00:00
Use RX for this regexp
This commit is contained in:
parent
d53ec2e0bb
commit
f973054857
1 changed files with 4 additions and 4 deletions
|
|
@ -86,10 +86,10 @@
|
|||
|
||||
|
||||
(setq org-agenda-hide-tags-regexp
|
||||
(mapconcat #'identity (list "time" "nontime" "prod" "dev" "sandbox"
|
||||
"refile"
|
||||
"short" "long" "watch" "read" "grow" "rest" "active" "idle")
|
||||
"\\|"))
|
||||
(rx (or "time" "nontime" "prod" "dev" "sandbox"
|
||||
"refile"
|
||||
"short" "long" "watch" "read" "grow" "rest" "active" "idle"
|
||||
(and symbol-start "_" (+ nonl) "_" symbol-end))))
|
||||
|
||||
(defconst category-tags '("computers"))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue