diff --git a/runtime/help/help.md b/runtime/help/help.md index 031382b8..446e1713 100644 --- a/runtime/help/help.md +++ b/runtime/help/help.md @@ -78,6 +78,7 @@ you can rebind them to your liking. "CtrlB": "ShellMode", "CtrlQ": "Quit", "CtrlE": "CommandMode", + "CtrlW": "NextSplit", // Emacs-style keybindings "Alt-f": "WordRight", @@ -114,6 +115,7 @@ You can execute an editor command by pressing `Ctrl-e` followed by the command. Here are the possible commands that you can use. * `quit`: Quits micro. + * `save`: Saves the current buffer. * `replace "search" "value" flags`: This will replace `search` with `value`. @@ -133,6 +135,12 @@ Here are the possible commands that you can use. * `bind key action`: creates a keybinding from key to action. See the sections on keybindings above for more info about what keys and actions are available. +* `vsplit filename`: opens a vertical split with `filename`. If no filename is + provided, a vertical split is opened with an empty buffer + +* `hsplit filename`: same as `vsplit` but opens a horizontal split instead of + a vertical split + ### Options Micro stores all of the user configuration in its configuration directory.