diff options
author | bptato <nincsnevem662@gmail.com> | 2023-12-09 14:43:10 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-09 16:36:23 +0100 |
commit | 6a1b1a2edfc6adf3d1d1a1aaa2c9fd95eccc8ff7 (patch) | |
tree | f2760bbb12b79925fa1c87dde9e05ddd74310683 /doc | |
parent | 14f5605061501fa56d9b4970571858f6451e4710 (diff) | |
download | chawan-6a1b1a2edfc6adf3d1d1a1aaa2c9fd95eccc8ff7.tar.gz |
pager: add `{', `}'; document externInto
{ & } acts like in vi (except the cursor is not moved to the line beginning). No reason to leave externInto undocumented, as it is even used in the default config.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/config.md b/doc/config.md index 8a078b01..0b017f1c 100644 --- a/doc/config.md +++ b/doc/config.md @@ -732,6 +732,16 @@ Note: this does not suspend buffer processes.</td> </tr> <tr> +<td>`pager.cursorPrevParagraph(n = 1)`</td> +<td>Move the cursor to the beginning of the nth next paragraph.</td> +</tr> + +<tr> +<td>`pager.cursorNextParagraph(n = 1)`</td> +<td>Move the cursor to the end of the nth previous paragraph.</td> +</tr> + +<tr> <td>`pager.cursorNthLink(n = 1)`</td> <td>Move the cursor to the nth link of the document.</td> </tr> @@ -1027,6 +1037,14 @@ result. null is returned if the command wasn't executed successfully, or if the command returned a non-zero exit value.</td> </tr> +<tr> +<td>`pager.externInto(cmd, ins)` +</td> +<td>Like extern(), but redirect `ins` into the command's standard input stream. +`true` is returned if the command exits successfully, otherwise the return +value is `false`.</td> +</tr> + </table> |