branch: externals/substitute commit cc09df11ede63be0eb2f42780bd9ba85ca7890f5 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Make substitute-highlight non-nil by default I personally prefer it without highlights, but this is a better default for new users. --- substitute.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/substitute.el b/substitute.el index d35679b14b..90d332f5bc 100644 --- a/substitute.el +++ b/substitute.el @@ -40,13 +40,14 @@ "Efficiently replace targets in the buffer or context." :group 'editing) -(defcustom substitute-highlight nil +(defcustom substitute-highlight t "If non-nil, highlight target during prompt for its substitute. If nil, do not highlight anything: just prompt for a substitute. At any rate, always specify at the minibuffer prompt the target of the substitution." + :package-version '(substitute . "0.2.0") :group 'substitute :type 'boolean)