aboutsummaryrefslogtreecommitdiff
path: root/book/src/generated
diff options
context:
space:
mode:
authorKitsu2023-05-09 20:21:29 +0000
committerGitHub2023-05-09 20:21:29 +0000
commit92c328c088ae818338237d7f11644ba079c54648 (patch)
tree58e1ab6252e28df097081828262a852786d08567 /book/src/generated
parent8424f387b582ed793663f95ee570e709dff20dd6 (diff)
Add wbc and wbc! commands (#6947)
Diffstat (limited to 'book/src/generated')
-rw-r--r--book/src/generated/typable-cmd.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/book/src/generated/typable-cmd.md b/book/src/generated/typable-cmd.md
index ae28a9ba..a775c655 100644
--- a/book/src/generated/typable-cmd.md
+++ b/book/src/generated/typable-cmd.md
@@ -12,7 +12,9 @@
| `:buffer-next`, `:bn`, `:bnext` | Goto next buffer. |
| `:buffer-previous`, `:bp`, `:bprev` | Goto previous buffer. |
| `:write`, `:w` | Write changes to disk. Accepts an optional path (:write some/path.txt) |
-| `:write!`, `:w!` | Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write some/path.txt) |
+| `:write!`, `:w!` | Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write! some/path.txt) |
+| `:write-buffer-close`, `:wbc` | Write changes to disk and closes the buffer. Accepts an optional path (:write-buffer-close some/path.txt) |
+| `:write-buffer-close!`, `:wbc!` | Force write changes to disk creating necessary subdirectories and closes the buffer. Accepts an optional path (:write-buffer-close! some/path.txt) |
| `:new`, `:n` | Create a new scratch buffer. |
| `:format`, `:fmt` | Format the file using the LSP formatter. |
| `:indent-style` | Set the indentation style for editing. ('t' for tabs or 1-8 for number of spaces.) |