wgrep-helm

https://github.com/mhayashi1120/Emacs-wgrep.git

git clone 'git://github.com/mhayashi1120/Emacs-wgrep.git'
98

wgrep.el

wgrep allows you to edit a grep buffer and apply those changes to the file buffer.

Install:

Put this file into load-path'ed directory, and byte compile it if desired. And put the following expression into your ~/.emacs.

(require 'wgrep)

Usage:

You can edit the text in the grep buffer after typing C-c C-p. After that the changed text is highlighted. The following keybindings are defined:

To save all buffers that wgrep has changed, run

M-x wgrep-save-all-buffers

To save buffer automatically when `wgrep-finish-edit'.

(setq wgrep-auto-save-buffer t)

You can change the default key binding to switch to wgrep.

(setq wgrep-enable-key "r")

To apply all changes wheather or not buffer is read-only.

(setq wgrep-change-readonly-file t)

History:

This program is a forked version. the original version can be downloaded from http://www.bookshelf.jp/elc/grep-edit.el

Following added implementations and differences.