summaryrefslogtreecommitdiff
path: root/editors/kakoune
AgeCommit message (Collapse)AuthorFilesLines
2020-05-14Resolve various template matching issues when building with clang andjoerg6-4/+83
don't require relaxed instanciation.
2020-03-22kakoune: Add note to patch. I'm not bitter.nia2-3/+5
2020-03-22kakoune: Update to 2020.01.16nia5-31/+52
== Kakoune v2020.01.16 * Expose history tree through `$kak_history` and `$kak_uncommitted_modifications` * `InsertCompletionHide` parameter is the list of inserted ranges
2019-08-27kakoune: whitespacenia1-2/+2
2019-07-26kakoune: Link against -lsocket -lnsl on SunOSnia1-1/+3
2019-07-25kakoune: Include string.h for FD_ZERO's memcpy needs on illumos.nia2-1/+16
2019-07-24kakoune: Add c++17 to USE_LANGUAGESnia1-2/+2
2019-07-24Add editors/kakoune.nia6-0/+237
Kakoune is a code editor that implements Vi's "keystrokes as a text editing language" model. As it's also a modal editor, it is somewhat similar to the Vim editor (after which Kakoune was originally inspired). 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. Kakoune has a strong focus on interactivity, most commands provide immediate and incremental results, while still being competitive (as in keystroke count) with Vim. Kakoune works on selections, which are oriented, inclusive range of characters, selections have an anchor and a cursor character. Most commands move both of them, except when extending selection where the anchor character stays fixed and the cursor one moves around.