emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: chris <inkbottle007@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: org-tag-persistent-alist AND per-file dynamic tags
Date: Mon, 29 Nov 2021 04:49:00 +0100	[thread overview]
Message-ID: <5046398.lFmPd3n6S9@pluto> (raw)
In-Reply-To: <87ilx5ws5j.fsf@svictor.net>

[-- Attachment #1: Type: text/plain, Size: 4156 bytes --]

On Saturday, 6 November 2021 10:10:55 CET Victor A. Stoichita wrote:
> Greetings to all,
> 
> Reading the manual about setting glopal/per-file tags [1], I wonder if
> it is possible to use org-tag-persistent-alist AND per-file
> dynamic tags.

I use footnote 53 from https://orgmode.org/manual/Setting-Tags.html[1].
I put my tags in `tags-file.org`, using `#+TAGS:`.
I've put the next two lines in `init.el`.

(setq org-agenda-files (list "~/path-to/tags-file.org")
         org-complete-tags-always-offer-all-agenda-tags t)

And I have completion on both the tags in `tags-file.org` and tags in the current buffer.
I don't use `org-tag-alist`, so the comments made in https://emacs.stackexchange.com/q/
69369#comment111307_69369[2], would not apply.

I use a script to collect the tags, based on Kitchin's https://stackoverflow.com/a/
27527252[3], and help from `#emacs`.
I use `with-temp-buffer` because otherwise all the files accessed by `org-map-entries` are 
showing when I do `C-x C-b` and I find it cumbersome.
The tags are sorted by frequency, which is not necessary here, but it's really nice.
I suppose you could put a `defun nice-function-name` on top of it, but so far, it's only a 
hack.
`~/path-to-directory` and `tags-file.org` should be tweaked to your needs. `default-
directory` can be used for the former, too.
(caveat: the script makes use of `-flatten`, `-map` and `-uniq, from `dash.el`. It also 
makes use of `mapcar` where `-map` would do, `seq-sort` where `-sort` would do, `seq-
reduce` where `-reduce` would do. Standard elisp has `flatten-tree`, for `-flatten`, 
`mapcar` for `-map`, `delete-dups` for `-uniq`. https://github.com/Droogans/
unmaintainable-code[4])

(let* ((dir "~/path-to-directory")
       (all-tags
        (-flatten
         (-map
          (lambda (fpath)
            (with-temp-buffer
              (insert-file-contents fpath)
              (org-mode)
              (org-map-entries
               (lambda ()
                 (let ((tag-string (car (last (org-heading-components)))))
                   (when tag-string
                     (split-string tag-string ":" t)))) nil nil)))
          (directory-files-recursively dir "^[^#].*org$")))))
  (let ((tags-count
         (cl-loop for tag in (-uniq all-tags)
                  collect (cons tag (cl-count tag all-tags :test 'string=)))))
    (let ((tags-list
           (mapcar 'car (seq-sort (lambda (a b) (< (cdr b) (cdr a))) tags-count))))
      (let ((tags-string
             (cl-reduce (lambda (a b) (concat a " " b)) tags-list)))
        (let ((filled-tags-string
               (with-temp-buffer
                 (setq fill-column 70
                       fill-prefix "#+TAGS: ")
                 (insert (concat "#+TAGS: " tags-string)) (fill-paragraph) (buffer-string))))
          (with-temp-file "tags-file.org" (insert filled-tags-string)))))))


> 
> When using org-set-tags-command, I’d like to select from a list
> comprising both:
> 1. the list of predefined tags in org-tag-persistent-alist
> 2. the list of all the tags that are already in use in the current
>    buffer (some of which might not be in the persistent alist). I don’t
>    want to use the #+TAGS keyword at file-level, just the list of tags
>    already attached to some headline in the buffer.
> 
> The manual says:
> > If you have globally defined your preferred set of tags using the
> > variable org-tag-alist, but would like to use a dynamic tag list in
> > a specific file, add an empty ‘TAGS’ keyword to that file
> 
> And then it says:
> > If you have a preferred set of tags that you would like to use in every
> > file, in addition to those defined on a per-file basis by ‘TAGS’
> > keyword, then you may specify a list of tags with the variable
> > org-tag-persistent-alist.
> 
> I tried to combine both behaviors by putting an empty ’TAGS’ keyword at
> the top of my file. But this still only gives me the tags in
> org-tag-persistent-alist. What would be the best way to add to it for
> completion the tags already used in the buffer?
> 
> Regards,

[-- Attachment #2: Type: text/html, Size: 12019 bytes --]

  reply	other threads:[~2021-11-29  4:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-06  9:10 org-tag-persistent-alist AND per-file dynamic tags Victor A. Stoichita
2021-11-29  3:49 ` chris [this message]
2021-12-09 19:35   ` Victor A. Stoichita

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5046398.lFmPd3n6S9@pluto \
    --to=inkbottle007@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).