/usr/share/doc/elpa-visual-regexp/README.md is in elpa-visual-regexp 1.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # visual-regexp
visual-regexp for Emacs is like `replace-regexp`, but with live visual feedback directly in the buffer. Check out [visual-regexp-steroids](https://github.com/benma/visual-regexp-steroids.el/) if you want to use modern regular expressions instead of Emacs-style regular expressions.
While constructing the regexp in the minibuffer, you get live visual feedback for the matches, including group matches:
![entering regexp](visual-regexp0A.png)
While constructing the replacement in the minibuffer, you get live visual feedback for the replacements:
![entering replacement](visual-regexp0B.png)
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
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/).
```Lisp
(add-to-list 'load-path "folder-in-which-visual-regexp-files-are-in/") ;; if the files are not already in the load path
(require 'visual-regexp)
(define-key global-map (kbd "C-c r") 'vr/replace)
(define-key global-map (kbd "C-c q") 'vr/query-replace)
;; if you use multiple-cursors, this is for you:
(define-key global-map (kbd "C-c m") 'vr/mc-mark)
```
To customize, use `M-x customize-group [RET] visual-regexp`.
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:
![entering regexp](visual-regexp1A.png)
Construction of the replacement string with inlined preview enabled:
![entering replacement](visual-regexp1B.png)
## Tip Jar
If you found this useful, please consider donating.
BTC: 1BxauiLGMQPb2pavkkQkuFe5CgrGMrUat2
|