diff options
Diffstat (limited to 'doc/config.md')
-rw-r--r-- | doc/config.md | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/doc/config.md b/doc/config.md index 65ea2fb0..5aec7a5d 100644 --- a/doc/config.md +++ b/doc/config.md @@ -559,7 +559,7 @@ open the current buffer's contents as HTML.</td> <tr> <td>`pager.cursorMiddle()`</td> -<td>Move to the middle of the screen. (Equivalent to M in vi.)</td> +<td>Move to the line in the middle of the screen. (Equivalent to M in vi.)</td> </tr> <tr> @@ -573,6 +573,26 @@ open the current buffer's contents as HTML.</td> </tr> <tr> +<td>`pager.cursorLeftEdge()`</td> +<td>Move to the first column on the screen.</td> +</tr> + +<tr> +<td>`pager.cursorMiddleColumn()`</td> +<td>Move to the column in the middle of the screen.</td> +</tr> + +<tr> +<td>`pager.cursorRightEdge()`</td> +<td>Move to the last column on the screen.</td> +</tr> + +<tr> +<td>`pager.centerColumn()`</td> +<td>Center screen around the current column.</td> +</tr> + +<tr> <td>`pager.lineInfo()`</td> <td>Display information about the current line.</td> </tr> |