diff options
author | Dr. David A. Kunz | 2022-04-03 12:26:46 +0000 |
---|---|---|
committer | GitHub | 2022-04-03 12:26:46 +0000 |
commit | 9782204f739813ab5b2dd82451ef2d4695b41d22 (patch) | |
tree | df830fa3053b09861a6ab889a322c0211353c9c2 /book | |
parent | ec21de08446656b9012c39db2db3d02c7ce3dc9c (diff) |
Add typed commands buffer-next and buffer-previous (#1940)
Diffstat (limited to 'book')
-rw-r--r-- | book/src/generated/typable-cmd.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/book/src/generated/typable-cmd.md b/book/src/generated/typable-cmd.md index 1ee2fac4..85507b19 100644 --- a/book/src/generated/typable-cmd.md +++ b/book/src/generated/typable-cmd.md @@ -9,6 +9,8 @@ | `:buffer-close-others!`, `:bco!`, `:bcloseother!` | Close all buffers but the currently focused one. | | `:buffer-close-all`, `:bca`, `:bcloseall` | Close all buffers, without quiting. | | `:buffer-close-all!`, `:bca!`, `:bcloseall!` | Close all buffers forcefully (ignoring unsaved changes), without quiting. | +| `:buffer-next`, `:bn`, `:bnext` | Go to next buffer. | +| `:buffer-previous`, `:bp`, `:bprev` | Go to previous buffer. | | `:write`, `:w` | Write changes to disk. Accepts an optional path (:write some/path.txt) | | `:new`, `:n` | Create a new scratch buffer. | | `:format`, `:fmt` | Format the file using the LSP formatter. | |