From b6195721ac8813df3bcb6b8759f9a93745015b3a Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Thu, 28 Apr 2016 15:05:53 -0400 Subject: [PATCH] Update readme and help --- README.md | 1 + runtime/help/help.md | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 1718b547..90f372af 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ Here is a picture of micro editing its source code. * True color support (set the `MICRO_TRUECOLOR` env variable to 1 to enable it) * Search and replace * Sane defaults +* Plugin system (plugins are written in Lua) * Undo and redo * Unicode support * Copy and paste with the system clipboard diff --git a/runtime/help/help.md b/runtime/help/help.md index 58548d97..5e60789a 100644 --- a/runtime/help/help.md +++ b/runtime/help/help.md @@ -48,6 +48,12 @@ These are the default keybindings, along with their actions. * End: Go to end of line * Ctrl-r: Toggle line numbers +You can use the alt keys + arrows to move word by word. +Ctrl left and right move the cursor to the start and end of the line, and +ctrl up and down move the cursor the start and end of the buffer. + +You can hold shift with all of these movement actions to select while moving. + The buffer bindings may be rebound using the `~/.config/micro/bindings.json` file. Each key is bound to an action. For example, to bind `Ctrl-y` to undo and `Ctrl-z` to redo, you could put the following in the `bindings.json` file.