diff options
| author | Noam Postavsky | 2016-07-03 22:41:48 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2016-07-28 19:57:51 -0400 |
| commit | 442cc39e138a3cc9e281fb09e179370f65d81ba2 (patch) | |
| tree | 6de5d966ab4bc45c2d9ac7acea4b63acc38cfd7a | |
| parent | b443c3c7480f3fff9bb574e79a72e69e3ad501bb (diff) | |
| download | emacs-442cc39e138a3cc9e281fb09e179370f65d81ba2.tar.gz emacs-442cc39e138a3cc9e281fb09e179370f65d81ba2.zip | |
Clarify usage of eshell-visual-options
* lisp/eshell/em-term.el (eshell-visual-options): Add second option to
example usage (Bug #19627).
| -rw-r--r-- | lisp/eshell/em-term.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/eshell/em-term.el b/lisp/eshell/em-term.el index 3e5de0c0097..208629ce135 100644 --- a/lisp/eshell/em-term.el +++ b/lisp/eshell/em-term.el | |||
| @@ -102,10 +102,11 @@ See also `eshell-visual-commands' and `eshell-visual-options'." | |||
| 102 | of commands with options that present their output in a visual | 102 | of commands with options that present their output in a visual |
| 103 | fashion. For example, a sensible entry would be | 103 | fashion. For example, a sensible entry would be |
| 104 | 104 | ||
| 105 | (\"git\" \"--help\") | 105 | (\"git\" \"--help\" \"--paginate\") |
| 106 | 106 | ||
| 107 | because \"git <command> --help\" shows the command's | 107 | because \"git <command> --help\" shows the command's |
| 108 | documentation with a pager. | 108 | documentation with a pager and \"git --paginate <command>\" |
| 109 | always uses a pager for output. | ||
| 109 | 110 | ||
| 110 | See also `eshell-visual-commands' and `eshell-visual-subcommands'." | 111 | See also `eshell-visual-commands' and `eshell-visual-subcommands'." |
| 111 | :type '(repeat (cons (string :tag "Command") | 112 | :type '(repeat (cons (string :tag "Command") |