]> git.lizzy.rs Git - micro.git/blob - runtime/help/help.md
Add quick start guide to help.md
[micro.git] / runtime / help / help.md
1 # Micro help text
2
3 Micro is a terminal-based text editor that aims to be easy to use and intuitive, 
4 while also taking advantage of the full capabilities of modern terminals.
5
6 If you want to see all the keybindings press CtrlE and type `help keybindings`.
7
8 See the next section for more information about documentation and help.
9
10 ### Quick-start
11
12 Press CtrlQ to quit, and CtrlS to save. Press CtrlE to start typing commands
13 and you can see which commands are available by pressing tab, or by
14 viewing the help topic `> help commands`. When I write `> ...` I mean press
15 CtrlE and then type whatever is there.
16
17 Move the cursor around with the mouse or the arrow keys.
18
19 If the colorscheme doesn't look good, you can change it with `> set colorscheme ...`.
20 You can press tab to see the available colorschemes, or see more information with
21 `> help colors`.
22
23 Press CtrlW to move between splits, and type `> vsplit filename` or `> hsplit filename`
24 to open a new split.
25
26 ### Accessing more help
27
28 Micro has a built-in help system much like Vim's (although less extensive).
29
30 To use it, press CtrlE to access command mode and type in `help` followed by a topic.
31 Typing `help` followed by nothing will open this page.
32
33 Here are the possible help topics that you can read:
34
35 * tutorial: A brief tutorial which gives an overview of all the other help topics
36 * keybindings: Gives a full list of the default keybindings as well as how to rebind them
37 * commands: Gives a list of all the commands and what they do
38 * options: Gives a list of all the options you can customize
39 * plugins: Explains how micro's plugin system works and how to create your own plugins
40 * colors: Explains micro's colorscheme and syntax highlighting engine and how to create your
41   own colorschemes or add new languages to the engine
42
43 For example, to open the help page on plugins you would press CtrlE and type `help plugins`.
44
45 I recommend looking at the `tutorial` help file because it is short for each section and
46 gives concrete examples of how to use the various configuration options in micro. However,
47 it does not give the in-depth documentation that the other topics provide.