From 29f58ee9ba1437700d59c8b87922479287fc5640 Mon Sep 17 00:00:00 2001 From: Nikola Milenkovic Date: Wed, 30 Apr 2025 00:30:19 +0100 Subject: [PATCH] feat: add commands for buffer jumplist to typable-cmd.md --- book/src/generated/typable-cmd.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/book/src/generated/typable-cmd.md b/book/src/generated/typable-cmd.md index 219f6b95f..7c81105b5 100644 --- a/book/src/generated/typable-cmd.md +++ b/book/src/generated/typable-cmd.md @@ -3,6 +3,9 @@ | `:quit`, `:q` | Close the current view. | | `:quit!`, `:q!` | Force close the current view, ignoring unsaved changes. | | `:open`, `:o`, `:edit`, `:e` | Open a file from disk into the current view. | +| `:jump-to-buffer`, `:j` | Switch to a document buffer using its index in the buffer jumplist. | +| `:add-buffer-to-jumplist`, `:ab` | Add the current document buffer to the buffer jumplist. | +| `:remove-buffer-from-jumplist`, `:rb` | Remove the current document buffer from the buffer jumplist. | | `:buffer-close`, `:bc`, `:bclose` | Close the current buffer. | | `:buffer-close!`, `:bc!`, `:bclose!` | Close the current buffer forcefully, ignoring unsaved changes. | | `:buffer-close-others`, `:bco`, `:bcloseother` | Close all buffers but the currently focused one. |