emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Bug: Group tag filters repeated per org-file [9.1.13 (release_9.1.13-751-g9dcc52 @ c:/D-Drive/bin/org-mode/lisp/)]
@ 2018-05-12  3:21 Bernt Hansen
  2018-06-14 15:18 ` Josiah Schwab
  0 siblings, 1 reply; 3+ messages in thread
From: Bernt Hansen @ 2018-05-12  3:21 UTC (permalink / raw)
  To: emacs-orgmode

Hi,

This bug is mainly a visual annoyance when filtering by tag in the
agenda.  It is low priority to fix but I thought I should report it
anyway.

Thanks for all your fabulous work on org-mode!

Regards,
Bernt

--- test.org -----------------------------------------------------------------------------
*Keys To Reproduce*

1) Add test.org to org-agenda-files 
   C-c [ 

2) open agenda
   C-c a a

3) Filter by tag
   /
   shows 'Filter by tag [123whPfdDQMEc? '
   This is correct.

4) quit filter
   C-g
   
5) Switch back to test.org
   C-x o

6) Add a second org file to org-agenda-files
   C-x C-w test2.org RET
   C-c [

7) Add test.org to org-agenda-files 
   C-c [ 

8) open agenda
   C-c a a

9) Filter by tag
   /
   shows 'Filter by tag [123123whPfdDQMEc? '

   There is an extra '123' filter choice. One per org-agenda-files entry.

   On my setup I have 8 files in my org-agenda-files and '123' is
   repeated 8 times before the other filter options.

   shows 'Filter by tag [123123123123123123123123whPfdDQMEc? '

* TODO Test Parent                                          :PRODUCTION:MISC:
** TODO do something
** TODO foo                                                             :BAR:

--- test.el -----------------------------------------------------------------------------
(setq org-agenda-tags-todo-honor-ignore-options t)
(setq org-fast-tag-selection-single-key (quote expert))
(setq org-tag-alist (quote ((:startgroup)
			    ("S1" . ?1)
			    ("S2" . ?2)
			    ("S3" . ?3)
			    (:endgroup)
			    ("WAITING" . ?w)
			    ("HOLD" . ?h)
			    ("PERSONAL" . ?P)
			    ("FS" . ?f)
			    ("DEFECT" . ?d)
			    ("DEV" . ?D)
			    ("QA" . ?Q)
			    ("MISC" . ?M)
			    ("crypt" . ?E)
			    ("CANCELLED" . ?c)
			    ("FLAGGED" . ??))))
(setq org-tags-match-list-sublevels t)
(setq org-todo-keyword-faces
      (quote (("TODO" :foreground "red" :weight bold)
	      ("NEXT" :foreground "blue" :weight bold)
	      ("MEETING" :foreground "forest green" :weight bold)
	      ("DONE" :foreground "forest green" :weight bold)
	      ("WAITING" :foreground "orange" :weight bold)
	      ("DELEGATED" :foreground "orange" :weight bold)
	      ("HOLD" :foreground "magenta" :weight bold)
	      ("PASS" :foreground "forest green" :weight bold)
	      ("FAIL" :foreground "red" :weight bold)
	      ("CANCELLED" :foreground "forest green" :weight bold))))
(setq org-todo-keywords
      (quote ((sequence "TODO(t/!)" "NEXT(n/!)" "|" "DONE(d/!)")
	      (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "MEETING"))))

(setq org-todo-state-tags-triggers
      (quote (("CANCELLED" ("CANCELLED" . t))
	      ("WAITING" ("WAITING" . t))
	      ("HOLD" ("WAITING") ("HOLD" . t))
	      (done ("WAITING") ("HOLD"))
	      ("TODO" ("WAITING") ("CANCELLED") ("HOLD") ("DELEGATED"))
	      ("NEXT" ("WAITING") ("CANCELLED") ("HOLD") ("DELEGATED"))
	      ("DONE" ("WAITING") ("CANCELLED") ("HOLD") ("DELEGATED"))
	      ("DELEGATED" ("DELEGATED" . t) ("WAITING") ("CANCELLED") ("HOLD"))
	      ("PASS" ("WAITING") ("CANCELLED") ("HOLD")))))

--------------------------------------------------------------------------------

Emacs  : GNU Emacs 25.1.1 (x86_64-w64-mingw32)
 of 2016-09-17
Package: Org mode version 9.1.13 (release_9.1.13-751-g9dcc52 @
 c:/D-Drive/bin/org-mode/lisp/)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Bug: Group tag filters repeated per org-file [9.1.13 (release_9.1.13-751-g9dcc52 @ c:/D-Drive/bin/org-mode/lisp/)]
  2018-05-12  3:21 Bug: Group tag filters repeated per org-file [9.1.13 (release_9.1.13-751-g9dcc52 @ c:/D-Drive/bin/org-mode/lisp/)] Bernt Hansen
@ 2018-06-14 15:18 ` Josiah Schwab
  2019-01-03  0:36   ` Josiah Schwab
  0 siblings, 1 reply; 3+ messages in thread
From: Josiah Schwab @ 2018-06-14 15:18 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

I just also noticed that this issue exists on maint, Org mode version
9.1.13 (release_9.1.13-5-g89859f).

Josiah

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Bug: Group tag filters repeated per org-file [9.1.13 (release_9.1.13-751-g9dcc52 @ c:/D-Drive/bin/org-mode/lisp/)]
  2018-06-14 15:18 ` Josiah Schwab
@ 2019-01-03  0:36   ` Josiah Schwab
  0 siblings, 0 replies; 3+ messages in thread
From: Josiah Schwab @ 2019-01-03  0:36 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

I recently upgraded to org 9.2 (release_9.2-4-g284799) and just wanted
to note that I am still seeing this cosmetic issue that Bernt reported.

Josiah

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-01-03  0:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-12  3:21 Bug: Group tag filters repeated per org-file [9.1.13 (release_9.1.13-751-g9dcc52 @ c:/D-Drive/bin/org-mode/lisp/)] Bernt Hansen
2018-06-14 15:18 ` Josiah Schwab
2019-01-03  0:36   ` Josiah Schwab

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).