micro/README.md

145 lines
6.6 KiB
Markdown
Raw Normal View History

2016-08-26 22:15:18 +03:00
# ![Micro](./assets/logo.png)
2016-03-21 00:28:36 +03:00
2016-03-25 22:09:24 +03:00
[![Build Status](https://travis-ci.org/zyedidia/micro.svg?branch=master)](https://travis-ci.org/zyedidia/micro)
[![Go Report Card](https://goreportcard.com/badge/github.com/zyedidia/micro)](https://goreportcard.com/report/github.com/zyedidia/micro)
2016-04-21 19:46:30 +03:00
[![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)
2016-03-21 00:33:37 +03:00
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/zyedidia/micro/blob/master/LICENSE)
2016-03-21 00:28:36 +03:00
2016-04-18 05:22:11 +03:00
Micro is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the full capabilities
2016-04-29 17:14:29 +03:00
of modern terminals. It comes as one single, batteries-included, static binary with no dependencies, and you can download and use it right now.
2016-03-21 00:28:36 +03:00
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
enjoyable to use full time, whether you work in the terminal because you prefer it (like me), or because you need to (over ssh).
Here is a picture of micro editing its source code.
2016-08-26 21:46:34 +03:00
![Screenshot](./assets/micro-solarized.png)
2016-08-28 23:29:01 +03:00
To see more screenshots of micro, showcasing all of the default colorschemes, see [here](http://zbyedidia.webfactional.com/micro/screenshots.html).
2016-03-21 00:28:36 +03:00
# Features
2016-06-03 18:14:11 +03:00
* Easy to use and to install
* No dependencies or external files are needed -- just the binary you can download further down the page
2016-03-21 00:28:36 +03:00
* Common keybindings (ctrl-s, ctrl-c, ctrl-v, ctrl-z...)
2016-06-03 18:14:11 +03:00
* Keybindings can be rebound to your liking
2016-08-20 23:02:19 +03:00
* Sane defaults
* You shouldn't have to configure much out of the box (and it is extremely easy to configure)
2016-08-29 17:21:34 +03:00
* Splits and tabs
2016-03-21 00:28:36 +03:00
* Extremely good mouse support
2016-08-20 23:02:19 +03:00
* This means mouse dragging to create a selection, double click to select by word, and triple click to select by line
2016-06-03 18:14:11 +03:00
* Cross platform (It should work on all the platforms Go runs on)
* Note that while Windows is supported, there are still some bugs that need to be worked out
2016-06-03 18:14:11 +03:00
* Plugin system (plugins are written in Lua)
* Persistent undo
2016-08-20 23:02:19 +03:00
* Automatic linting and error notifications
2016-06-03 18:14:11 +03:00
* Syntax highlighting (for over [75 languages](runtime/syntax)!)
* Colorscheme support
2016-08-20 23:02:19 +03:00
* By default, micro comes with 16, 256, and true color themes.
* True color support (set the `MICRO_TRUECOLOR` env variable to 1 to enable it)
2016-04-18 04:55:57 +03:00
* Copy and paste with the system clipboard
* Small and simple
2016-04-29 17:14:29 +03:00
* Easily configurable
* Macros
2016-06-03 18:14:11 +03:00
* Common editor things such as undo/redo, line numbers, unicode support...
2016-03-21 00:28:36 +03:00
2016-09-01 19:09:49 +03:00
Although not yet implemented, I hope to add more features such as autocompletion ([#174](https://github.com/zyedidia/micro/issues/174)), and multiple cursors ([#5](https://github.com/zyedidia/micro/issues/5)) in the future.
2016-03-21 00:28:36 +03:00
# Installation
2016-08-29 17:17:15 +03:00
To install micro, you can download a [prebuilt binary](https://github.com/zyedidia/micro/releases), or you can build it from source.
If you want more information about ways to install micro, see this [wiki page](https://github.com/zyedidia/micro/wiki/Installing-Micro)
2016-05-30 01:20:43 +03:00
### Prebuilt binaries
2016-05-22 01:25:49 +03:00
2016-08-20 23:02:19 +03:00
All you need to install micro is one file, the binary itself. It's as simple as that!
2016-08-29 17:17:15 +03:00
Download the binary from the [releases](https://github.com/zyedidia/micro/releases) page.
2016-04-30 21:12:54 +03:00
On that page you'll see the nightly release, which contains binaries for micro which are built every night,
and you'll see all the stable releases with the corresponding binaries.
If you'd like to see more information after installing micro, run `micro -version`.
### Building from source
2016-03-21 00:28:36 +03:00
If your operating system does not have binary, but does run Go, you can build from source.
Make sure that you have Go version 1.5 or greater (Go 1.4 will work if your version supports CGO).
2016-05-22 01:25:49 +03:00
```sh
2016-06-01 07:23:48 +03:00
go get -u github.com/zyedidia/micro/...
2016-03-21 00:28:36 +03:00
```
### Linux clipboard support
2016-05-22 01:28:29 +03:00
On Linux, clipboard support requires 'xclip' or 'xsel' command to be installed.
For Ubuntu:
2016-05-22 01:25:49 +03:00
```sh
2016-05-22 01:28:29 +03:00
sudo apt-get install xclip
```
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.
2016-08-30 18:24:02 +03:00
### Colors and syntax highlighting
If you open micro and it doesn't seem like syntax highlighting is working, this is probably because
you are using a terminal which does not support 256 color. Try changing the colorscheme to `simple`
by running `> set colorscheme simple`.
If you are using the default ubuntu terminal, to enable 256 make sure your `TERM` variable is set
to `xterm-256color`.
Many of the Windows terminals don't support more than 16 colors, which means
that micro's default colorscheme won't look very good. You can either set
the colorscheme to `simple`, or download a better terminal emulator, like
mintty.
2016-08-29 17:17:15 +03:00
### Plan9, NaCl, Cygwin
Please note that micro uses the amazing [tcell library](https://github.com/gdamore/tcell), but this
means that micro is restricted to the platforms tcell supports. As a result, micro does not support
Plan9, NaCl, and Cygwin (although this may change in the future).
# Usage
Once you have built the editor, simply start it by running `micro path/to/file.txt` or simply `micro` to open an empty buffer.
Micro also supports creating buffers from `stdin`:
2016-05-22 01:25:49 +03:00
```sh
ifconfig | micro
```
You can move the cursor around with the arrow keys and mouse.
2016-08-20 23:02:19 +03:00
You can also use the mouse to manipulate the text. Simply clicking and dragging
will select text. You can also double click to enable word selection, and triple
click to enable line selection.
2016-04-19 20:40:30 +03:00
# Documentation and Help
2016-04-24 15:41:30 +03:00
2016-08-20 23:02:19 +03:00
Micro has a built-in help system which you can access by pressing `CtrlE` and typing `help`. Additionally, you can
2016-09-01 03:04:24 +03:00
view the help files here:
2016-09-01 03:05:35 +03:00
* [main help](https://github.com/zyedidia/micro/tree/master/runtime/help/help.md)
* [keybindings](https://github.com/zyedidia/micro/tree/master/runtime/help/keybindings.md)
* [commands](https://github.com/zyedidia/micro/tree/master/runtime/help/commands.md)
* [colors](https://github.com/zyedidia/micro/tree/master/runtime/help/colors.md)
* [options](https://github.com/zyedidia/micro/tree/master/runtime/help/options.md)
* [plugins](https://github.com/zyedidia/micro/tree/master/runtime/help/plugins.md)
2016-04-24 15:41:30 +03:00
I also recommend reading the [tutorial](https://github.com/zyedidia/micro/tree/master/runtime/help/tutorial.md) for
2016-08-29 17:21:34 +03:00
a brief introduction to the more powerful configuration features micro offers.
# Contributing
2016-03-21 00:28:36 +03:00
If you find any bugs, please report them! I am also happy to accept pull requests from anyone.
You can use the Github issue tracker to report bugs, ask questions, or suggest new features.
2016-09-05 17:29:15 +03:00
For a more informal setting to discuss the editor, you can join the [Gitter chat](https://gitter.im/zyedidia/micro).