[elpa] master 22e3257: Fix #17 - Minibuffer completion pre 25
branch: master commit 22e3257f07191caa0b32c5cf0102a689141d2c99 Author: Artur Malabarba Commit: Artur Malabarba Fix #17 - Minibuffer completion pre 25 --- packages/bug-hunter/bug-hunter.el |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/bug-hunter/bug-hunter.el b/packages/bug-hunter/bug-hunter.el index 9a29f2f..99f753a 100644 --- a/packages/bug-hunter/bug-hunter.el +++ b/packages/bug-hunter/bug-hunter.el @@ -4,7 +4,7 @@ ;; Author: Artur Malabarba ;; URL: https://github.com/Malabarba/elisp-bug-hunter -;; Version: 1.3 +;; Version: 1.3.1 ;; Keywords: lisp ;; Package-Requires: ((seq "1.3") (cl-lib "0.5")) @@ -489,7 +489,11 @@ typing `RET' at an empty prompt, in which case nil is returned." (minibuffer-with-setup-hook (lambda () (add-hook 'completion-at-point-functions -#'elisp-completion-at-point nil t) +(if (fboundp 'elisp-completion-at-point) +#'elisp-completion-at-point + (with-no-warnings +#'lisp-completion-at-point)) +nil t) (run-hooks 'eval-expression-minibuffer-setup-hook)) (insert (read-from-minibuffer
[elpa] master updated (22e3257 -> e2fb73d)
malabarba pushed a change to branch master. from 22e3257 Fix #17 - Minibuffer completion pre 25 new ec752bc [Fix #47] Add beacon-before-blink-hook new 16be7a1 Version 1.3.0 new e2fb73d Merge commit '16be7a12d0dbbbd0e59fc2ccf9a7c7085eb9cf5a' Summary of changes: packages/beacon/beacon.el |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-)
[elpa] master 16be7a1 2/3: Version 1.3.0
branch: master commit 16be7a12d0dbbbd0e59fc2ccf9a7c7085eb9cf5a Author: Artur Malabarba Commit: Artur Malabarba Version 1.3.0 --- beacon.el |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon.el b/beacon.el index 54c9cde..8126c43 100644 --- a/beacon.el +++ b/beacon.el @@ -5,7 +5,7 @@ ;; Author: Artur Malabarba ;; URL: https://github.com/Malabarba/beacon ;; Keywords: convenience -;; Version: 1.2.1 +;; Version: 1.3.0 ;; Package-Requires: ((seq "2.14")) ;; This program is free software; you can redistribute it and/or modify
[elpa] master e2fb73d 3/3: Merge commit '16be7a12d0dbbbd0e59fc2ccf9a7c7085eb9cf5a'
branch: master commit e2fb73d2f8fff2e604e9d59f55f7275e8999b04b Merge: 22e3257 16be7a1 Author: Artur Malabarba Commit: Artur Malabarba Merge commit '16be7a12d0dbbbd0e59fc2ccf9a7c7085eb9cf5a' --- packages/beacon/beacon.el |7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/beacon/beacon.el b/packages/beacon/beacon.el index 6c35e2b..8126c43 100644 --- a/packages/beacon/beacon.el +++ b/packages/beacon/beacon.el @@ -5,7 +5,7 @@ ;; Author: Artur Malabarba ;; URL: https://github.com/Malabarba/beacon ;; Keywords: convenience -;; Version: 1.2.1 +;; Version: 1.3.0 ;; Package-Requires: ((seq "2.14")) ;; This program is free software; you can redistribute it and/or modify @@ -166,6 +166,10 @@ predictable ways, when the blink would be more distracting than helpful.." :type '(repeat symbol)) +(defcustom beacon-before-blink-hook nil + "Hook run immediately before blinking the beacon." + :type 'hook) + ;;; Internal variables (defvar beacon--window-scrolled nil) @@ -321,6 +325,7 @@ unconditionally (even if `beacon-mode' is disabled), and this can be invoked as a user command or called from lisp code." (interactive) (beacon--vanish) + (run-hooks 'beacon-before-blink-hook) (beacon--shine) (setq beacon--timer (run-at-time beacon-blink-delay
[elpa] master ec752bc 1/3: [Fix #47] Add beacon-before-blink-hook
branch: master commit ec752bc75dd14b5339256e4845632e7fa09f3b44 Author: Artur Malabarba Commit: Artur Malabarba [Fix #47] Add beacon-before-blink-hook --- beacon.el |5 + 1 file changed, 5 insertions(+) diff --git a/beacon.el b/beacon.el index 6c35e2b..54c9cde 100644 --- a/beacon.el +++ b/beacon.el @@ -166,6 +166,10 @@ predictable ways, when the blink would be more distracting than helpful.." :type '(repeat symbol)) +(defcustom beacon-before-blink-hook nil + "Hook run immediately before blinking the beacon." + :type 'hook) + ;;; Internal variables (defvar beacon--window-scrolled nil) @@ -321,6 +325,7 @@ unconditionally (even if `beacon-mode' is disabled), and this can be invoked as a user command or called from lisp code." (interactive) (beacon--vanish) + (run-hooks 'beacon-before-blink-hook) (beacon--shine) (setq beacon--timer (run-at-time beacon-blink-delay