dajva / rg.el

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

I want no roll in rg-dwim #63

Closed e190 closed 5 years ago

e190 commented 5 years ago

I want current position what is always top in rg-dwim.What should I do?

dajva commented 5 years ago

Sorry, I don't understand this question. Can you describe in more detail what you are trying to do and how actual result differ from the expected result

e190 commented 5 years ago

During the search, the number of items searched continues to increase, so keep scrolling down. I want the dwim window to stop scrolling and stay on top. Do you know what I mean?

dajva commented 5 years ago

Ah, ok. I guess that happens in all the rg-* functions, right? This package is based on compilation-mode so I suspect it might be that compilation-scroll-output is t and need to be changed to nil in your init.

e190 commented 5 years ago

Yes - that's it! Thank you.