2016-02-03 18:15:35 +01:00
|
|
|
|
KAKOUNE(1)
|
|
|
|
|
==========
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
|
NAME
|
|
|
|
|
----
|
|
|
|
|
expansions - a
|
|
|
|
|
|
|
|
|
|
Strings
|
|
|
|
|
-------
|
|
|
|
|
\'strings'::
|
2016-03-12 10:13:49 +01:00
|
|
|
|
uninterpreted strings, use a backslash (\') to escape the separator
|
2016-02-03 18:15:35 +01:00
|
|
|
|
"strings"::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
expanded strings, % strings (c.f. next section) contained are expended,
|
|
|
|
|
use a backslash (\\%) to escape the separator
|
2016-02-03 18:15:35 +01:00
|
|
|
|
%\{strings\}::
|
|
|
|
|
these strings are very useful when entering commands
|
|
|
|
|
+
|
2016-02-10 22:03:49 +01:00
|
|
|
|
* the '{' and '}' delimiters are configurable, you can use any non
|
|
|
|
|
alphanumeric character
|
2016-02-03 18:15:35 +01:00
|
|
|
|
+
|
|
|
|
|
----------------------------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
e.g. %[string], %<string>, %(string), %~string~, %!string!
|
2016-02-03 18:15:35 +01:00
|
|
|
|
----------------------------------------------------------
|
2016-02-10 22:03:49 +01:00
|
|
|
|
* if the character following '%' is one of '{[(<', then the closing
|
|
|
|
|
one is the matching '}])>' and the delimiters are not escapable but
|
|
|
|
|
are nestable
|
2016-02-03 18:15:35 +01:00
|
|
|
|
+
|
|
|
|
|
-----------------------------------------------------------
|
|
|
|
|
e.g. %{ roger {}; } is a valid string, %{ marcel \} as well
|
|
|
|
|
-----------------------------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
|
Typed expansions
|
|
|
|
|
----------------
|
|
|
|
|
*sh*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
shell expansion, similar to posix shell '$(...)' construct (c.f. next
|
|
|
|
|
section)
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*reg*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
register expansion, will be replaced by the content of the given
|
|
|
|
|
register
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*opt*::
|
|
|
|
|
option expansion, will be replaced with the value of the given option
|
|
|
|
|
*val*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
value expansion, gives access to the environment variable available
|
|
|
|
|
to the Shell expansion. The 'kak_' prefix is not used there
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*arg*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
argument expansion, gives access to the arguments of the current
|
|
|
|
|
command, the content can be a number, or @ for all arguments
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
|
Shell expansions
|
|
|
|
|
----------------
|
2016-02-10 22:03:49 +01:00
|
|
|
|
The '%sh{...}' expansion replaces its content with the output of the
|
|
|
|
|
shell commands in it. The following environment variables are used to pass
|
|
|
|
|
informations about Kakoune's state:
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_selection*::
|
|
|
|
|
content of the main selection
|
|
|
|
|
*kak_selections*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
content of the selection separated by colons, colons in the selection
|
2016-04-08 18:00:24 +02:00
|
|
|
|
contents are escaped with a backslash
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_selection_desc*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
range of the main selection, represented as anchor,cursor; anchor
|
|
|
|
|
and cursor are in this format: line.column
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_selections_desc*::
|
2016-04-08 18:00:24 +02:00
|
|
|
|
range of the selections separated by colons
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_bufname*::
|
|
|
|
|
name of the current buffer
|
|
|
|
|
*kak_buffile*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
full path of the file or same as kak_bufname when there’s no
|
|
|
|
|
associated file
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_buflist*::
|
2016-04-08 18:00:24 +02:00
|
|
|
|
the current buffer list, each buffer separated by a colon
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_timestamp*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
timestamp of the current buffer, the timestamp is an integer value
|
|
|
|
|
which is incremented each time the buffer is modified
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_runtime*::
|
|
|
|
|
directory containing the kak binary
|
2016-10-26 12:33:09 +02:00
|
|
|
|
*kak_count*::
|
|
|
|
|
count parameter passed to the command
|
2016-02-03 18:15:35 +01:00
|
|
|
|
*kak_opt_<name>*::
|
|
|
|
|
value of option *name*
|
|
|
|
|
*kak_reg_<r>*::
|
|
|
|
|
value of register *r*
|
|
|
|
|
*kak_socket*::
|
|
|
|
|
filename of session socket ('/tmp/kak-<session>')
|
|
|
|
|
*kak_session*::
|
|
|
|
|
name of the current session
|
|
|
|
|
*kak_client*::
|
|
|
|
|
name of current client
|
|
|
|
|
*kak_cursor_line*::
|
|
|
|
|
line of the end of the main selection
|
|
|
|
|
*kak_cursor_column*::
|
|
|
|
|
column of the end of the main selection (in byte)
|
|
|
|
|
*kak_cursor_char_column*::
|
|
|
|
|
column of the end of the main selection (in character)
|
|
|
|
|
*kak_window_width*::
|
|
|
|
|
width of the current kakoune window
|
|
|
|
|
*kak_window_height*::
|
|
|
|
|
height of the current kakoune window
|
|
|
|
|
*kak_hook_param*::
|
|
|
|
|
filtering text passed to the currently executing hook
|
|
|
|
|
*kak_client_env_<name>*::
|
2016-02-10 22:03:49 +01:00
|
|
|
|
value of the *name* variable in the client environment
|
|
|
|
|
(e.g. *$kak_client_env_SHELL* is the SHELL variable)
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
|
Note that in order for Kakoune to pass a value in the environment, the
|
|
|
|
|
variable has to be spelled out within the body of the expansion
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
|
Markup strings
|
|
|
|
|
--------------
|
2016-02-10 22:03:49 +01:00
|
|
|
|
In certain contexts, Kakoune can take a markup string, which is a string
|
|
|
|
|
containing formatting informations. In these strings, the {facename}
|
|
|
|
|
syntax will enable the face facename until another face gets activated,
|
|
|
|
|
or the end of the string is reached.
|
|
|
|
|
|
|
|
|
|
Literal '{' characters shall be written '\{', and a literal backslash ('\')
|
2016-04-08 18:00:24 +02:00
|
|
|
|
that precedes a '{' character shall be escaped as well ('\\').
|