Update docs

This commit is contained in:
Zachary Yedidia
2019-06-15 22:08:10 -04:00
parent aa305c2676
commit 0f4f60c018
3 changed files with 22 additions and 31 deletions

View File

@@ -51,8 +51,12 @@ Here are the options that you can set:
default value: `true`
* `eofnewline`: micro will automatically add a newline to the end of the file
when saving.
* `encoding`: the encoding to open and save files with. Supported encodings
are listed at https://www.w3.org/TR/encoding/.
default value: `utf-8`
* `eofnewline`: micro will automatically add a newline to the file.
default value: `false`
@@ -109,6 +113,16 @@ Here are the options that you can set:
default value: `false`
* `matchbrace`: highlight matching braces for '()', '{}', '[]'
default value: `false`
* `matchbraceleft`: when matching a closing brace, should matching match the
brace directly under the cursor, or the character to the left? only matters
if `matchbrace` is true
default value: `false`
* `mouse`: whether to enable mouse support. When mouse support is disabled,
usually the terminal will be able to access mouse events which can be useful
if you want to copy from the terminal instead of from micro (if over ssh for
@@ -190,26 +204,16 @@ Here are the options that you can set:
default value: `true`
* `matchbrace`: highlight matching braces for '()', '{}', '[]'
default value: `false`
* `matchbraceleft`: when matching a closing brace, should matching match the
brace directly under the cursor, or the character to the left? only matters
if `matchbrace` is true
default value: `false`
* `syntax`: turns syntax highlighting on or off.
default value: `true`
* `sucmd`: specifies the super user command. On most systems this is "sudo" but
on BSD it can be "doas." This option can be customized and is only used when
saving with su.
default value: `sudo`
* `syntax`: turns syntax on or off.
default value: `true`
* `tabmovement`: navigate spaces at the beginning of lines as if they are tabs
(e.g. move over 4 spaces at once). This option only does anything if
`tabstospaces` is on.