* search in org-sparse-tree for multiple files
[not found] <1277881757.3298435.1672461584764.ref@mail.yahoo.com>
@ 2022-12-31 4:39 ` Eric Chun
2022-12-31 13:38 ` Ihor Radchenko
0 siblings, 1 reply; 5+ messages in thread
From: Eric Chun @ 2022-12-31 4:39 UTC (permalink / raw)
To: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 612 bytes --]
Hi,
I can't seem to use the M-g M-n keys to jump to occurrences in sparse tree search for second org file within same Emacs window.
If I search first file by pressing C-c / r <regex> RET and then search second file by pressing C-c / r <regex> RET, I'm not able to jump to occurrences in that second file by pressing M-g M-n. I get a message saying "No more matches" even though there are matches. If I close the first file buffer, then I am able to use M-g M-n to jump to occurrences in the second file.
Does anybody know what I may be missing?
I'm using org mode version 9.6 in Emacs 28.2 on CentOS7.
[-- Attachment #2: Type: text/html, Size: 1316 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: search in org-sparse-tree for multiple files
2022-12-31 4:39 ` search in org-sparse-tree for multiple files Eric Chun
@ 2022-12-31 13:38 ` Ihor Radchenko
2022-12-31 15:29 ` Eric Chun
0 siblings, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2022-12-31 13:38 UTC (permalink / raw)
To: Eric Chun; +Cc: emacs-orgmode@gnu.org
Eric Chun <eyc8@yahoo.com> writes:
> I can't seem to use the M-g M-n keys to jump to occurrences in sparse tree search for second org file within same Emacs window.
> If I search first file by pressing C-c / r <regex> RET and then search second file by pressing C-c / r <regex> RET, I'm not able to jump to occurrences in that second file by pressing M-g M-n. I get a message saying "No more matches" even though there are matches. If I close the first file buffer, then I am able to use M-g M-n to jump to occurrences in the second file.
> Does anybody know what I may be missing?
> I'm using org mode version 9.6 in Emacs 28.2 on CentOS7.
`org-occur-next-match' does not support multiple buffers.
Looking at the docstring of `next-error-function', I am also not sure if
we need to support this there. The docstring talks only about the
current buffer.
What might be relevant is `next-error-find-buffer-function' - a user
customization you may want to set.
Generally, it is unclear for me how to implement multiple buffers
support for org-spare-tree. Ideas and patches welcome.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: search in org-sparse-tree for multiple files
2022-12-31 13:38 ` Ihor Radchenko
@ 2022-12-31 15:29 ` Eric Chun
2023-01-01 13:25 ` Ihor Radchenko
0 siblings, 1 reply; 5+ messages in thread
From: Eric Chun @ 2022-12-31 15:29 UTC (permalink / raw)
To: Ihor Radchenko; +Cc: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 1866 bytes --]
Ihor: "`org-occur-next-match' does not support multiple buffers.Looking at the docstring of `next-error-function', I am also not sure if
we need to support this there. The docstring talks only about the
current buffer."
I'm assuming "current buffer" is the buffer which I can currently type input into. The current buffer is not finding next occurrence of search string by pressing M-g M-n. Is this expected?
On Saturday, December 31, 2022 at 06:38:49 AM MST, Ihor Radchenko <yantar92@posteo.net> wrote:
Eric Chun <eyc8@yahoo.com> writes:
> I can't seem to use the M-g M-n keys to jump to occurrences in sparse tree search for second org file within same Emacs window.
> If I search first file by pressing C-c / r <regex> RET and then search second file by pressing C-c / r <regex> RET, I'm not able to jump to occurrences in that second file by pressing M-g M-n. I get a message saying "No more matches" even though there are matches. If I close the first file buffer, then I am able to use M-g M-n to jump to occurrences in the second file.
> Does anybody know what I may be missing?
> I'm using org mode version 9.6 in Emacs 28.2 on CentOS7.
`org-occur-next-match' does not support multiple buffers.
Looking at the docstring of `next-error-function', I am also not sure if
we need to support this there. The docstring talks only about the
current buffer.
What might be relevant is `next-error-find-buffer-function' - a user
customization you may want to set.
Generally, it is unclear for me how to implement multiple buffers
support for org-spare-tree. Ideas and patches welcome.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
[-- Attachment #2: Type: text/html, Size: 3502 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: search in org-sparse-tree for multiple files
2022-12-31 15:29 ` Eric Chun
@ 2023-01-01 13:25 ` Ihor Radchenko
2023-01-01 18:44 ` Eric Chun
0 siblings, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2023-01-01 13:25 UTC (permalink / raw)
To: Eric Chun; +Cc: emacs-orgmode@gnu.org
Eric Chun <eyc8@yahoo.com> writes:
> I'm assuming "current buffer" is the buffer which I can currently type input into. The current buffer is not finding next occurrence of search string by pressing M-g M-n. Is this expected?
Could you please elaborate?
What exactly you did and what do you expect to happen?
(see https://orgmode.org/manual/Feedback.html#Feedback)
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: search in org-sparse-tree for multiple files
2023-01-01 13:25 ` Ihor Radchenko
@ 2023-01-01 18:44 ` Eric Chun
0 siblings, 0 replies; 5+ messages in thread
From: Eric Chun @ 2023-01-01 18:44 UTC (permalink / raw)
To: Ihor Radchenko; +Cc: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 1642 bytes --]
I think I found a solution but here are the steps in case others have the same problem:
* First, I open an org file in Emacs.* I then create a sparse tree using a regular expression.* I then type M-g M-n to move to the next occurrence of my search string but it doesn't work. I get a message saying "user-error: Moved past last grep hit".
* I kill the pre-existing "*grep*" buffer in Emacs.
* I then try M-g M-n again and it works.
Writing out these steps got me thinking that there might be an option in compilation mode to switch buffers when finding next error. I looked in the compilation mode section of the Emacs manual and found next-error-select-buffer that switches buffers when searching for errors. I also just realized that you mentioned next-error-find-buffer-function configuration variable in an earlier post. I'll try that as well.
You can consider my question answered. Thanks for the help.
On Sunday, January 1, 2023 at 06:24:39 AM MST, Ihor Radchenko <yantar92@posteo.net> wrote:
Eric Chun <eyc8@yahoo.com> writes:
> I'm assuming "current buffer" is the buffer which I can currently type input into. The current buffer is not finding next occurrence of search string by pressing M-g M-n. Is this expected?
Could you please elaborate?
What exactly you did and what do you expect to happen?
(see https://orgmode.org/manual/Feedback.html#Feedback)
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
[-- Attachment #2: Type: text/html, Size: 3590 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-01-01 18:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1277881757.3298435.1672461584764.ref@mail.yahoo.com>
2022-12-31 4:39 ` search in org-sparse-tree for multiple files Eric Chun
2022-12-31 13:38 ` Ihor Radchenko
2022-12-31 15:29 ` Eric Chun
2023-01-01 13:25 ` Ihor Radchenko
2023-01-01 18:44 ` Eric Chun
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).