1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
The Debian packaging of visual-regexp-el is maintained in git, using
the merging workflow described in dgit-maint-merge(7). There isn't a
patch queue that can be represented as a quilt series.
A detailed breakdown of the changes is available from their
canonical representation - git commits in the packaging repository.
For example, to see the changes made by the Debian maintainer in
the first upload of upstream version 1.2.3, you could use:
% git clone https://git.dgit.debian.org/visual-regexp-el
% cd visual-regexp-el
% git log --oneline 1.2.3..debian/1.2.3-1 -- . ':!debian'
(If you have dgit, use `dgit clone visual-regexp-el`, rather than
plain `git clone`.)
A single combined diff, containing all the changes, follows.
--- visual-regexp-el-1.1.2.orig/README.md
+++ visual-regexp-el-1.1.2/README.md
@@ -4,18 +4,16 @@ visual-regexp for Emacs is like `replace
While constructing the regexp in the minibuffer, you get live visual feedback for the matches, including group matches:
-
+
While constructing the replacement in the minibuffer, you get live visual feedback for the replacements:
-
+
It can be used to replace all matches in one go (like `replace-regexp`), or a decision can be made on each match (like `query-replace-regexp`).
## Installation
-If you are using Emacs 24, you can get visual-regexp from [melpa](http://melpa.milkbox.net/) with the package manager.
-
Add the following code to your init file. Of course you can select your own key bindings.
Note: `vr/mc-mark` is an interface to [multiple-cursors](https://github.com/magnars/multiple-cursors.el/).
@@ -32,10 +30,10 @@ To customize, use `M-x customize-group [
An interesting application of this is regexp-renaming a bunch of files directly in a dired buffer with live feedback (using `wdired-change-to-wdired-mode`):
Construction of the regexp:
-
+
Construction of the replacement string with inlined preview enabled:
-
+
## Tip Jar
If you found this useful, please consider donating.
|