diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-org.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/km-org.el b/lisp/km-org.el index 74f7eb7..7f4d5da 100644 --- a/lisp/km-org.el +++ b/lisp/km-org.el @@ -370,6 +370,15 @@ displayed in the agenda." (interactive) (org-agenda-archive-with #'km/org-delete-subtree)) +;;;###autoload +(defun km/org-agenda-set-restriction-lock (&optional type) + "Call `org-agenda-set-restriction-lock' with flipped C-u meaning." + (interactive "P") + (org-agenda-set-restriction-lock + (cond ((equal type '(4)) nil) + (type) + (t '(4))))) + ;;; Refiling |