diff options
author | Leon Rische <leon.rische@me.com> | 2020-09-15 23:50:56 +0200 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2020-09-15 23:50:56 +0200 |
commit | bd488b1fdeebb629d60cf7d71f3bff208b39835a (patch) | |
tree | 0376900103e4ad55c0e248427b5ceebf8b2d4f1c /org-fc-awk.el | |
parent | 9ffaaffb4b47599e8d4a612bc6f7bc1a2b5ab30b (diff) |
Include file title in card index
Diffstat (limited to 'org-fc-awk.el')
-rw-r--r-- | org-fc-awk.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/org-fc-awk.el b/org-fc-awk.el index 07c64cb..70dcae6 100644 --- a/org-fc-awk.el +++ b/org-fc-awk.el @@ -83,7 +83,8 @@ ITAGS and LTAGS are strings `\":tag1:tag2:\"'" (lambda (file) (mapcar (lambda (card) - (plist-put card :path (plist-get file :path))) + (plist-put card :path (plist-get file :path)) + (plist-put card :filetitle (plist-get file :title))) (plist-get file :cards))) index)) |