From e886580a3b550006c83b425383300bfcc498e63f Mon Sep 17 00:00:00 2001 From: Michele Campeotto Date: Mon, 13 Jul 2026 16:53:42 +0200 Subject: [PATCH] Add missing default mappings to documentation --- doc/neogit.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/doc/neogit.txt b/doc/neogit.txt index 0d81bf5e0..8a8e9992d 100644 --- a/doc/neogit.txt +++ b/doc/neogit.txt @@ -409,6 +409,7 @@ The following mappings can all be customized via the setup function. commit_view = { ["a"] = "OpenFileInWorktree", + ["o"] = "OpenCommitLinkInBrowser", } rebase_editor = { @@ -455,6 +456,10 @@ The following mappings can all be customized via the setup function. ["<2-LeftMouse>"] = "NOP", } + refs_view = { + ["x"] = "DeleteBranch", + } + popup = { ["?"] = "HelpPopup", ["A"] = "CherryPickPopup", @@ -471,6 +476,7 @@ The following mappings can all be customized via the setup function. ["c"] = "CommitPopup", ["f"] = "FetchPopup", ["l"] = "LogPopup", + ["L"] = "MarginPopup", ["m"] = "MergePopup", ["p"] = "PullPopup", ["r"] = "RebasePopup", @@ -489,6 +495,11 @@ The following mappings can all be customized via the setup function. ["4"] = "Depth4", ["Q"] = "Command", [""] = "Toggle", + ["za"] = "Toggle", + ["zo"] = "OpenFold", + ["zc"] = "CloseFold", + ["zC"] = "Depth1", + ["zO"] = "Depth4", ["x"] = "Discard", ["-"] = "Reverse", ["s"] = "Stage", @@ -496,6 +507,7 @@ The following mappings can all be customized via the setup function. [""] = "StageAll", ["u"] = "Unstage", ["K"] = "Untrack", + ["R"] = "Rename", ["U"] = "UnstageStaged", ["y"] = "ShowRefs", ["$"] = "CommandHistory", @@ -513,6 +525,8 @@ The following mappings can all be customized via the setup function. ["]c"] = "OpenOrScrollDown", [""] = "PeekUp", [""] = "PeekDown", + [""] = "NextSection", + [""] = "PreviousSection", } < ==============================================================================