dajva / rg.el

Emacs search tool based on ripgrep
https://rgel.readthedocs.io
GNU General Public License v3.0
474 stars 39 forks source link

rg does not support wgrep when rg-results-group option is enabled. #34

Closed stardiviner closed 6 years ago

stardiviner commented 6 years ago

RT

dajva commented 6 years ago

Works for me on latest master. Did you follow the instructions in the README? You need to install wgrep-ag and add this to the configuration:

(add-hook 'rg-mode-hook 'wgrep-ag-setup)
stardiviner commented 6 years ago

I did have this configuration, but I found I use use-package and have not realized wgrep-ag is a package, so I have not :ensure wgrep-ag. After added that. It works now. Thanks.