2011-11-04 10:09:27 +01:00
|
|
|
Kakoune
|
|
|
|
=======
|
|
|
|
|
|
|
|
Introduction:
|
|
|
|
-------------
|
|
|
|
|
2011-11-04 15:05:05 +01:00
|
|
|
Kakoune is a code editor heavily inspired by vim, as such most of it's
|
2011-11-04 10:09:27 +01:00
|
|
|
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
|
2011-12-28 20:04:57 +01:00
|
|
|
selection can be seen as a cursor but there is no difference internally.
|
2011-11-04 10:09:27 +01:00
|
|
|
|
2011-11-04 15:05:05 +01:00
|
|
|
Building
|
|
|
|
--------
|
|
|
|
|
|
|
|
Kakoune dependencies are:
|
2011-11-04 15:28:29 +01:00
|
|
|
|
2013-06-18 21:43:44 +02:00
|
|
|
* GCC >= 4.7
|
2011-11-04 15:05:05 +01:00
|
|
|
* boost
|
|
|
|
* ncurses
|
2013-10-26 01:51:19 +02:00
|
|
|
* bash (kak scripts use some bash specific features)
|
2013-09-19 20:54:17 +02:00
|
|
|
* socat (used by kak scripts to write to kak control socket)
|
2011-11-04 15:05:05 +01:00
|
|
|
|
|
|
|
To build, just type *make* in the src directory
|
2011-11-04 10:09:27 +01:00
|
|
|
|
2013-01-04 18:32:26 +01:00
|
|
|
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.
|
|
|
|
|
2013-01-07 14:25:19 +01:00
|
|
|
Running
|
|
|
|
-------
|
|
|
|
|
|
|
|
Just running *kak* launch a new kak session with a client on local terminal.
|
|
|
|
*kak* accepts some switches:
|
|
|
|
|
2013-09-19 20:54:17 +02:00
|
|
|
* +-c <session>+: connect to given session, sessions are unix sockets
|
|
|
|
+/tmp/kak-<session>+
|
2013-01-07 14:25:19 +01:00
|
|
|
* +-e <commands>+: execute commands on startup
|
|
|
|
* +-n+: ignore kakrc file
|
2013-09-19 20:54:17 +02:00
|
|
|
* +-s <session>+: set the session name, by default it will be the pid
|
|
|
|
of the initial kak process.
|
2013-09-19 21:09:53 +02:00
|
|
|
* +-d+: run Kakoune in daemon mode, without user interface. This requires
|
|
|
|
the session name to be specified with -s. In this mode, the Kakoune
|
|
|
|
server will keep running even if there is no connected client, and
|
|
|
|
will quit when receiving SIGTERM.
|
2013-01-07 14:25:19 +01:00
|
|
|
|
2011-11-04 10:09:27 +01:00
|
|
|
Basic Movement
|
|
|
|
--------------
|
|
|
|
|
|
|
|
* _space_: select the character under selection end
|
2013-01-03 14:01:48 +01:00
|
|
|
* _alt-space_: flip the selections
|
2011-11-04 10:09:27 +01:00
|
|
|
|
|
|
|
* _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
|
|
|
|
|
2011-12-28 20:04:57 +01:00
|
|
|
* _w_: select the word and following whitespaces on the right of selection end
|
2011-11-04 10:09:27 +01:00
|
|
|
* _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
|
2013-01-03 14:01:48 +01:00
|
|
|
* _alt-[wbe]_: same as [wbe] but select WORD instead of word
|
2011-11-04 10:09:27 +01:00
|
|
|
|
2011-11-22 15:32:05 +01:00
|
|
|
* _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)
|
2013-04-16 14:30:11 +02:00
|
|
|
* _alt-X_: trim selections to only contain full lines (not including last
|
|
|
|
end-of-line)
|
2011-11-22 15:32:05 +01:00
|
|
|
|
2011-11-04 10:09:27 +01:00
|
|
|
* _%_: select whole buffer
|
|
|
|
|
2013-04-11 21:15:54 +02:00
|
|
|
* _alt-H_: select to line begin
|
|
|
|
* _alt-L_: select to line end
|
2011-11-04 10:09:27 +01:00
|
|
|
|
2013-01-03 14:01:48 +01:00
|
|
|
* _/_: search (select next match)
|
|
|
|
* _?_: search (extend to next match)
|
|
|
|
* _n_: select next match
|
2012-10-16 18:53:05 +02:00
|
|
|
* _N_: add a new selection with next match
|
2013-03-20 19:10:16 +01:00
|
|
|
* _alt-n_: replace main selection with next match (preserving the others)
|
2013-01-03 14:01:48 +01:00
|
|
|
|
|
|
|
* _pageup_: scroll up
|
|
|
|
* _pagedown_: scroll down
|
2012-10-16 18:53:05 +02:00
|
|
|
|
2013-10-02 20:10:31 +02:00
|
|
|
* _alt-r_: rotate selections (the main selection becomes the next one)
|
|
|
|
|
2011-11-04 10:09:27 +01:00
|
|
|
Appending
|
|
|
|
---------
|
|
|
|
|
2013-01-03 14:01:48 +01:00
|
|
|
for most selection commands, using shift permits to extend current selection
|
2011-11-04 10:09:27 +01:00
|
|
|
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.
|
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
* _space_: when used with count, keep only the counth selection
|
|
|
|
* _alt-space_: when used with count, remove the counth selection
|
2012-05-29 13:32:29 +02:00
|
|
|
|
2011-11-04 10:09:27 +01:00
|
|
|
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
|
2013-01-03 14:01:48 +01:00
|
|
|
* _alt-p_: replace current selection with yanked text
|
2011-11-04 10:09:27 +01:00
|
|
|
|
2011-11-22 15:32:05 +01:00
|
|
|
* _alt-j_: join selected lines
|
2013-04-23 18:54:31 +02:00
|
|
|
* _alt-J_: join selected lines and select spaces inserted
|
|
|
|
in place of line breaks
|
2011-11-22 15:32:05 +01:00
|
|
|
|
2013-01-03 14:01:48 +01:00
|
|
|
* _>_: indent selected lines
|
|
|
|
* _<_: deindent selected lines
|
|
|
|
|
2011-12-28 20:09:54 +01:00
|
|
|
* _|_: pipe each selections through the given external filter program
|
|
|
|
and replace with it's output.
|
|
|
|
|
2013-01-03 14:01:48 +01:00
|
|
|
* _u_: undo last change
|
|
|
|
* _U_: redo last change
|
|
|
|
|
2013-05-15 18:47:58 +02:00
|
|
|
* _r_: replace each character with the next entered one
|
|
|
|
* _&_: align selection, align the last character of selections by
|
2013-09-19 20:54:17 +02:00
|
|
|
inserting spaces the last character
|
|
|
|
* _alt-&_: align selection, align the last character of selections by
|
|
|
|
inserting spaces before the selection begin
|
2013-07-12 14:55:30 +02:00
|
|
|
* _`_: to lower case
|
|
|
|
* _~_: to upper case
|
|
|
|
* _alt-`_: swap case
|
2013-05-15 18:47:58 +02:00
|
|
|
|
2013-10-02 20:10:31 +02:00
|
|
|
* _alt-R_: rotate selections content
|
|
|
|
|
2013-04-11 21:15:54 +02:00
|
|
|
Goto Commands
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Commands begining with g are used to goto certain position and or buffer:
|
|
|
|
|
|
|
|
* _gh_: select to line begin
|
|
|
|
* _gl_: select to line end
|
|
|
|
|
|
|
|
* _gg_, _gk_: go to the first line
|
|
|
|
* _gj_: go to the last line
|
|
|
|
|
|
|
|
* _gt_, _gk_: go to the first displayed line
|
|
|
|
* _gc_, _gk_: go to the middle displayed line
|
|
|
|
* _gb_: go to the last displayed line
|
|
|
|
|
|
|
|
* _ga_: go to the previous (alternate) buffer
|
|
|
|
* _gf_: open the file whose name is selected
|
|
|
|
|
2013-04-16 13:54:04 +02:00
|
|
|
View commands
|
|
|
|
-------------
|
2013-04-11 21:15:54 +02:00
|
|
|
|
2013-04-16 13:54:04 +02:00
|
|
|
Some commands, all begining with v permit to manipulate the current
|
|
|
|
view.
|
2013-04-11 21:15:54 +02:00
|
|
|
|
2013-04-16 13:54:04 +02:00
|
|
|
* _vv_ or _vc_: center the main selection in the window
|
|
|
|
* _vt_: scroll to put the main selection on the top line of the window
|
|
|
|
* _vb_: scroll to put the main selection on the bottom line of the window
|
2013-07-27 03:06:23 +02:00
|
|
|
* _vh_: scroll the window count columns left
|
2013-04-16 13:54:04 +02:00
|
|
|
* _vj_: scroll the window count line downward
|
|
|
|
* _vk_: scroll the window count line upward
|
2013-07-24 01:38:30 +02:00
|
|
|
* _vl_: scroll the window count columns right
|
2013-04-11 21:15:54 +02:00
|
|
|
|
2013-10-02 19:48:50 +02:00
|
|
|
Jump list
|
|
|
|
---------
|
|
|
|
|
|
|
|
Some commands, like the goto commands, buffer switch or search commands,
|
|
|
|
push the previous selections to the client's jump list. It is possible
|
|
|
|
to forward or backward in the jump list using:
|
|
|
|
|
|
|
|
* _control-i_: Jump forward
|
|
|
|
* _control-o_: Jump backward
|
|
|
|
* _control-s_: save current selections
|
|
|
|
|
2011-11-16 15:15:40 +01:00
|
|
|
Multi Selection
|
|
|
|
---------------
|
|
|
|
|
|
|
|
Kak was designed from the start to handle multiple selections.
|
2012-10-16 18:53:05 +02:00
|
|
|
One way to get a multiselection is via the _s_ key.
|
2011-11-16 15:15:40 +01:00
|
|
|
|
|
|
|
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<esc> to replace rogers with marcels.
|
|
|
|
|
2013-02-22 18:37:34 +01:00
|
|
|
A multiselection can also be obtained with _S_, which splits the current
|
2011-11-21 20:35:02 +01:00
|
|
|
selection according to the regex entered. To split a comma separated list,
|
2013-02-22 18:37:34 +01:00
|
|
|
use _S_ then ', *'
|
|
|
|
|
|
|
|
_s_ and _S_ share the search pattern with _/_, and hence entering an empty
|
|
|
|
pattern uses the last one.
|
|
|
|
|
|
|
|
As a convenience, _alt-s_ allows you to split the current selections on
|
|
|
|
line boundaries.
|
2011-11-21 20:35:02 +01:00
|
|
|
|
2012-05-04 06:34:48 +02:00
|
|
|
To clear multiple selections, use _space_. To keep only the nth selection
|
2012-11-12 19:41:50 +01:00
|
|
|
use _n_ followed by _space_, to remove only the nth selection, use _n_
|
|
|
|
followed by _alt-space_.
|
2012-01-25 22:26:41 +01:00
|
|
|
|
2013-04-03 19:05:57 +02:00
|
|
|
_alt-k_ allows you to enter a regex and keep only the selections that
|
|
|
|
contains a match for this regex. using _alt-K_ you can keep the selections
|
|
|
|
not containing a match.
|
|
|
|
|
2012-05-29 13:32:29 +02:00
|
|
|
Object Selection
|
|
|
|
----------------
|
|
|
|
|
2013-03-14 14:11:06 +01:00
|
|
|
Some keys allow you to select a text object:
|
|
|
|
|
|
|
|
* _alt-a_: selects the whole object
|
|
|
|
* _alt-i_: selects the inner object, that is the object excluding it's surrounder.
|
|
|
|
for example, for a quoted string, this will not select the quote, and
|
|
|
|
for a word this will not select trailing spaces.
|
|
|
|
* _[_: selects to object start
|
|
|
|
* _]_: selects to object end
|
2013-10-08 20:38:10 +02:00
|
|
|
* _{_: extends selections to object start
|
|
|
|
* _}_: extends selections to object end
|
2013-03-14 14:11:06 +01:00
|
|
|
|
|
|
|
After this key, you need to enter a second key in order to specify which
|
|
|
|
object you want.
|
2012-05-29 13:32:29 +02:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
* _b_, _(_ or _)_: select the enclosing parenthesis
|
|
|
|
* _B_, _{_ or _}_: select the enclosing {} block
|
2013-03-18 22:31:05 +01:00
|
|
|
* _r_, _[_ or _]_: select the enclosing [] block
|
2012-08-08 00:11:36 +02:00
|
|
|
* _<_ or _>_: select the enclosing <> block
|
2013-03-14 14:11:06 +01:00
|
|
|
* _"_: select the enclosing double quoted string
|
|
|
|
* _'_: select the enclosing single quoted string
|
|
|
|
* _w_: select the whole word
|
|
|
|
* _W_: select the whole WORD
|
2013-04-30 14:21:48 +02:00
|
|
|
* _s_: select the sentence
|
2013-04-30 14:29:18 +02:00
|
|
|
* _p_: select the paragraph
|
2013-07-22 19:58:16 +02:00
|
|
|
* _i_: select the current indentation block
|
2012-05-29 13:32:29 +02:00
|
|
|
|
2013-10-08 20:38:10 +02:00
|
|
|
For nestable objects, a count can be used in order to specify which surrounding
|
|
|
|
level to select.
|
|
|
|
|
2012-02-10 15:18:17 +01:00
|
|
|
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
|
2013-03-20 19:10:16 +01:00
|
|
|
selections.
|
2012-02-10 15:18:17 +01:00
|
|
|
|
|
|
|
While in insert mode, ctrl-r followed by a register name (one character)
|
|
|
|
inserts it.
|
2011-11-16 21:05:51 +01:00
|
|
|
|
2012-02-10 15:18:17 +01:00
|
|
|
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.
|
2011-11-16 21:05:51 +01:00
|
|
|
|
2012-02-10 15:18:17 +01:00
|
|
|
Registers are lists, instead of simply text in order to interact well with
|
|
|
|
multiselection. Each selection have it's own captures, or yank buffer.
|
2011-11-16 21:05:51 +01:00
|
|
|
|
2013-02-19 19:04:09 +01:00
|
|
|
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.
|
|
|
|
|
2013-04-02 18:46:33 +02:00
|
|
|
with _alt-*_ you can set the search pattern to the current seletion without
|
|
|
|
kakoune trying to be smart.
|
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
Basic Commands
|
|
|
|
--------------
|
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
Commands are entered using +:+.
|
2012-08-08 00:11:36 +02:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
* +e[dit] <filename> [<line> [<column>]]+: open buffer on file, go to given
|
2012-08-08 00:11:36 +02:00
|
|
|
line and column. If file is already opened, just switch to this file.
|
|
|
|
use edit! to force reloading.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +w[rite] [<filename>]+: write buffer to <filename> or use it's name if
|
2012-08-08 00:11:36 +02:00
|
|
|
filename is not given.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +q[uit]+: exit Kakoune, use quit! to force quitting even if there is some
|
2012-08-08 00:11:36 +02:00
|
|
|
unsaved buffers remaining.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +wq+: write current buffer and quit
|
|
|
|
* +b[uffer] <name>+: switch to buffer <name>
|
2013-01-03 14:01:48 +01:00
|
|
|
* +d[el]b[uf] [<name>]+: delete the buffer <name>, use d[el]b[uf]! to force
|
|
|
|
deleting a modified buffer.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +source <filename>+: execute commands in <filename>
|
|
|
|
* +runtime <filename>+: execute commands in <filename>, <filename>
|
2012-08-08 00:11:36 +02:00
|
|
|
is relative to kak executable path.
|
2013-04-22 13:48:18 +02:00
|
|
|
* +nameclient <name>+: set current client name
|
|
|
|
* +namebuf <name>+: set current buffer name
|
2013-01-03 14:01:48 +01:00
|
|
|
* +exec [-client <name>] <keys>+: execute <keys> as if pressed in normal mode.
|
|
|
|
if client if specified, exec keys in the named client context.
|
|
|
|
* +eval [-client <name>] <command>+: execute <command> as if entered in command line
|
|
|
|
if client if specified, exec command in the named client context.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +echo <text>+: show <text> in status line
|
2013-03-14 14:11:06 +01:00
|
|
|
* +name <name>+: sets current client name to name
|
2013-01-03 18:52:07 +01:00
|
|
|
* +nop+: does nothing, but as with every other commands, arguments may be
|
|
|
|
evaluated. So nop can be used for example to execute a shell command
|
|
|
|
while being sure that it's output will not be interpreted by kak.
|
2013-01-03 18:57:30 +01:00
|
|
|
+:%sh{ echo echo tchou }+ will echo tchou in kakoune, whereas
|
|
|
|
+:nop %sh{ echo echo tchou }+ will not, but both will execute the
|
2013-01-03 18:52:07 +01:00
|
|
|
shell command.
|
2012-08-08 00:11:36 +02:00
|
|
|
|
|
|
|
String syntax
|
|
|
|
-------------
|
|
|
|
|
|
|
|
When entering a command, parameters are separated by whitespace (shell like),
|
|
|
|
if you want to give parameters with spaces, you should quote them.
|
|
|
|
|
|
|
|
Kakoune support three string syntax:
|
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
* +"strings" and \'strings\'+: classic strings, use \' or \" to escape the
|
2013-06-27 20:07:26 +02:00
|
|
|
separator.
|
2012-08-08 00:11:36 +02:00
|
|
|
|
2013-02-19 19:04:09 +01:00
|
|
|
* +%\{strings\}+: these strings are very useful when entering commands
|
2012-09-12 19:28:38 +02:00
|
|
|
|
|
|
|
- the '{' and '}' delimiter are configurable: you can use any non
|
|
|
|
alphanumeric character. like %[string], %<string>, %(string), %~string~
|
|
|
|
or %!string!...
|
2013-06-27 20:07:26 +02:00
|
|
|
- if the character following the % is one of {[(<, then the closing one is
|
|
|
|
the matching }])> and the delimiters are not escapable but are nestable.
|
|
|
|
for example +%{ roger {}; }+ is a valid string, +%{ marcel \}+ as well.
|
2012-08-08 00:11:36 +02:00
|
|
|
|
2013-07-24 23:16:32 +02:00
|
|
|
Options
|
|
|
|
-------
|
|
|
|
|
|
|
|
For user configuration, Kakoune supports options.
|
|
|
|
|
|
|
|
Options are typed, their type can be
|
|
|
|
|
|
|
|
* +int+: an integer number
|
|
|
|
* +bool+: a boolean value, +yes/true+ or +no/false+
|
2013-10-26 01:51:19 +02:00
|
|
|
* +yesnoask+: similar to a boolean, but the additional
|
|
|
|
value +ask+ is supported.
|
2013-07-24 23:16:32 +02:00
|
|
|
* +str+: a string, some freeform text
|
|
|
|
* +regex+: as a string but the +set+ commands will complain
|
|
|
|
if the entered text is not a valid regex.
|
|
|
|
* +{int,str}-list+: a list, elements are separated by a colon (:)
|
|
|
|
if an element needs to contain a colon, it can be escaped with a
|
|
|
|
backslash.
|
|
|
|
|
|
|
|
Options value can be changed using the +set+ commands:
|
|
|
|
|
|
|
|
--------------------------------------------------------------
|
|
|
|
:set{b,w,g} <option> <value> # buffer, window, or global scope
|
|
|
|
--------------------------------------------------------------
|
|
|
|
|
|
|
|
Option values can be different by scope, an option can have a global
|
|
|
|
value, a buffer value and a window value. The effective value of an
|
|
|
|
option depends on the current context. If we have a window in the
|
|
|
|
context (interactive edition for example), then the window value
|
|
|
|
(if any) is used, if not we try the buffer value (if we have a buffer
|
|
|
|
in the context), and if not we use the global value.
|
|
|
|
|
|
|
|
That means that two windows on the same buffer can use different options
|
|
|
|
(like different filetype, or different tabstop). However some options
|
|
|
|
might end up ignored if their scope is not in the command context:
|
|
|
|
|
|
|
|
Writing a file never uses the window options for example, so any
|
|
|
|
options related to writing wont be taken into account if set in the
|
|
|
|
window scope (+BOM+ or +eolformat+ for example).
|
|
|
|
|
|
|
|
New options can be declared using the +decl+ command:
|
|
|
|
|
|
|
|
-----------------------------
|
|
|
|
:decl <type> <name> [<value>]
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
Some options are built in kakoune, and can be used to control it's behaviour:
|
|
|
|
|
|
|
|
* +tabstop+ _int_: width of a tab character.
|
2013-10-14 14:47:43 +02:00
|
|
|
* +indentwidth+ _int_: width (in spaces) used for indentation.
|
|
|
|
0 means a tab character.
|
2013-07-24 23:16:32 +02:00
|
|
|
* +scrolloff+ _int_: number of lines to keep visible above/below
|
|
|
|
the cursor when scrolling.
|
|
|
|
* +eolformat+ _string_ ('lf' or 'crlf'): the format of end of lines when
|
|
|
|
writing a buffer, this is autodetected on load.
|
|
|
|
* +BOM+ _string_ ("no" or "utf-8"): define if the file should be written
|
|
|
|
with an unicode byte order mark.
|
|
|
|
* +shell+ _string_ ("bash" by default): what command to run to evaluate
|
|
|
|
shell commands.
|
|
|
|
* +complete_prefix+ _bool_: when completing in command line, and multiple
|
|
|
|
candidates exist, enable completion with common prefix.
|
|
|
|
* +incsearch+ _bool_: execute search as it is typed
|
|
|
|
* +autoinfo+ _bool_: display automatic information box for certain commands.
|
|
|
|
* +ignored_files+ _regex_: filenames matching this regex wont be considered
|
|
|
|
as candidates on filename completion (except if the text being completed
|
|
|
|
already matches it).
|
|
|
|
* +filetype+ _str_: arbitrary string defining the type of the file
|
|
|
|
filetype dependant actions should hook on this option changing for
|
|
|
|
activation/deactivation.
|
|
|
|
* +completions+ _str-list_: option used for external completion, the
|
|
|
|
first string should follow the format
|
|
|
|
_<line>.<column>[+<length>]@<timestamp>_ to define where the completion
|
|
|
|
apply in the buffer, and the other strings are the candidates.
|
|
|
|
* +path+ _str-list_: directories to search for gf command.
|
|
|
|
* +completers+ _str-list_: completion systems to use for insert mode
|
|
|
|
completion. Support +option+ which use the +completions+ option, and
|
|
|
|
+word=all+ or +word=buffer+ which complete using words in all buffers
|
|
|
|
(+word=all+) or only the current one (+word=buffer+)
|
|
|
|
* +insert_hide_sel+ _bool_: hide the selection (except the last
|
|
|
|
element) in insert mode
|
2013-10-26 01:51:19 +02:00
|
|
|
* +autoreload+ _yesnoask_: auto reload the buffers when an external
|
|
|
|
modification is detected.
|
2013-07-24 23:16:32 +02:00
|
|
|
|
2013-08-04 19:34:08 +02:00
|
|
|
Insert mode completion
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Kakoune can propose completions while inserting text, the +completers+ option
|
|
|
|
control automatic completion, which kicks in when a certain idle timeout is
|
|
|
|
reached (100 milliseconds). Insert mode completion can be explicitely triggered
|
|
|
|
using *control-x*, followed, by:
|
|
|
|
|
|
|
|
* *f* : filename completion
|
|
|
|
* *w* : buffer word completion
|
|
|
|
* *o* : option based completion
|
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
Highlighters
|
|
|
|
------------
|
2011-11-08 15:30:10 +01:00
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
Manipulation of the displayed text is done through highlighters, which can be added
|
2012-09-12 19:28:38 +02:00
|
|
|
or removed with the command
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
-----------------------------------------------------
|
|
|
|
:addhl <highlighter_name> <highlighter_parameters...>
|
|
|
|
-----------------------------------------------------
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
and
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
----------------------
|
|
|
|
:rmhl <highlighter_id>
|
|
|
|
----------------------
|
2011-11-08 15:30:10 +01:00
|
|
|
|
2011-11-29 23:37:20 +01:00
|
|
|
existing highlighters are:
|
2011-11-08 15:30:10 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
* +number_lines+: show line numbers
|
2013-03-14 14:11:06 +01:00
|
|
|
* +group <group_name>+: highlighter group, containing other highlighters.
|
|
|
|
useful when multiple highlighters work together and need to be
|
|
|
|
removed as one. Adding and removing from a group can be done using
|
|
|
|
`:addhl -group <group> <highlighter_name> <highlighter_parameters...>`
|
|
|
|
`:rmhl -group <group> <highlighter_name>`
|
|
|
|
* +regex <ex> <color>...+: highlight a regex, takes the regex as first parameter,
|
|
|
|
followed by any number of color parameters. color format is:
|
|
|
|
<capture_id>:<fg_color>[,<bg_color>]
|
|
|
|
For example: `:addhl regex //(\h+TODO:)?[^\n]+ 0:cyan 1:yellow,red`
|
|
|
|
will highlight C++ style comments in cyan, with an eventual 'TODO:' in
|
|
|
|
yellow on red background.
|
|
|
|
* +search <color>+: highlight every matches to the current search pattern. takes
|
|
|
|
one parameter for the color to apply to highlighted elements.
|
|
|
|
* +flag_lines <flag> <option_name>+: add a column in front of text, and display the
|
|
|
|
given flag in it for everly lines contained in the int-list option named
|
|
|
|
<option_name>.
|
2011-11-26 20:19:08 +01:00
|
|
|
|
2011-12-02 15:30:10 +01:00
|
|
|
Filters
|
|
|
|
-------
|
|
|
|
|
|
|
|
Filters can be installed to interact with buffer modifications. They can be
|
2012-09-12 19:28:38 +02:00
|
|
|
added or removed with
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
-----------------------------------------------
|
|
|
|
:addfilter <filter_name> <filter_parameters...>
|
|
|
|
-----------------------------------------------
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
and
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
---------------------
|
2011-12-02 15:30:10 +01:00
|
|
|
:rmfilter <filter_id>
|
2012-09-12 19:28:38 +02:00
|
|
|
---------------------
|
2011-12-02 15:30:10 +01:00
|
|
|
|
|
|
|
exisiting filters are:
|
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
* +preserve_indent+: insert previous line indent when inserting a newline
|
|
|
|
* +cleanup_whitespaces+: remove trailing whitespaces on the previous line
|
2013-03-14 14:11:06 +01:00
|
|
|
when inserting an end-of-line.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +expand_tabulations+: insert spaces instead of tab characters
|
2013-03-14 14:11:06 +01:00
|
|
|
* +regex <line_regex> <insert_regex> <replacement>+: when the current line regex
|
|
|
|
and inserted text regex matches, replace insereted text with the
|
|
|
|
replacement text. Capture groups are available through $[0-9] escape
|
|
|
|
sequence, and cursor position can be specified with $c.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +group+: same as highlighters group
|
2011-12-02 15:30:10 +01:00
|
|
|
|
2011-11-26 20:19:08 +01:00
|
|
|
Hooks
|
|
|
|
-----
|
|
|
|
|
|
|
|
commands can be registred to be executed when certain events arise.
|
|
|
|
to register a hook, use the hook command.
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
------------------------------------------------------
|
2012-08-08 00:11:36 +02:00
|
|
|
:hook <scope> <hook_name> <filtering_regex> <commands>
|
2012-09-12 19:28:38 +02:00
|
|
|
------------------------------------------------------
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2013-10-26 01:51:19 +02:00
|
|
|
<scope> can be either global, buffer or window (or any of their prefixes),
|
|
|
|
the scope are hierarchical, meaning that a Window calling a hook will
|
|
|
|
execute it's own, the buffer ones and the global ones.
|
2011-11-26 20:19:08 +01:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
<command> is a string containing the commands to execute when the hook is
|
|
|
|
called.
|
|
|
|
|
2012-01-25 22:26:41 +01:00
|
|
|
for example, to automatically use line numbering with .cc files,
|
2011-11-26 20:19:08 +01:00
|
|
|
use the following command:
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
-----------------------------------------------------
|
2012-08-08 00:11:36 +02:00
|
|
|
:hook global WinCreate .*\.cc %{ addhl number_lines }
|
2012-09-12 19:28:38 +02:00
|
|
|
-----------------------------------------------------
|
2012-01-25 22:26:41 +01:00
|
|
|
|
2013-03-20 19:10:16 +01:00
|
|
|
existing hooks are:
|
|
|
|
|
|
|
|
* +NormalIdle+: A certain duration has passed since last key was pressed in
|
|
|
|
normal mode.
|
|
|
|
* +NormalBegin+: Entering normal mode
|
|
|
|
* +NormalEnd+: Leaving normal mode
|
|
|
|
* +NormalKey+: A key is received in normal mode, the key is used for filtering
|
|
|
|
* +InsertIdle+: A certain duration has passed since last key was pressed in
|
|
|
|
insert mode.
|
|
|
|
* +InsertBegin+: Entering insert mode
|
|
|
|
* +InsertEnd+: Leaving insert mode
|
|
|
|
* +InsertKey+: A key is received in insert mode, the key is used for filtering
|
|
|
|
* +InsertMove+: The cursor moved (without inserting) in insert mode, the key
|
|
|
|
that triggered the move is used for filtering
|
2013-03-22 13:41:48 +01:00
|
|
|
* +WinCreate+: A window was created, the filtering text is the buffer name
|
|
|
|
* +WinDisplay+: A window was bound a client, the filtering text is the buffer
|
|
|
|
name
|
2013-03-20 19:10:16 +01:00
|
|
|
* +WinSetOption+: An option was set in a window context, the filtering text
|
|
|
|
is '<option_name>=<new_value>'
|
|
|
|
* +BufNew+: A buffer for a new file has been created, filename is used for
|
|
|
|
filtering
|
|
|
|
* +BufOpen+: A buffer for an existing file has been created, filename is
|
|
|
|
used for filtering
|
|
|
|
* +BufCreate+: A buffer has been created, filename is used for filtering
|
|
|
|
* +RuntimeError+: an error was encountered while executing an user command
|
|
|
|
the error message is used for filtering
|
2013-04-19 13:45:44 +02:00
|
|
|
* +KakBegin+: Kakoune started, this is called just after reading the user
|
|
|
|
configuration files
|
|
|
|
* +KakEnd+: Kakoune is quitting.
|
2013-03-20 19:10:16 +01:00
|
|
|
|
|
|
|
when not specified, the filtering text is an empty string.
|
|
|
|
|
2013-10-26 01:51:19 +02:00
|
|
|
Key Mapping
|
|
|
|
-----------
|
|
|
|
|
|
|
|
You can redefine keys meaning using the map command
|
|
|
|
|
|
|
|
------------------------------------------------------
|
|
|
|
:map <scope> <mode> <key> <keys>
|
|
|
|
------------------------------------------------------
|
|
|
|
|
|
|
|
with +scope+ being one of +global, buffer or window+ (or any prefix),
|
|
|
|
mode being +insert, normal, prompt or menu+ (or any prefix), +key+ being
|
|
|
|
a single key name and +keys+ a list of keys.
|
|
|
|
|
2013-04-01 15:55:33 +02:00
|
|
|
Color Aliases
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Colorspec takes the form <fg_color>[,<bg_color>], they can be named using the
|
|
|
|
following command.
|
|
|
|
|
|
|
|
--------------------------
|
|
|
|
:colalias <name> <colspec>
|
|
|
|
--------------------------
|
|
|
|
|
|
|
|
note that colspec can itself be a color alias.
|
|
|
|
|
|
|
|
Using color alias instead of colorspec permits to change the effective colors
|
|
|
|
afterward.
|
|
|
|
|
|
|
|
there are some builtins color aliases:
|
|
|
|
|
|
|
|
* +PrimarySelection+: main selection color for every selected character except
|
|
|
|
the last one
|
|
|
|
* +SecondarySelection+: secondary selection color for every selected character
|
|
|
|
except the last one
|
|
|
|
* +PrimaryCursor+: last character of the primary selection
|
|
|
|
* +SecondaryCursor+: last character of the secondary selection
|
|
|
|
* +LineNumbers+: colors used by the number_lines highlighter
|
2013-04-04 13:53:47 +02:00
|
|
|
* +MenuForeground+: colors for the selected element in menus
|
|
|
|
* +MenuBackground+: colors for the not selected elements in menus
|
2013-04-04 18:50:00 +02:00
|
|
|
* +Information+: colors the informations windows and information messages
|
|
|
|
* +Error+: colors of error messages
|
|
|
|
* +StatusLine+: colors used for the status line
|
|
|
|
* +StatusCursor+: colors used for the status line cursor
|
2013-04-04 19:03:59 +02:00
|
|
|
* +Prompt+: colors used prompt displayed on the status line
|
2013-04-01 15:55:33 +02:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
Shell expansion
|
2012-05-29 13:32:29 +02:00
|
|
|
---------------
|
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
A special string syntax is supported which replace it's content with the
|
|
|
|
output of the shell commands in it, it is similar to the shell $(...)
|
|
|
|
syntax and is evaluated only when needed.
|
|
|
|
for example: %sh{ ls } is replaced with the output of the ls command.
|
|
|
|
|
|
|
|
Some of kakoune state is available through environment variables:
|
|
|
|
|
2013-03-20 19:10:16 +01:00
|
|
|
* +kak_selection+: content of the main selection
|
2013-03-21 19:10:18 +01:00
|
|
|
* +kak_selections+: content of the selection separated by commas
|
2012-09-12 19:28:38 +02:00
|
|
|
* +kak_bufname+: name of the current buffer
|
2013-03-14 14:11:06 +01:00
|
|
|
* +kak_timestamp+: timestamp of the current buffer, the timestamp is an
|
|
|
|
integer value which is incremented each time the buffer is modified.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +kak_runtime+: directory containing the kak binary
|
2013-03-14 14:11:06 +01:00
|
|
|
* +kak_opt_<name>+: value of option <name>
|
|
|
|
* +kak_reg_<r>+: value of register <r>
|
2013-01-07 14:25:19 +01:00
|
|
|
* +kak_socket+: filename of session socket (/tmp/kak-<session>)
|
|
|
|
* +kak_client+: name of current client
|
2013-03-20 19:10:16 +01:00
|
|
|
* +kak_cursor_line+: line of the end of the main selection
|
|
|
|
* +kak_cursor_cursor+: column of the end of the main selection
|
|
|
|
* +kak_hook_param+: filtering text passed to the currently executing hook
|
2012-08-08 00:11:36 +02:00
|
|
|
|
|
|
|
for example you can print informations on the current file in the status
|
|
|
|
line using:
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
-------------------------------
|
2012-08-08 00:11:36 +02:00
|
|
|
:echo %sh{ ls -l $kak_bufname }
|
2012-09-12 19:28:38 +02:00
|
|
|
-------------------------------
|
2012-08-08 00:11:36 +02:00
|
|
|
|
2012-08-11 12:22:21 +02:00
|
|
|
Register and Option expansion
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
Similar to shell expansion, register contents and options values can be
|
|
|
|
accessed through %reg{<register>} and %opt{<option>} syntax.
|
|
|
|
|
|
|
|
for example you can display last search pattern with
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
-------------
|
2012-08-11 12:22:21 +02:00
|
|
|
:echo %reg{/}
|
2012-09-12 19:28:38 +02:00
|
|
|
-------------
|
2012-08-11 12:22:21 +02:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
Defining Commands
|
|
|
|
-----------------
|
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
new commands can be defined using the +def+ command.
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
------------------------------
|
2012-08-08 00:11:36 +02:00
|
|
|
:def <command_name> <commands>
|
2012-09-12 19:28:38 +02:00
|
|
|
------------------------------
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
<commands> is a string containing the commands to execute
|
|
|
|
|
|
|
|
def can also takes some flags:
|
2012-09-12 19:28:38 +02:00
|
|
|
|
|
|
|
* +-env-params+: pass parameters given to commands in the environement as
|
2012-08-08 00:11:36 +02:00
|
|
|
kak_paramN with N the parameter number
|
2012-09-12 19:28:38 +02:00
|
|
|
* +-shell-params+: pass parameters given to commands as positional parameters
|
2012-09-11 13:54:43 +02:00
|
|
|
to any shell expansions used in the command.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +-file-completion+: try file completion on any parameter passed
|
2012-09-12 14:21:42 +02:00
|
|
|
to this command
|
2012-09-12 19:28:38 +02:00
|
|
|
* +-shell-completion+: following string is a shell command which takes
|
2012-09-11 13:54:43 +02:00
|
|
|
parameters as positional params and output one
|
2012-08-08 00:11:36 +02:00
|
|
|
completion candidate per line.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +-allow-override+: allow the new command to replace an exisiting one
|
2012-08-08 00:11:36 +02:00
|
|
|
with the same name.
|
|
|
|
|
|
|
|
Using shell expansion permits to define complex commands or to access
|
|
|
|
kakoune state:
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
------------------------------------------------------
|
2012-08-08 00:11:36 +02:00
|
|
|
:def print_selection %{ echo %sh{ ${kak_selection} } }
|
2012-09-12 19:28:38 +02:00
|
|
|
------------------------------------------------------
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
Some helper commands can be used to define composite commands:
|
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
* +menu <label1> <commands1> <label2> <commands2>...+: display a menu using
|
2012-08-08 00:11:36 +02:00
|
|
|
labels, the selected label's commands are executed.
|
2013-01-03 14:01:48 +01:00
|
|
|
+menu+ can take a -auto-single argument, to automatically run commands
|
|
|
|
when only one choice is provided. and a -select-cmds argument, in which
|
|
|
|
case menu takes three argument per item, the last one being a command
|
|
|
|
to execute when the item is selected (but not validated).
|
2013-01-29 18:56:14 +01:00
|
|
|
* +info <text>+: display text in an information box, at can take a -anchor
|
|
|
|
option, which accepts +left+, +right+ and +cursor+ as value, in order to
|
2013-03-20 19:10:16 +01:00
|
|
|
specify where the info box should be anchored relative to the main selection.
|
2012-09-12 19:28:38 +02:00
|
|
|
* +try <commands> catch <on_error_commands>+: prevent an error in <commands>
|
2012-08-08 00:11:36 +02:00
|
|
|
from aborting the whole commands execution, execute <on_error_commands>
|
|
|
|
instead.
|
2013-03-18 22:43:48 +01:00
|
|
|
* +reg <name> <content>+: set register <name> to <content>
|
2012-05-29 13:32:29 +02:00
|
|
|
|
2012-08-08 00:11:36 +02:00
|
|
|
Note that these commands are available in interactive command mode, but are
|
|
|
|
not that useful in this context.
|
2012-09-11 13:54:43 +02:00
|
|
|
|
|
|
|
FIFO Buffer
|
|
|
|
-----------
|
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
the +edit+ command can take a -fifo parameter:
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
-----------------------------------
|
2012-09-11 13:54:43 +02:00
|
|
|
:edit -fifo <filename> <buffername>
|
2012-09-12 19:28:38 +02:00
|
|
|
-----------------------------------
|
2013-01-03 18:57:30 +01:00
|
|
|
|
2012-09-12 19:28:38 +02:00
|
|
|
in this case, a buffer named +<buffername>+ is created which reads its content
|
2012-09-12 19:54:46 +02:00
|
|
|
from fifo +<filename>+. When the fifo is written to, the buffer is automatically
|
2012-09-11 13:54:43 +02:00
|
|
|
updated.
|
2012-09-12 19:54:46 +02:00
|
|
|
|
2012-09-11 13:54:43 +02:00
|
|
|
This is very useful for running some commands asynchronously while displaying
|
|
|
|
their result in a buffer. See rc/make.kak and rc/grep.kak for examples.
|
2012-09-12 14:21:08 +02:00
|
|
|
|
2012-09-12 19:54:46 +02:00
|
|
|
When the buffer is deleted, the fifo will be closed, so any program writing
|
|
|
|
to it will receive SIGPIPE. This is usefull as it permits to stop the writing
|
|
|
|
program when the buffer is deleted.
|
|
|
|
|
2012-11-09 18:30:24 +01:00
|
|
|
Menus
|
|
|
|
-----
|
|
|
|
|
|
|
|
When a menu is displayed, you can use *j*, *control-n* or *tab* to select the next
|
|
|
|
entry, and *k*, *control-p* or *shift-tab* to select the previous one.
|
|
|
|
|
|
|
|
Using the */* key, you can enter some regex in order to restrict available choices
|
|
|
|
to the matching ones.
|
|
|
|
|
2012-09-12 14:21:08 +02:00
|
|
|
Kakrc
|
|
|
|
-----
|
|
|
|
|
|
|
|
The kakrc file next to the kak binary (in the src directory for the moment)
|
|
|
|
is a list of kak commands to be executed at startup.
|
|
|
|
|
|
|
|
The current behaviour is to execute local user commands in the file
|
2012-09-12 19:28:38 +02:00
|
|
|
$HOME/.config/kak/kakrc and in all files in $HOME/.config/kak/autoload
|
|
|
|
directory
|
2012-09-12 14:21:08 +02:00
|
|
|
|
|
|
|
Place links to the files in src/rc/ in your autoload directory in order to
|
|
|
|
execute them on startup, or use the runtime command (which sources relative
|
|
|
|
to the kak binary) to load them on demand.
|
|
|
|
|
|
|
|
Existing commands files are:
|
2012-09-12 19:28:38 +02:00
|
|
|
|
2012-09-12 14:21:08 +02:00
|
|
|
* *rc/kakrc.kak*: provides kak commands files autodetection and highlighting
|
2012-09-12 19:28:38 +02:00
|
|
|
* *rc/cpp.kak*: provides c/c++ files autodetection and highlighting and the +alt+
|
2012-09-12 14:21:08 +02:00
|
|
|
command for switching from c/cpp file to h/hpp one.
|
|
|
|
* *rc/asciidoc.kak*: provides asciidoc files autodetection and highlighting
|
|
|
|
* *rc/diff.kak*: provides patches/diff files autodetection and highlighting
|
|
|
|
* *rc/git.kak*: provides various git format highlighting (commit message editing,
|
|
|
|
interactive rebase)
|
2013-04-18 19:12:41 +02:00
|
|
|
* *rc/git-tools.kak*: provides some git integration, like +git-blame+, +git-show+
|
|
|
|
or +git-diff-show+
|
2012-09-12 19:28:38 +02:00
|
|
|
* *rc/make.kak*: provides the +make+ and +errjump+ commands along with highlighting
|
2012-09-12 14:21:08 +02:00
|
|
|
for compiler output.
|
2013-04-18 19:12:41 +02:00
|
|
|
* *rc/man.kak*: provides the +man+ command
|
2012-09-12 19:28:38 +02:00
|
|
|
* *rc/grep.kak*: provides the +grep+ and +gjump+ commands along with highlighting
|
2012-09-12 14:21:08 +02:00
|
|
|
for grep output.
|
2012-09-12 19:28:38 +02:00
|
|
|
* *rc/global.kak*: provides the +tag+ command to jump on a tag definition using
|
2012-09-12 14:21:08 +02:00
|
|
|
gnu global tagging system.
|
2012-11-09 18:30:24 +01:00
|
|
|
* *rc/ctags.kak*: provides the +tag+ command to jump on a tag definition using
|
|
|
|
exuberant ctags files, this script requires the *readtags* binary, available
|
|
|
|
in the exuberant ctags package but not installed by default.
|
2012-12-26 17:52:17 +01:00
|
|
|
* *rc/client.kak*: provides the +new+ command to launch a new client on the current
|
|
|
|
session, if tmux is detected, launch the client in a new tmux split, else
|
|
|
|
launch in a new terminal emulator.
|
2013-03-15 00:52:07 +01:00
|
|
|
* *rc/clang.kak*: provides the +clang-enable-autocomplete+ command for C/C++
|
|
|
|
insert mode completion support. This needs uses clang++ compiler.
|
2012-12-26 17:52:17 +01:00
|
|
|
|
2013-04-18 19:12:41 +02:00
|
|
|
Certain command files defines options, such as +grepcmd+ (for :grep) +makecmd+
|
|
|
|
(for :make) or +termcmd+ (for :new).
|
|
|
|
|
|
|
|
Some options are shared with commands. grep and make honor the +toolsclient+ option,
|
|
|
|
if specified, to open their buffer in it rather than the current client. man honor
|
|
|
|
the +docsclient+ option for the same purpose.
|