From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Edgington Subject: FILETAGS tags hidden by TAGS option Date: Wed, 28 Mar 2018 11:12:47 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50557) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1ClW-0001s4-7T for emacs-orgmode@gnu.org; Wed, 28 Mar 2018 11:13:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1ClV-0004rU-Cm for emacs-orgmode@gnu.org; Wed, 28 Mar 2018 11:13:30 -0400 Received: from mail-ot0-x235.google.com ([2607:f8b0:4003:c0f::235]:46510) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f1ClV-0004qn-7C for emacs-orgmode@gnu.org; Wed, 28 Mar 2018 11:13:29 -0400 Received: by mail-ot0-x235.google.com with SMTP id v64-v6so3000395otb.13 for ; Wed, 28 Mar 2018 08:13:29 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode When using org-tags-view, the list of tags used for tab-completion fails to include tags specified via the #+FILETAGS option when there exists a #+TAGS option in the file which doesn't contain the #+FILETAGS tags. For example, with the following options, the foo tag will not show up when trying to do tab-completion, but only bar and baz will: #+TAGS: bar baz #+FILETAGS: foo Is this the expected behavior? A "workaround" is to simply add foo to #+TAGS, but should this be necessary?