diff options
-rw-r--r-- | org-fc.el | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -764,6 +764,12 @@ Other useful values are: (org-fc-map-cards 'org-fc-suspend-card)) ;;;###autoload +(defun org-fc-suspend-region () + "Suspend all cards in the current region." + (interactive) + (org-fc-map-cards 'org-fc-suspend-card 'region)) + +;;;###autoload (defun org-fc-unsuspend-card () "Unsuspend the headline at point. Checks if the headline is a suspended card first." @@ -782,6 +788,12 @@ Checks if the headline is a suspended card first." (interactive) (org-fc-map-cards 'org-fc-unsuspend-card)) +;;;###autoload +(defun org-fc-unsuspend-region () + "Un-suspend all cards in the current region." + (interactive) + (org-fc-map-cards 'org-fc-unsuspend-card 'region)) + ;;; Indexing Cards ;;;; Card Filters |