diff options
| author | Frank LENORMAND <lenormf@gmail.com> | 2018-06-23 08:38:46 +0300 |
|---|---|---|
| committer | Frank LENORMAND <lenormf@gmail.com> | 2020-01-29 20:03:21 +0100 |
| commit | 0c4c7443625aac79811d57409f87d921dd404e85 (patch) | |
| tree | 52a9cf2c3da3c9c5c69d8a7294f5e97f599618dc /colors/reeder.kak | |
| parent | 2749093143fe5cdbda306569bdb88ff8162486e9 (diff) | |
rc: Highlight embedded documentation
This commit adds a `documentation` face to the builtin themes, used
to highlight common documentation syntaxes:
/**
* JavaDoc
*/
/*!
* QtDoc
*/
/// Inline documentation
## Inline documentation
The face is only an alias to the `comment` one for now.
Closes #1944
Diffstat (limited to 'colors/reeder.kak')
| -rw-r--r-- | colors/reeder.kak | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/colors/reeder.kak b/colors/reeder.kak index a4fd06a6..cc174290 100644 --- a/colors/reeder.kak +++ b/colors/reeder.kak @@ -22,18 +22,19 @@ evaluate-commands %sh{ # Base color definitions echo " # then we map them to code - face global value ${orange_light}+b - face global type ${orange} - face global variable default - face global module ${green} - face global function default - face global string ${green} - face global keyword ${brown_dark} - face global operator default - face global attribute ${green} - face global comment ${brown_light} - face global meta ${brown_dark} - face global builtin default+b + face global value ${orange_light}+b + face global type ${orange} + face global variable default + face global module ${green} + face global function default + face global string ${green} + face global keyword ${brown_dark} + face global operator default + face global attribute ${green} + face global comment ${brown_light} + face global documentation comment + face global meta ${brown_dark} + face global builtin default+b # and markup face global title ${orange}+b |
