emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 8cea630 4/8: multishell - don't inhibit buffer names from


From: ken manheimer
Subject: [elpa] master 8cea630 4/8: multishell - don't inhibit buffer names from completions.
Date: Fri, 29 Jan 2016 06:41:44 +0000

branch: master
commit 8cea630b74fe4b8806d250d551be4a23d346fa59
Author: Ken Manheimer <address@hidden>
Commit: Ken Manheimer <address@hidden>

    multishell - don't inhibit buffer names from completions.
    
    Allow duplicates as sign of buffers that currently exist vs historical
    entries.
---
 multishell.el |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/multishell.el b/multishell.el
index 50035c0..b5bfca6 100644
--- a/multishell.el
+++ b/multishell.el
@@ -497,7 +497,9 @@ Return the supplied name, if provided, else return nil."
                                   (with-current-buffer buffer
                                     ;; Shell mode buffers.
                                     (derived-mode-p 'shell-mode))
-                                  (not (multishell-history-entries name))
+                                  ;; Allow duplicates, as sign of buffers that
+                                  ;; currently exist vs historical entries.
+                                  ;;(not (multishell-history-entries name))
                                   name)))
                          (buffer-list)))
            multishell-history))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]