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
|
|
|
|
----
|
|
|
|
highlighters - a
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
Description
|
|
|
|
-----------
|
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Manipulation of the displayed text is done through highlighters, which can
|
|
|
|
be added or removed with the following commands:
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
-------------------------------------------------------
|
|
|
|
addhl <highlighter_name> <highlighter_parameters> ...
|
|
|
|
-------------------------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
|
|
and
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
-----------------------
|
2016-03-12 10:13:49 +01:00
|
|
|
rmhl <highlighter_id>
|
2016-02-03 18:15:35 +01:00
|
|
|
-----------------------
|
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
*highlighter_id* is a name generated by the highlighter specified with
|
|
|
|
*highlighter_name*, possibly dependent on the parameters. Use command
|
|
|
|
completion in a prompt on the *rmhl* command to see the existing highlighters
|
|
|
|
ids.
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
General highlighters
|
|
|
|
--------------------
|
|
|
|
*regex* <ex> <capture_id>:<face> ...::
|
2016-02-10 22:03:49 +01:00
|
|
|
highlight a regex, takes the regex as first parameter, followed by
|
|
|
|
any number of face parameters. For example:
|
2016-02-03 18:15:35 +01:00
|
|
|
|
2016-03-12 10:13:49 +01:00
|
|
|
-----------------------------------------------------
|
|
|
|
addhl regex //(\hTODO:)?[^\n] 0:cyan 1:yellow,red
|
|
|
|
-----------------------------------------------------
|
2016-02-03 18:15:35 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
will highlight C++ style comments in cyan, with an eventual 'TODO:'
|
|
|
|
in yellow on red background
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
*dynregex*::
|
2016-04-08 18:00:24 +02:00
|
|
|
Similar to regex, but expand (like a command parameter would) the
|
2016-02-10 22:03:49 +01:00
|
|
|
given expression before building a regex from the result
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
*flag_lines* <flag> <option_name>::
|
2016-02-10 22:03:49 +01:00
|
|
|
add a column in front of text, and display the given flag in it for
|
2016-04-08 18:00:24 +02:00
|
|
|
every line contained in the int-list option named <option_name>
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
*show_matching*::
|
2016-02-10 22:03:49 +01:00
|
|
|
highlight matching char of the character under the selections cursor
|
|
|
|
using MatchingChar face
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
*number_lines* [options]::
|
|
|
|
show line numbers, with the following *options*:
|
|
|
|
|
|
|
|
*-relative*:::
|
|
|
|
show line numbers relative to the main cursor line
|
|
|
|
|
|
|
|
*-hlcursor*:::
|
|
|
|
highlight the cursor line with a separate face
|
|
|
|
|
|
|
|
*-separator* <separator text>:::
|
2016-02-10 22:03:49 +01:00
|
|
|
specify a string to separate the line numbers column with
|
|
|
|
the rest of the buffer (default is '|')
|
2016-02-03 18:15:35 +01:00
|
|
|
|
2016-07-19 11:20:42 +02:00
|
|
|
*ranges* <option_name>::
|
|
|
|
use the data in the range-faces option of the given name to highlight
|
|
|
|
the buffer.
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
*fill* <face>::
|
|
|
|
fill using the given *face*, mostly useful with regions highlighters
|
|
|
|
|
|
|
|
Highlighting Groups
|
|
|
|
-------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
The group highlighter is a container for other highlighters. You can add a
|
|
|
|
group to the current window using
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
--------------------
|
|
|
|
addhl group <name>
|
|
|
|
--------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
The *-group* switch of the *addhl* command provides a mean to add highlighters
|
|
|
|
inside this group:
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
----------------------------------------
|
|
|
|
addhl -group <name> <type> <params>...
|
|
|
|
----------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Groups can contain other groups, the *-group* switch can be used to define
|
|
|
|
a path as follows:
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
--------------------------------------------------
|
|
|
|
addhl -group <name> group <subname>
|
|
|
|
addhl -group <name>/<subname> <type> <params>...
|
|
|
|
--------------------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
Regions highlighters
|
|
|
|
--------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
A special highlighter provides a way to segment the buffer into regions,
|
|
|
|
which are to be highlighted differently.
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
*name*::
|
|
|
|
user defined, used to identify the region
|
|
|
|
*opening*::
|
|
|
|
regex that defines the region start text
|
|
|
|
*closing*::
|
|
|
|
regex that defines the region end text
|
|
|
|
*recurse*::
|
2016-02-10 22:03:49 +01:00
|
|
|
regex that defines the text that matches recursively an end token
|
|
|
|
into the region
|
2016-02-03 18:15:35 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
The *recurse* option is useful for regions that can be nested, for example
|
|
|
|
the following contruct:
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
----------
|
|
|
|
%sh{ ... }
|
|
|
|
----------
|
|
|
|
|
|
|
|
accepts nested braces scopes ('{ ... }') so the following string is valid:
|
|
|
|
|
|
|
|
----------------------
|
|
|
|
%sh{ ... { ... } ... }
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
This region can be defined with:
|
|
|
|
|
|
|
|
------------------------
|
|
|
|
shell_expand %sh\{ \} \{
|
|
|
|
------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Regions are used in the regions highlighter which can take any number
|
|
|
|
of regions.
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
The following command:
|
|
|
|
|
|
|
|
-----------------------------------------------------------------------
|
|
|
|
addhl regions <name> <region_name1> <opening1> <closing1> <recurse1>
|
|
|
|
<region_name2> <opening2> <closing2> <recurse2>...
|
|
|
|
-----------------------------------------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
|
|
defines multiple regions in which other highlighters can be added as follows:
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
---------------------------------------
|
|
|
|
addhl -group <name>/<region_name> ...
|
|
|
|
---------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Regions are matched using the left-most rule: the left-most region opening
|
|
|
|
starts a new region. When a region closes, the closest next opening start
|
|
|
|
another region.
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
|
|
That matches the rule governing most programming language parsing.
|
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Regions also supports a *-default <default_region>* switch to define the
|
|
|
|
default region, when no other region matches the current buffer range.
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Most programming languages can then be properly highlighted using a regions
|
|
|
|
highlighter as root:
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
-----------------------------------------------------------------
|
|
|
|
addhl regions -default code <lang> \
|
|
|
|
string <str_opening> <str_closing> <str_recurse> \
|
|
|
|
comment <comment_opening> <comment_closing> <comment_recurse>
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
addhl -group <lang>/code ...
|
|
|
|
addhl -group <lang>/string ...
|
|
|
|
addhl -group <lang>/comment ...
|
|
|
|
-----------------------------------------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
Shared Highlighters
|
|
|
|
-------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
Highlighters are often defined for a specific filetype, and it makes then
|
|
|
|
sense to share the highlighters between all the windows on the same filetypes.
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
|
|
A shared highlighter can be defined with the following command:
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
--------------------------------
|
|
|
|
addhl -group /<group_name> ...
|
|
|
|
--------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
When the group switch values starts with a '/', it references a group in
|
|
|
|
the shared highlighters, rather than the window highlighters.
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-10 22:03:49 +01:00
|
|
|
The common case would be to create a named shared group, and then fill it
|
|
|
|
with highlighters:
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
------------------------------
|
|
|
|
addhl -group / group <name>
|
|
|
|
addhl -group /name regex ...
|
|
|
|
------------------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
|
|
It can then be referenced in a window using the ref highlighter.
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
------------------
|
|
|
|
addhl ref <name>
|
|
|
|
------------------
|
2016-02-02 20:15:12 +01:00
|
|
|
|
|
|
|
The ref can reference any named highlighter in the shared namespace.
|