branch: master
commit 8cea630b74fe4b8806d250d551be4a23d346fa59
Author: Ken Manheimer <[email protected]>
Commit: Ken Manheimer <[email protected]>
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))