diff options
author | Leon Rische <leon.rische@me.com> | 2020-09-15 22:03:37 +0200 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2020-09-15 22:03:37 +0200 |
commit | 4575d7d5096b01e79ab7ada79118fc5e9f09bb7a (patch) | |
tree | 14b4aee001c9808c9e60b0103b9cb2e259ae529d | |
parent | e8235df8b63309fb5c0a0ee2b8e239cd166040c6 (diff) |
Require awk indexer
-rw-r--r-- | org-fc.el | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -539,13 +539,17 @@ If it is shorter than EXPECTED-LENGTH, it is filled using (org-set-tags (remove tag (org-get-tags nil 'local)))) +;;; Card Indexing (AWK) + +(require 'org-fc-awk) + ;;; Card Initialization (defun org-fc--init-card (type) "Initialize the current card as a flashcard. Should only be used by the init functions of card TYPEs." (if (org-fc-entry-p) - (error "Headline is already a flashcard")) + (error "Headline is already a flashcard")) (org-back-to-heading) (org-set-property org-fc-created-property |