From 2eb008b6cac1aa44ceafd9292a81e7d5e734e28b Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 4 Nov 2011 14:05:05 +0000 Subject: [PATCH] README: added building instructions --- README.asciidoc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.asciidoc b/README.asciidoc index 7e4a6856..44ba0f40 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -4,7 +4,7 @@ Kakoune Introduction: ------------- - Kakoune is a code editor heavily inspired by vim, as such most of it's +Kakoune is a code editor heavily inspired by vim, as such most of it's commands are similar to vi's ones. Kakoune can operate in two modes, normal and insertion. In insertion mode, @@ -14,6 +14,15 @@ are used to manipulate the current selection and to enter insertion mode. There is no concept of cursor in kakoune, only selections, a single character selection can be seen as a cursor but there is no difference internally. +Building +-------- + +Kakoune dependencies are: + * GCC >= 4.6 + * boost + * ncurses + +To build, just type *make* in the src directory Basic Movement --------------