From bcd7a3b4dd183c5b77fc58ab4ce7de3d975437b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 15 Jun 2023 22:58:35 +0000 Subject: [PATCH] update docs/default-keybindings.md --- docs/default-keybindings.md | 60 ++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/docs/default-keybindings.md b/docs/default-keybindings.md index debcb85a2..2276d4689 100644 --- a/docs/default-keybindings.md +++ b/docs/default-keybindings.md @@ -103,10 +103,10 @@ ## Project | Command | Key bindings | Documentation | |-------------------------------------------------------------------------------------------------------|--------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [project-find-file](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L125) | | Open a file, from the list of all files in this project. | -| [project-root](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L142) | | Display this buffer's project directory. | -| [project-root-directory](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L149) | | Open this project's root directory. | -| [project-delete-buffers](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L209) | | Delete all this project's buffers, except: +| [project-find-file](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L129) | C-x p f | Open a file, from the list of all files in this project. | +| [project-root](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L146) | | Display this buffer's project directory. | +| [project-root-directory](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L153) | C-x p d | Open this project's root directory. | +| [project-delete-buffers](https://github.com/lem-project/lem/blob/main/src/commands/project.lisp#L213) | C-x p K | Delete all this project's buffers, except: - if *delete-repl-buffer* is non t, we don't delete the REPL buffer. - if *delete-last-buffer* is non nil, we will delete the last buffer. This would cause Lem to exit. | @@ -121,32 +121,32 @@ ## Window | Command | Key bindings | Documentation | |----------------------------------------------------------------------------------------------------------------|----------------|-----------------------------------------------------------------------| -| [select-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L62) | C-x b | Switches to the selected buffer. | -| [kill-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L101) | C-x k | Delete buffer. | -| [previous-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L110) | C-x Left | Switches to the previous buffer. | -| [next-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L120) | C-x Right | Switches to the next buffer. | -| [recenter](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L126) | C-l | Scroll so that the cursor is in the middle. | -| [split-active-window-vertically](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L133) | C-x 2 | Split the current window vertically. | -| [split-active-window-horizontally](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L139) | C-x 3 | Split the current window horizontally. | -| [other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L150) | C-x o, M-o | Go to the next window. | -| [switch-to-last-focused-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L163) | | Go to the window that was last in focus. | -| [window-move-down](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L172) | | Go to the window on the down. | -| [window-move-up](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L177) | | Go to the window on the up. | -| [window-move-right](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L182) | | Go to the window on the right. | -| [window-move-left](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L187) | | Go to the window on the left. | -| [delete-other-windows](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L192) | C-x 1 | Delete all other windows. | -| [delete-active-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L205) | C-x 0 | Delete the active window. | -| [quit-active-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L210) | | Quit the active window. This is a command for a popped-up window. | -| [grow-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L215) | C-x ^ | Grow the window's height. | -| [shrink-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L223) | C-x C-z | Shrink the window's height. | -| [grow-window-horizontally](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L231) | C-x } | Grow the window's width. | -| [shrink-window-horizontally](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L239) | C-x { | Shrink the window's width. | -| [scroll-down](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L252) | C-Down, M-Down | Scroll down. | -| [scroll-up](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L265) | C-Up, M-Up | Scroll up. | -| [find-file-other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L276) | C-x 4 f | Open a file in another window. Split the screen vertically if needed. | -| [read-file-other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L277) | C-x 4 r | Read a file in another window. | -| [select-buffer-other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L278) | C-x 4 b | Select a buffer in another window. | -| [compare-windows](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L282) | | | +| [select-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L63) | C-x b | Switches to the selected buffer. | +| [kill-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L102) | C-x k | Delete buffer. | +| [previous-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L111) | C-x Left | Switches to the previous buffer. | +| [next-buffer](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L121) | C-x Right | Switches to the next buffer. | +| [recenter](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L127) | C-l | Scroll so that the cursor is in the middle. | +| [split-active-window-vertically](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L134) | C-x 2 | Split the current window vertically. | +| [split-active-window-horizontally](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L140) | C-x 3 | Split the current window horizontally. | +| [other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L151) | C-x o, M-o | Go to the next window. | +| [switch-to-last-focused-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L164) | | Go to the window that was last in focus. | +| [window-move-down](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L173) | | Go to the window on the down. | +| [window-move-up](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L178) | | Go to the window on the up. | +| [window-move-right](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L183) | | Go to the window on the right. | +| [window-move-left](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L188) | | Go to the window on the left. | +| [delete-other-windows](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L193) | C-x 1 | Delete all other windows. | +| [delete-active-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L206) | C-x 0 | Delete the active window. | +| [quit-active-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L211) | | Quit the active window. This is a command for a popped-up window. | +| [grow-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L216) | C-x ^ | Grow the window's height. | +| [shrink-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L224) | C-x C-z | Shrink the window's height. | +| [grow-window-horizontally](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L232) | C-x } | Grow the window's width. | +| [shrink-window-horizontally](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L240) | C-x { | Shrink the window's width. | +| [scroll-down](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L253) | C-Down, M-Down | Scroll down. | +| [scroll-up](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L266) | C-Up, M-Up | Scroll up. | +| [find-file-other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L277) | C-x 4 f | Open a file in another window. Split the screen vertically if needed. | +| [read-file-other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L278) | C-x 4 r | Read a file in another window. | +| [select-buffer-other-window](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L279) | C-x 4 b | Select a buffer in another window. | +| [compare-windows](https://github.com/lem-project/lem/blob/main/src/commands/window.lisp#L283) | | | ## Multiple-Cursors | Command | Key bindings | Documentation |