branch: externals/buffer-expose
commit 361f35fabcdde57b8bca6333dd8b74d3c6b01c2b
Author: Clemens Radermacher <[email protected]>
Commit: Clemens Radermacher <[email protected]>

    Fix helm regex
---
 buffer-expose.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buffer-expose.el b/buffer-expose.el
index 0faa925..01ab337 100644
--- a/buffer-expose.el
+++ b/buffer-expose.el
@@ -308,7 +308,7 @@ buffers for which this function returns non-nil are 
ignored."
                  (or (not hide-regex)
                      (not (string-match hide-regex (buffer-name buffer))))
                  (not (minibufferp buffer))
-                 (not (string-match "\\`\\*helm-" (buffer-name buffer)))
+                 (not (string-match "\\`\\*helm" (buffer-name buffer)))
                  (not (string-match "\\` " (buffer-name buffer)))
                  (or (not filter-fun)
                      (with-current-buffer buffer

Reply via email to