diff options
| -rw-r--r-- | oni-compilation.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oni-compilation.el b/oni-compilation.el index 888ad09..f83e8fb 100644 --- a/oni-compilation.el +++ b/oni-compilation.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse <tom@ryuslash.org> ;; Keywords: local -;; Version: 2021.0919.230646 +;; Version: 2026.0121.162911 ;; Package-Requires: (oni-alert xterm-color) ;; This program is free software; you can redistribute it and/or modify @@ -51,7 +51,7 @@ ALIST and PLIST contain extra information about the buffer." BUFFER is the `compilation-mode' buffer and STATUS is the exit status of the process." - (when (string= (buffer-name buffer) "*compilation*") + (when (string-match-p (rx "*compilation*" "*Chanced Tests*") (buffer-name buffer)) (if (string= (string-trim status) "finished") (alert "Compilation finished succesfully") (alert "Compilation finished with an error")))) |
