From b2ce07cb4a6d5f94f7bdf865e970bb36aa6039c0 Mon Sep 17 00:00:00 2001 From: sspencerwire Date: Wed, 24 Apr 2024 08:18:05 -0500 Subject: [PATCH] Syntax of the undo command was incorrect * When markdown errors were recently corrected, the undo command was improperly formatted as ``` Undo the last action: ++u++ Undo the actions on the current line: ++U++ ``` However neither line is correct. Markdown keyboard commands always assume a capital letter, and must be entered in lower case or in quotes. To get the desired lower-case "u" for the first and capital U for the second, it must be entered as: ``` Undo the last action: ++"u"++ Undo the actions on the current line: ++u++ ``` The first will now render in lower-case as expected and the second will render a capital "U." --- docs/books/admin_guide/05-vi.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/books/admin_guide/05-vi.md b/docs/books/admin_guide/05-vi.md index cc1192c431..d57d60d5f3 100644 --- a/docs/books/admin_guide/05-vi.md +++ b/docs/books/admin_guide/05-vi.md @@ -345,11 +345,11 @@ These operations are done in *command* mode. * Undo the last action: -++u++ +++"u"++ * Undo the actions on the current line: -++U++ +++u++ ### Cancel cancellation