From: Rasmus <rasmus@gmx.us>
To: monnier@iro.umontreal.ca
Cc: 19335@debbugs.gnu.org
Subject: bug#19335: 24.4.51; ido.el: Include bookmark-files as virtual buffers
Date: Thu, 12 Mar 2015 15:45:53 +0100 [thread overview]
Message-ID: <87egougtpa.fsf@gmx.us> (raw)
In-Reply-To: <jwv7fum486i.fsf-monnier+bug#19335@gnu.org> (Stefan Monnier's message of "Thu, 12 Mar 2015 10:13:27 -0400")
[-- Attachment #1: Type: text/plain, Size: 965 bytes --]
Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> - (dolist (head recentf-list)
>> + (dolist (head (append recentf-list
>
>> + (and (boundp 'bookmark-alist)
>> + bookmark-alist
>> + (mapcar
>> + (lambda (bookmark)
>> + (cdr-safe (assoc 'filename bookmark)))
>> + bookmark-alist))))
>
> Looks OK, tho you should probably filter out nil elements in case
> a bookmark entry doesn't have a `filename' (and OTOH I think `cdr-safe'
> can be replaced by `cdr' because `assoc' can only return a cons or nil).
You are right. I'd come to same conclusion earlier, but I hadn't updated
the patch.
The formatting is still not the prettiest, but I don't know how to make it
better...
The attached patch should merge against master.
Thanks,
Rasmus
--
It was you, Jezebel, it was you
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-ido.el-Include-bookmark-files-as-virtual-buffers.patch --]
[-- Type: text/x-diff, Size: 1832 bytes --]
From d949b576623dc88e8b2a641a93b81d5d435bd071 Mon Sep 17 00:00:00 2001
From: Rasmus <rasmus@gmx.us>
Date: Thu, 12 Mar 2015 15:42:13 +0100
Subject: [PATCH] ido.el: Include bookmark-files as virtual buffers
* ido.el (ido-add-virtual-buffers-to-list): Include bookmarked files.
The docstring of ido-add-virtual-buffers-to-list suggests that
bookmarked files should include, but this does not in fact seem to
happen.
---
lisp/ChangeLog | 5 +++++
lisp/ido.el | 12 ++++++++++--
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 35689c1..1d4c8cf 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-03-12 Rasmus Pank Roulund <emacs@pank.eu>
+
+ * ido.el (ido-add-virtual-buffers-to-list): Include bookmark-alist
+ files.
+
2015-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
* international/quail.el (quail-input-method):
diff --git a/lisp/ido.el b/lisp/ido.el
index 1f4e3fa..0291765 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -3480,8 +3480,16 @@ This is to make them appear as if they were \"virtual buffers\"."
;; the file which the user might thought was still open.
(unless recentf-mode (recentf-mode 1))
(setq ido-virtual-buffers nil)
- (let (name)
- (dolist (head recentf-list)
+ (let ((bookmarks (and (boundp 'bookmark-alist)
+ bookmark-alist))
+ name)
+ (dolist
+ (head (append
+ recentf-list
+ (and bookmarks
+ (delq nil (mapcar (lambda (bookmark)
+ (cdr (assoc 'filename bookmark)))
+ bookmarks)))))
(setq name (file-name-nondirectory head))
;; In case HEAD is a directory with trailing /. See bug#14552.
(when (equal name "")
--
2.3.2
next prev parent reply other threads:[~2015-03-12 14:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-10 13:00 bug#19335: 24.4.51; ido.el: Include bookmark-files as virtual buffers Rasmus
2015-01-08 22:14 ` Rasmus
2015-03-11 15:49 ` bug#19335: Patch review Rasmus
2015-03-12 14:13 ` bug#19335: 24.4.51; ido.el: Include bookmark-files as virtual buffers Stefan Monnier
2015-03-12 14:45 ` Rasmus [this message]
2015-03-12 19:03 ` Stefan Monnier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87egougtpa.fsf@gmx.us \
--to=rasmus@gmx.us \
--cc=19335@debbugs.gnu.org \
--cc=monnier@iro.umontreal.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.