|
1 | 1 | ## Move |
2 | 2 | | Command | Key bindings | Documentation | |
3 | 3 | |---------------------------------------------------------------------------------------------------------------|---------------|-------------------------------------------------------| |
4 | | -| [next-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L66) | Down, C-n | Move the cursor to next line. | |
5 | | -| [next-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L73) | | Move the cursor to the next logical line. | |
6 | | -| [previous-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L80) | Up, C-p | Move the cursor to the previous line. | |
7 | | -| [previous-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L84) | | Move the cursor to the previous logical line. | |
8 | | -| [forward-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L88) | Right, C-f | Move the cursor to the next character. | |
9 | | -| [backward-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L94) | Left, C-b | Move the cursor to the previous character. | |
10 | | -| [move-to-beginning-of-buffer](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L99) | C-Home, M-< | Move the cursor to the beginning of the buffer. | |
11 | | -| [move-to-end-of-buffer](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L104) | C-End, M-> | Move the cursor to the end of the buffer. | |
12 | | -| [move-to-beginning-of-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L109) | Home, C-a | Move the cursor to the beginning of the line. | |
13 | | -| [move-to-beginning-of-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L125) | | Move the cursor to the beginning of the logical line. | |
14 | | -| [move-to-end-of-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L129) | End, C-e | Move the cursor to the end of the line. | |
15 | | -| [move-to-end-of-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L135) | | Move the cursor to the end of the logical line. | |
16 | | -| [next-page](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L139) | PageDown, C-v | Move the cursor to the next page by one page. | |
17 | | -| [previous-page](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L147) | PageUp, M-v | Move the cursor to the previous page by one page. | |
18 | | -| [next-page-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L155) | C-x ] | Move the cursor to the next page character (^L). | |
19 | | -| [previous-page-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L165) | C-x [ | Move the cursor to the previous page character (^L). | |
20 | | -| [goto-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L169) | M-g | Move the cursor to the specified line number. | |
| 4 | +| [next-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L196) | Down, C-n | Move the cursor to next line. | |
| 5 | +| [next-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L203) | | Move the cursor to the next logical line. | |
| 6 | +| [previous-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L210) | Up, C-p | Move the cursor to the previous line. | |
| 7 | +| [previous-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L214) | | Move the cursor to the previous logical line. | |
| 8 | +| [forward-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L218) | Right, C-f | Move the cursor to the next character. | |
| 9 | +| [backward-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L224) | Left, C-b | Move the cursor to the previous character. | |
| 10 | +| [move-to-beginning-of-buffer](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L229) | C-Home, M-< | Move the cursor to the beginning of the buffer. | |
| 11 | +| [move-to-end-of-buffer](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L234) | C-End, M-> | Move the cursor to the end of the buffer. | |
| 12 | +| [move-to-beginning-of-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L239) | Home, C-a | Move the cursor to the beginning of the line. | |
| 13 | +| [move-to-beginning-of-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L255) | | Move the cursor to the beginning of the logical line. | |
| 14 | +| [move-to-end-of-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L259) | End, C-e | Move the cursor to the end of the line. | |
| 15 | +| [move-to-end-of-logical-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L265) | | Move the cursor to the end of the logical line. | |
| 16 | +| [next-page](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L269) | PageDown, C-v | Move the cursor to the next page by one page. | |
| 17 | +| [previous-page](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L277) | PageUp, M-v | Move the cursor to the previous page by one page. | |
| 18 | +| [next-page-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L285) | C-x ] | Move the cursor to the next page character (^L). | |
| 19 | +| [previous-page-char](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L295) | C-x [ | Move the cursor to the previous page character (^L). | |
| 20 | +| [goto-line](https://github.com/lem-project/lem/blob/main/src/commands/move.lisp#L299) | M-g | Move the cursor to the specified line number. | |
21 | 21 |
|
22 | 22 | ## Edit |
23 | 23 | | Command | Key bindings | Documentation | |
|
0 commit comments