Steps to Reproduce:
/Applications/Emacs.app/Contents/MacOS/Emacs -Q
emacs-version is a variable defined in `C source code'. Its value is "24.0.94.1"
Evaluate the following in the scratch buffer
(require 'org-install) (setq org-tag-alist (quote ( ("tag_a" . ?a) ("tag_b" . ?b))))
* Header 1 ** Header 1.1 * Header 2 :Personal:
C-c C-q
to bring up Tag selectionThe expected result is the fast tag selection; this works
<TAB>
to enter free tag selectionThe expected result is that the Minibuffer prompts with Tag:
; this works
Per
followed by <TAB>
The expected result is a completion of the file-tag Personal
; this works
tag_
followed by <TAB>
The expected result is a completion list of tag_a
and tag_b
, this does not work and the Minibuffer prompts [No match]
Note that if I were to remove the single characters for tag_a
and tag_b
completion works for those two but not for the Personal
tag from the file
Shouldn't free tag entry always show all possible tags, regardless of the setting of or use of fast tag completion?