Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Nathan Neff
Thanks Bastien for your hard work - I'm famous! https://code.orgmode.org/bzg/org-mode/commit/c0d08b7efe740c17a3eec28984161c05e43da5ef On Wed, Feb 12, 2020 at 1:01 PM Bastien wrote: > Hi Nathan, > > thanks for sticking with me on this one! You're right, it's when the > match happens at the end

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Bastien
Hi Nathan, thanks for sticking with me on this one! You're right, it's when the match happens at the end of the line, I've pushed a fix in maint. Thanks! -- Bastien

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Nathan Neff
Whoops sorry wanted to reference the source code: https://code.orgmode.org/bzg/org-mode/src/master/lisp/org-agenda.el#L10147 I think that the problem is the call to org-agenda-bulk-mark on line 10160 (it doesn't mark if the point is at the EOL)

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-12 Thread Nathan Neff
Hi Bastien, I'm using emacs -u NONE with emacs 27.0.50 and Org mode version 9.2.5 And I'm not seeing this expected behavior. I have the following simple foo.org file for my agenda: * TODO Foo * TODO Pre Class * TODO Again I'm using the built-in agenda view for TODO entries ("t") and I'm

Re: Agenda: How to bulk mark regex w/spaces?

2020-02-11 Thread Bastien
Hi Nathan, Nathan Neff writes: > I'm trying to use org-agenda-bulk-mark-regexp and trying to search > for > headings having "Pre Class". > > None of the combinations have worked so far (I've tried with quotes > and without quotes in the prompt) There is nothing special with the regexps you

Agenda: How to bulk mark regex w/spaces?

2020-02-11 Thread Nathan Neff
Hello all, I'm trying to use org-agenda-bulk-mark-regexp and trying to search for headings having "Pre Class". None of the combinations have worked so far (I've tried with quotes and without quotes in the prompt) Pre Class Pre\sClass Pre\\sClass Pre.*Class {Pre Class} It appears that the