public inbox for howm-eng@lists.osdn.me
 help / color / mirror / Atom feed
* [Howm-eng 151]  List recently opened buffers
       [not found] <613781827.2639630.1532601932400.ref@mail.yahoo.com>
@ 2018-07-26 10:45 ` yacinechaouche
  2018-07-26 12:26   ` [Howm-eng 154] " khi
  0 siblings, 1 reply; 2+ messages in thread
From: yacinechaouche @ 2018-07-26 10:45 UTC (permalink / raw)


Dear howmers,
I user C-c , . and C-c , l to quickly navigate through recent notes, but it only show notes that have acutally been edited recently. 

For example, suppose I am writing a new note about some problem I have on my mail server. I remember that I solved this problem before, and that the solution is in another note. C-c , g will help find by keyword in which note the solution is. That command will list a few buffers which I will visit in sequence until I find the information I am looking for. Then I get back to my new note to write that info.
After a few minutes, I decide to get back to the note where I wrote the solution, the one I got from the search result, C-c , . and C-c , l won't get me there. C-c , b (buffers) will list buffers by file name instead of a note title.
So what I need is a command that would list buffers like C-c , b but will list page titles instead of buffer names for recently visited buffers.
Or even better, maybe I could "bookmark" some notes and have another command that will only list the bookmarked page ? (again, showing their titles instead of their file names).

Thanks in advance and sorry for lengthy post.
Yassine.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: https://lists.osdn.me/mailman/archives/howm-eng/attachments/20180726/339228d8/attachment.htm 

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Howm-eng 154] Re: List recently opened buffers
  2018-07-26 10:45 ` [Howm-eng 151] List recently opened buffers yacinechaouche
@ 2018-07-26 12:26   ` khi
  0 siblings, 0 replies; 2+ messages in thread
From: khi @ 2018-07-26 12:26 UTC (permalink / raw)


Hi.

;; https://lists.osdn.me/mailman/archives/howm-eng/2018/000152.html
(defun my-howm-list-buffer-titles (&optional all)
  "Show titles in buffer list. If ALL is non-nil, hidden buffers are also listed."
  (interactive "P")
  (howm-list-buffers all)
  (howm-list-title-internal))

Or...

;; https://lists.osdn.me/mailman/archives/howm-eng/2018/000152.html
(defadvice howm-list-buffers (around list-titles activate)
  "Show titles in howm-list-buffers."
  (prog1
      ad-do-it
    (howm-list-title-internal)))

-- 
khi at users.osdn.me


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-07-26 12:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <613781827.2639630.1532601932400.ref@mail.yahoo.com>
2018-07-26 10:45 ` [Howm-eng 151] List recently opened buffers yacinechaouche
2018-07-26 12:26   ` [Howm-eng 154] " khi

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 NNTP newsgroup(s).