branch: externals/shell-command+ commit 07c55d1db2ca0ce2b88e3f99cc662c4322de98a1 Author: Philip K <phil...@posteo.net> Commit: Philip K <phil...@posteo.net>
Remove "Features" section in README --- README.md | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/README.md b/README.md index 5532f95..2d861c4 100644 --- a/README.md +++ b/README.md @@ -7,34 +7,6 @@ to run commands on regions or whole buffers, among other things. `shell-command+` has been based on a function named `bang` by [Leah Neukirchen][leah]. -Features --------- - -Usually `shell-command+` acts just like `shell-command`, but in -certain cases, `shell-command+` pre-processes the input. Here are a -few examples of what that might look like: - - > wc -l - -Count all lines in a buffer, and display the result in the -minibuffer. - - .. < ls -l - -Replace the current region (or buffer in no region is selected) -with a directory listing of the parent directory. - - | tr -d a-z - -Delete all instances of the charachters a, b, c, ..., z, in the -selected region (or buffer, if no region was selected). - - .../src make - -Run Eshell's make (via `compile`) in the parent's parent -directory, and then in `src`. - - How to use ----------