]> git.lizzy.rs Git - micro.git/blob - README.md
Merge pull request #1321 from zonuexe/add/php-fn-keyword
[micro.git] / README.md
1 # ![Micro](./assets/logo.png)
2
3 [![Build Status](https://travis-ci.org/zyedidia/micro.svg?branch=master)](https://travis-ci.org/zyedidia/micro)
4 [![Go Report Card](https://goreportcard.com/badge/github.com/zyedidia/micro)](https://goreportcard.com/report/github.com/zyedidia/micro)
5 [![Join the chat at https://gitter.im/zyedidia/micro](https://badges.gitter.im/zyedidia/micro.svg)](https://gitter.im/zyedidia/micro?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6 [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/zyedidia/micro/blob/master/LICENSE)
7 [![Snap Status](https://build.snapcraft.io/badge/zyedidia/micro.svg)](https://build.snapcraft.io/user/zyedidia/micro)
8
9 Micro is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the full capabilities
10 of modern terminals. It comes as one single, batteries-included, static binary with no dependencies, and you can download and use it right now.
11
12 As the name indicates, micro aims to be somewhat of a successor to the nano editor by being easy to install and use in a pinch, but micro also aims to be
13 enjoyable to use full time, whether you work in the terminal because you prefer it (like me), or because you need to (over ssh).
14
15 Here is a picture of micro editing its source code.
16
17 ![Screenshot](./assets/micro-solarized.png)
18
19 To see more screenshots of micro, showcasing all of the default colorschemes, see [here](http://zbyedidia.webfactional.com/micro/screenshots.html).
20  
21 You can also check out the website for Micro at https://micro-editor.github.io.
22
23 # Table of Contents
24 - [Features](#features)
25 - [Installation](#installation)
26   - [Prebuilt binaries](#prebuilt-binaries)
27   - [Package Managers](#package-managers)
28   - [Building from source](#building-from-source)
29   - [MacOS terminal](#macos-terminal)
30   - [Linux clipboard support](#linux-clipboard-support)
31   - [Colors and syntax highlighting](#colors-and-syntax-highlighting)
32   - [Plan9, Cygwin, Mingw](#plan9-cygwin-mingw)
33 - [Usage](#usage)
34 - [Documentation and Help](#documentation-and-help)
35 - [Contributing](#contributing)
36
37 - - -
38
39 # Features
40
41 * Easy to use and to install
42 * No dependencies or external files are needed -- just the binary you can download further down the page
43 * Multiple cursors
44 * Common keybindings (ctrl-s, ctrl-c, ctrl-v, ctrl-z...)
45     * Keybindings can be rebound to your liking
46 * Sane defaults
47     * You shouldn't have to configure much out of the box (and it is extremely easy to configure)
48 * Splits and tabs
49 * Nano-like menu to help you remember the keybindings
50 * Extremely good mouse support
51     * This means mouse dragging to create a selection, double click to select by word, and triple click to select by line
52 * Cross platform (It should work on all the platforms Go runs on)
53     * Note that while Windows is supported Mingw/Cygwin is not (see below)
54 * Plugin system (plugins are written in Lua)
55 * Persistent undo
56 * Automatic linting and error notifications
57 * Syntax highlighting (for over [120 languages](runtime/syntax)!)
58 * Colorscheme support
59     * By default, micro comes with 16, 256, and true color themes.
60 * True color support (set the `MICRO_TRUECOLOR` environment variable to 1 to enable it)
61 * Copy and paste with the system clipboard
62 * Small and simple
63 * Easily configurable
64 * Macros
65 * Common editor things such as undo/redo, line numbers, Unicode support, softwrap...
66
67 # Installation
68
69 To install micro, you can download a [prebuilt binary](https://github.com/zyedidia/micro/releases), or you can build it from source.
70
71 If you want more information about ways to install micro, see this [wiki page](https://github.com/zyedidia/micro/wiki/Installing-Micro).
72
73 ### Prebuilt binaries
74
75 All you need to install micro is one file, the binary itself. It's as simple as that!
76
77 Download the binary from the [releases](https://github.com/zyedidia/micro/releases) page.
78
79 On that page you'll see the nightly release, which contains binaries for micro which are built every night,
80 and you'll see all the stable releases with the corresponding binaries.
81
82 If you'd like to see more information after installing micro, run `micro -version`.
83
84 ### Installation script
85
86 There is a great script which can install micro for you by downloading the latest prebuilt binary. You can find it at https://getmic.ro (the github repo for it is [here](https://github.com/benweissmann/getmic.ro)).
87
88 Then you can easily install micro:
89
90     $ curl https://getmic.ro | bash
91
92 The script will install the micro binary to the current directory.
93
94 See the [Github page](https://github.com/benweissmann/getmic.ro) for more information.
95
96 ### Package managers
97
98 You can install micro using Homebrew on Mac:
99
100 ```
101 brew install micro
102 ```
103
104 On Debian Linux, you can install micro through [snap](https://snapcraft.io/docs/core/install)
105
106 ```
107 snap install micro --classic
108 ```
109
110 Homebrew and snap are the two "officially" maintained package manager distributions of micro.
111
112 Micro is also available through other package managers on Linux such as AUR, Nix, and package managers
113 for other operating systems:
114
115 * Windows: [Chocolatey](https://chocolatey.org) and [Scoop](https://github.com/lukesampson/scoop)
116     * `choco install micro`
117     * `scoop install micro`
118 * OpenBSD: Available in the ports tree and also available as a binary package
119     * `pkd_add -v micro`
120
121 ### Building from source
122
123 If your operating system does not have a binary release, but does run Go, you can build from source.
124
125 Make sure that you have Go version 1.11 or greater and Go modules are enabled.
126
127 ```
128 git clone https://github.com/zyedidia/micro
129 cd micro
130 make build
131 sudo mv micro /usr/local/bin # optional
132 ```
133
134 The binary will be placed in the current directory and can be moved to
135 anywhere you like (for example `/usr/local/bin`).
136
137 The command `make install` will install the binary to `$GOPATH/bin` or `$GOBIN`.
138
139 You can install directly with `go get` (`go get github.com/zyedidia/micro/cmd/micro`) but this isn't
140 recommended because it doesn't build micro with version information, and doesn't disable debug mode.
141
142 ### MacOS terminal
143
144 If you are using MacOS, you should consider using [iTerm2](http://iterm2.com/) instead of the default Mac terminal. The iTerm2 terminal has much better mouse support as well as better handling of key events. For best keybinding behavior, choose `xterm defaults` under `Preferences->Profiles->Keys->Load Preset`. The newest versions also support true color.
145
146 If you still insist on using the default Mac terminal, be sure to set `Use Option key as Meta key` under
147 `Preferences->Profiles->Keyboard` to use <kbd>option</kbd> as <kbd>alt</kbd>.
148
149 ### Linux clipboard support
150
151 On Linux, clipboard support requires the 'xclip' or 'xsel' commands to be installed.
152
153 For Ubuntu:
154
155 ```sh
156 sudo apt-get install xclip
157 ```
158
159 If you don't have xclip or xsel, micro will use an internal clipboard for copy and paste, but it won't work with external applications.
160
161 ### Colors and syntax highlighting
162
163 If you open micro and it doesn't seem like syntax highlighting is working, this is probably because
164 you are using a terminal which does not support 256 colors. Try changing the colorscheme to `simple`
165 by pressing CtrlE in micro and typing `set colorscheme simple`.
166
167 If you are using the default Ubuntu terminal, to enable 256 make sure your `TERM` variable is set
168 to `xterm-256color`.
169
170 Many older Windows terminals don't support more than 16 colors, which means
171 that micro's default colorscheme won't look very good. You can either set
172 the colorscheme to `simple`, or download a better terminal emulator, like
173 mintty. However, if you are on a recent version of Windows 10, the default
174 `cmd.exe` should do fine.
175
176 ### Plan9, Cygwin, Mingw
177
178 These platforms are unfortunately not supported.
179
180 Micro uses the amazing [tcell library](https://github.com/gdamore/tcell), but this
181 means that micro is restricted to the platforms tcell supports. As a result, micro does not support
182 Plan9, and Cygwin (although this may change in the future). Micro also doesn't support NaCl (but NaCl is deprecated anyways).
183
184 # Usage
185
186 Once you have built the editor, simply start it by running `micro path/to/file.txt` or simply `micro` to open an empty buffer.
187
188 Micro also supports creating buffers from `stdin`:
189
190 ```sh
191 ifconfig | micro
192 ```
193
194 You can move the cursor around with the arrow keys and mouse.
195
196 You can also use the mouse to manipulate the text. Simply clicking and dragging
197 will select text. You can also double click to enable word selection, and triple
198 click to enable line selection.
199
200 # Documentation and Help
201
202 Micro has a built-in help system which you can access by pressing `Ctrl-E` and typing `help`. Additionally, you can
203 view the help files here:
204
205 * [main help](https://github.com/zyedidia/micro/tree/master/runtime/help/help.md)
206 * [keybindings](https://github.com/zyedidia/micro/tree/master/runtime/help/keybindings.md)
207 * [commands](https://github.com/zyedidia/micro/tree/master/runtime/help/commands.md)
208 * [colors](https://github.com/zyedidia/micro/tree/master/runtime/help/colors.md)
209 * [options](https://github.com/zyedidia/micro/tree/master/runtime/help/options.md)
210 * [plugins](https://github.com/zyedidia/micro/tree/master/runtime/help/plugins.md)
211
212 I also recommend reading the [tutorial](https://github.com/zyedidia/micro/tree/master/runtime/help/tutorial.md) for
213 a brief introduction to the more powerful configuration features micro offers.
214
215 # Contributing
216
217 If you find any bugs, please report them! I am also happy to accept pull requests from anyone.
218
219 You can use the [GitHub issue tracker](https://github.com/zyedidia/micro/issues)
220 to report bugs, ask questions, or suggest new features.
221
222 For a more informal setting to discuss the editor, you can join the [Gitter chat](https://gitter.im/zyedidia/micro).