1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-19 16:57:22 +03:00

README: document color aliases

This commit is contained in:
Maxime Coste 2013-04-01 15:55:33 +02:00
parent e070e738f1
commit 136f1a6284

View File

@ -229,8 +229,6 @@ Commands are entered using +:+.
* +set{b,w,g} <option> <value>+: set <option> to <value> in *b*uffer, *w*indow
or *g*lobal scope.
* +name <name>+: sets current client name to name
* +c[ol]a[lias] <name> <colspec>+: define a color alias, so that name can be
used instead of colspec in contexts where a color is needed.
* +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.
@ -376,6 +374,32 @@ existing hooks are:
when not specified, the filtering text is an empty string.
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
Shell expansion
---------------