From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brady Trainor Subject: After org-agenda-tag-filter-preset, (search ".") seems to break. Date: Mon, 20 Oct 2014 03:31:15 -0700 Message-ID: <87mw8rxcb0.fsf@uw.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42280) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgAFZ-0002xU-JB for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 06:31:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgAFS-0002bV-2d for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 06:31:41 -0400 Received: from plane.gmane.org ([80.91.229.3]:43635) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgAFR-0002bL-Sk for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 06:31:34 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XgAFO-00005L-PD for emacs-orgmode@gnu.org; Mon, 20 Oct 2014 12:31:30 +0200 Received: from 174-24-239-229.tukw.qwest.net ([174.24.239.229]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Oct 2014 12:31:30 +0200 Received: from algebrat by 174-24-239-229.tukw.qwest.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 20 Oct 2014 12:31:30 +0200 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org For a global search, the result of custom command `g' seems to work, while the custom command `f' fails. I am guessing this has to do with `search' block is not tied in strongly to the greater set of custom command tools, but wanted to bring it to your attention in case it was found to be unwanted behavior. #+BEGIN_SRC emacs-lisp (setq org-agenda-custom-commands '(("g" "Global search" ((search "."))) ("f" "Global search after tag filter" ((search ".")) ((org-agenda-tag-filter-preset '("+work")))))) #+END_SRC In other words, the regexp wildcard `.' works with `(search ".")' alone, but seems to fail after a tag-filter, i.e. only headlines with periods in them work. -- Brady