branch: externals/shell-command+ commit 4ccdcc63e7b593c62eb7e3c45a78b394841694f2 Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
Slightly restructure commentary section --- shell-command+.el | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/shell-command+.el b/shell-command+.el index f61c395fd2..4282de1565 100644 --- a/shell-command+.el +++ b/shell-command+.el @@ -32,33 +32,30 @@ ;; ;; A few examples of what `shell-command+' can do: ;; +;; * Count all lines in a buffer, and display the result in the +;; minibuffer: ;; -;; > wc -l +;; > wc -l ;; -;; Count all lines in a buffer, and display the result in the -;; minibuffer. +;; * Replace the current region (or buffer in no region is selected) +;; with a directory listing of the parent directory. ;; +;; .. < ls -l ;; -;; .. < ls -l +;; * Delete all instances of the charachters a, b, c, ..., z, in the +;; selected region (or buffer, if no region was selected). ;; -;; Replace the current region (or buffer in no region is selected) -;; with a directory listing of the parent directory. +;; | tr -d a-z ;; +;; * Open a man-page using Emacs default man page viewer. +;; `shell-command+' can be extended to use custom Elisp handlers via +;; as specified in `shell-command+-substitute-alist'. ;; -;; | 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). -;; -;; -;; man fprintf -;; -;; Open a man-page using Emacs default man page viewer. -;; `shell-command+' can be extended to use custom Elisp handlers via -;; as specified in `shell-command+-substitute-alist'. +;; man fprintf ;; ;; See `shell-command+'s docstring for more details on how it's input -;; is interpreted. +;; is interpreted. See `shell-command+-features' if you want to +;; disable or add new features. ;; ;; `shell-command+' was originally based on the command `bang' by Leah ;; Neukirchen (https://leahneukirchen.org/dotfiles/.emacs).