In vi[m] there is the ! command which lets me pipe text through a shell command -- like sort or indent -- and get the filtered text back into the buffer. Is there an equivalent in emacs?
Thanks,
Rohit
|
In vi[m] there is the ! command which lets me pipe text through a shell command -- like sort or indent -- and get the filtered text back into the buffer. Is there an equivalent in emacs? Thanks, Rohit |
||||
|
|
|
You can select a region and type `C-u M-| command RET', and it replaces the region with the command output in the same buffer due to the interactive prefix argument of shell-command-on-region. |
|||||||||||
|
|
I wrote this a few years back, it might help you:
I've found this function to be very helpful. If you find it useful as well, I suggest binding it to some function key for convenience, personally I use
|
|||
|
|
|
Late edit: As much as I appreciate the upvotes, Jurta's answer is the way to go. And Greg's hack is neater than mine. I'll leave the rest of this here because it might be worth something, but...
I see that this does not do exactly what Rohit asked for. Using Try this (load it into
And note as I say in the comments that this is not a very emacsy thing to do. But I think it works. For any readers who don't know how to select a region:
|
|||||||||||
|