branch: externals/loccur
commit 4934c0560d2f63e6314b4584211a0cc0a7e671c4
Author: Alexey Veretennikov <[email protected]>
Commit: Alexey Veretennikov <[email protected]>
Updated version and comments
---
loccur.el | 20 +++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)
diff --git a/loccur.el b/loccur.el
index ffe180257b..b184eb2af4 100644
--- a/loccur.el
+++ b/loccur.el
@@ -5,7 +5,7 @@
;; Author: Alexey Veretennikov <[email protected]>
;;
;; Created: 2009-09-08
-;; Version: 1.2.3
+;; Version: 1.2.4
;; Package-Requires: ((emacs "24.3"))
;; Keywords: matching
;; URL: https://github.com/fourier/loccur
@@ -45,6 +45,24 @@
;;
;;; Change Log:
;;
+;; 2019-10-22 (1.2.4)
+;; + Added fix for the issue when the actions to perform
+;; then the loccur-mode was disactivated were incomplete.
+;; + Then loccur or loccur-no-highlight are called with universal prefix,
+;; i.e. with C-u before the command, the currently selected value is
+;; ignored.
+;; Then people want this behavior by default, it is better wrap the call
+;; to loccur with universal prefix, i.e. by implementing a helper
+;; function like this:
+;;
+;; (defun loccur-no-selection ()
+;; (interactive)
+;; (let ((current-prefix-arg 1))
+;; (call-interactively
+;; 'loccur)))
+;;
+;; And then just call this function instead of loccur.
+;;
;; 2016-12-26 (1.2.3)
;; + Removed empty line in the beginning of the buffer.
;; + Added 'Tips and tricks' session to the README.md file