fix typos in menu label docs

pull/3958/head
Matthew Cheely 2022-11-15 18:42:36 -05:00
parent 4b5fa788ae
commit 742aa4a1f6
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ g = { a = "code_action" } # Maps `ga` to show possible code actions
"A-x" = "@x<A-d>" # Maps Alt-x to a macro selecting the whole line and deleting it without yanking it
# You can create labeled sub-menus and provide friendly labels for typeable commands
[keys.normal.space.f] # Registering multiple mappings under a single entry creates a sub-menu (accesed by 'space', 'f' in this case)
[keys.normal.space.f] # Registering multiple mappings under a single entry creates a sub-menu (accessed by 'space', 'f' in this case)
label = "File" # The menu is called file and within it:
f = "file_picker" # 'f' opens the file picker
s = { label = "Save", command = ":write" } # 's' saves the current file