Kakoune ======= Introduction: ------------- 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, keys are directly inserted into the current buffer. In normal mode, keys 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.7 * boost * ncurses To build, just type *make* in the src directory To setup a basic configuration on your account, type *make userconfig* in the src directory, this will setup an initial $XDG_CONFIG_HOME/kak directory. See the _Kakrc_ section for more information. Running ------- Just running *kak* launch a new kak session with a client on local terminal. *kak* accepts some switches: * +-c +: connect to given session (which is the pid of the initial kak process), sessions are unix sockets +/tmp/kak-+ * +-e +: execute commands on startup * +-n+: ignore kakrc file Basic Movement -------------- * _space_: select the character under selection end * _alt-space_: flip the selections * _h_: select the character on the right of selection end * _j_: select the character below the selection end * _k_: select the character above the selection end * _l_: select the character on the left of selection end * _w_: select the word and following whitespaces on the right of selection end * _b_: select preceding whitespaces and the word on the left of selection end * _e_: select preceding whitespaces and the word on the right of selection end * _alt-[wbe]_: same as [wbe] but select WORD instead of word * _x_: select line on which selection end lies (or next line when end lies on an end-of-line) * _alt-x_: expand selections to contain full lines (including end-of-lines) * _%_: select whole buffer * _gh_, _alt-H_: select to line begin * _gl_, _alt-L_: select to line end * _gg_, _gt_: go to the first line * _gb_: go to the last line * _/_: search (select next match) * _?_: search (extend to next match) * _n_: select next match * _N_: add a new selection with next match * _alt-n_: replace last selection with next match (preserving the others) * _alt-c_: center last selection in current window * _pageup_: scroll up * _pagedown_: scroll down Appending --------- for most selection commands, using shift permits to extend current selection instead of replacing it. for example, _wWW_ selects 3 consecutive words Using Counts ------------ Most selection commands also support counts, which are entered before the command itself. for example, _3W_ selects 3 consecutive words and _3w_ select the third word on the right of selection end. * _space_: when used with count, keep only the counth selection * _alt-space_: when used with count, remove the counth selection Changes ------- * _i_: insert before current selection * _a_: insert after current selection * _d_: yank and delete current selection * _c_: yank and delete current selection and insert * _I_: insert at current selection begin line start * _A_: insert at current selection end line end * _o_: insert in a new line below current selection end * _O_: insert in a new line above current selection begin * _p_: paste after current selection end * _P_: paste before current selection begin * _alt-p_: replace current selection with yanked text * _alt-j_: join selected lines * _>_: indent selected lines * _<_: deindent selected lines * _|_: pipe each selections through the given external filter program and replace with it's output. * _u_: undo last change * _U_: redo last change Multi Selection --------------- Kak was designed from the start to handle multiple selections. One way to get a multiselection is via the _s_ key. For example, to change all occurences of word 'roger' to word 'marcel' in a paragraph, here is what can be done: select the paragraph with enough _x_. press _s_ and enter roger then enter. now paragraph selection was replaced with multiselection of each roger in the paragraph. press _c_ and marcel to replace rogers with marcels. A multiselection can also be obtained with _Alt-s_, which splits the current selection according to the regex entered. To split a comma separated list, use _alt-s_ then ', *' To clear multiple selections, use _space_. To keep only the nth selection use _n_ followed by _space_, to remove only the nth selection, use _n_ followed by _alt-space_. Object Selection ---------------- Using alt-i and alt-a, you can select some text object, the starting point is always the last character of the selection. * _b_, _(_ or _)_: select the enclosing parenthesis * _B_, _{_ or _}_: select the enclosing {} block * _[_ or _]_: select the enclosing [] block * _<_ or _>_: select the enclosing <> block * w: select the whole word * W: select the whole WORD When it makes sense, _alt-i_ selects the inner object and alt-a the whole object. For example _alt-i_ will only select the inside of the parenthesis, for words, the difference between _alt-i_ and _alt-a_ is that _alt-a_ also selects the following blanks. Registers --------- registers are named list of text. They are used for various purpose, like storing the last yanked test, or the captures groups associated with the last selection. While in insert mode, ctrl-r followed by a register name (one character) inserts it. For example, ctrl-r followed by " will insert the currently yanked text. ctrl-r followed by 2 will insert the second capture group from the last regex selection. Registers are lists, instead of simply text in order to interact well with multiselection. Each selection have it's own captures, or yank buffer. Search selection ---------------- Using the _*_ key, you can set the search pattern to the current selection. This tries to be intelligent. It will for example detect if current selection begins and/or end at word boundaries, and set the search pattern accordingly. Basic Commands -------------- Commands are entered using +:+. * +e[dit] [ []]+: open buffer on file, go to given line and column. If file is already opened, just switch to this file. use edit! to force reloading. * +w[rite] []+: write buffer to or use it's name if filename is not given. * +q[uit]+: exit Kakoune, use quit! to force quitting even if there is some unsaved buffers remaining. * +wq+: write current buffer and quit * +b[uffer] +: switch to buffer * +d[el]b[uf] []+: delete the buffer , use d[el]b[uf]! to force deleting a modified buffer. * +source +: execute commands in * +runtime +: execute commands in , is relative to kak executable path. * +name +: set current client name * +exec [-client ] +: execute as if pressed in normal mode. if client if specified, exec keys in the named client context. * +eval [-client ] +: execute as if entered in command line if client if specified, exec command in the named client context. * +echo +: show in status line * +set{b,w,g}