* Clarified meaning of indentchar setting The description "sets the indentation character" combined with the default value of a space led me to believe that this was a way to set a preference for tabs/spaces and choose a number of spaces per indentation all at once. I've updated the description to try to make its true function clearer. * Added note on rmtrailingws This behavior was unexpected for me, so it's probably good to let other users know which option has precedence. * Added details to help command Initially I kept trying to use `help <command-name>` rather than `help commands`
5.2 KiB
Command bar
The command bar is opened by pressing Ctrl-e. It is a single-line buffer, meaning that all keybindings from a normal buffer are supported (as well as mouse and selection).
When running a command, you can use extra syntax that micro will expand before
running the command. To use an argument with a space in it, put it in
quotes. The command bar parser uses the same rules for parsing arguments that
/bin/sh would use (single quotes, double quotes, escaping). The command bar
does not look up environment variables.
Commands
Micro provides the following commands that can be executed at the command-bar
by pressing Ctrl-e and entering the command. Arguments are placed in single
quotes here but these are not necessary when entering the command in micro.
-
bind 'key' 'action': creates a keybinding from key to action. See thekeybindingsdocumentation for more information about binding keys. This command will modifybindings.jsonand overwrite any bindings tokeythat already exist. -
help 'topic'?: opens the corresponding help topic. If no topic is provided opens the default help screen. Help topics are stored as.mdfiles in theruntime/helpdirectory of the source tree, which is embedded in the final binary. -
save 'filename'?: saves the current buffer. If the file is provided it will 'save as' the filename. -
quit: quits micro. -
goto 'line': jumps to the given line number. A negative number can be passed to jump inward from the end of the file; for example, -5 jumps to the 5th-last line in the file. -
replace 'search' 'value' 'flags'?: This will replacesearchwithvalue. Theflagsare optional. Possible flags are:-a: Replace all occurrences at once-l: Do a literal search instead of a regex search
Note that
searchmust be a valid regex (unless-lis passed). If one of the arguments does not have any spaces in it, you may omit the quotes. -
replaceall 'search' 'value': this will replace all occurrences ofsearchwithvaluewithout user confirmation.See
replacecommand for more information. -
set 'option' 'value': sets the option to value. See theoptionshelp topic for a list of options you can set. This will modify yoursettings.jsonwith the new value. -
setlocal 'option' 'value': sets the option to value locally (only in the current buffer). This will not modifysettings.json. -
show 'option': shows the current value of the given option. -
run 'sh-command': runs the given shell command in the background. The command's output will be displayed in one line when it finishes running. -
vsplit 'filename': opens a vertical split withfilename. If no filename is provided, a vertical split is opened with an empty buffer. -
hsplit 'filename': same asvsplitbut opens a horizontal split instead of a vertical split. -
tab 'filename': opens the given file in a new tab. -
tabmove '[-+]?n': Moves the active tab to another slot.nis an integer. Ifnis prefixed with-or+, then it represents a relative position (e.g.tabmove +2moves the tab to the right by2). Ifnhas no prefix, it represents an absolute position (e.g.tabmove 2moves the tab to slot2). -
tabswitch 'tab': This command will switch to the specified tab. Thetabcan either be a tab number, or a name of a tab. -
textfilter 'sh-command': filters the current selection through a shell command as standard input and replaces the selection with the stdout of the shell command. For example, to sort a list of numbers, first select them, and then execute> textfilter sort -n. -
log: opens a log of all messages and debug statements. -
plugin list: lists all installed plugins. -
plugin install 'pl': install a plugin. -
plugin remove 'pl': remove a plugin. -
plugin update 'pl': update a plugin (if no arguments are provided updates all plugins). -
plugin search 'pl': search available plugins for a keyword. -
plugin available: show available plugins that can be installed. -
reload: reloads all runtime files. -
cd 'path': Change the working directory to the givenpath. -
pwd: Print the current working directory. -
open 'filename': Open a file in the current buffer. -
reset 'option': resets the given option to its default value -
retab: Replaces all leading tabs with spaces or leading spaces with tabs depending on the value oftabstospaces. -
raw: micro will open a new tab and show the escape sequence for every event it receives from the terminal. This shows you what micro actually sees from the terminal and helps you see which bindings aren't possible and why. This is most useful for debugging keybindings. -
showkey: Show the action(s) bound to a given key. For example running> showkey Ctrl-cwill displayCopy. -
term exec?: Open a terminal emulator running the given executable. If no executable is given, this will open the default shell in the terminal emulator.
The following commands are provided by the default plugins:
lint: Lint the current file for errors.comment: automatically comment or uncomment current selection or line.