This commit is contained in:
Maxime Coste 2021-10-09 15:44:43 +11:00
commit b609adc84c
3 changed files with 3 additions and 3 deletions

View File

@ -962,7 +962,7 @@ const CommandDesc arrange_buffers_cmd = {
const CommandDesc add_highlighter_cmd = { const CommandDesc add_highlighter_cmd = {
"add-highlighter", "add-highlighter",
"addhl", "addhl",
"add-highlighter <path>/<name> <type> <type params>...: add an highlighter to the group identified by <path>\n" "add-highlighter <path>/<name> <type> <type params>...: add a highlighter to the group identified by <path>\n"
" <path> is a '/' delimited path or the parent highlighter, starting with either\n" " <path> is a '/' delimited path or the parent highlighter, starting with either\n"
" 'global', 'buffer', 'window' or 'shared', if <name> is empty, it will be autogenerated", " 'global', 'buffer', 'window' or 'shared', if <name> is empty, it will be autogenerated",
ParameterDesc{ ParameterDesc{

View File

@ -28,7 +28,7 @@ enum class HighlightPass
}; };
constexpr bool with_bit_ops(Meta::Type<HighlightPass>) { return true; } constexpr bool with_bit_ops(Meta::Type<HighlightPass>) { return true; }
// An Highlighter is a function which mutates a DisplayBuffer in order to // A Highlighter is a function which mutates a DisplayBuffer in order to
// change the visual representation of a file. It could be changing text // change the visual representation of a file. It could be changing text
// color, adding information text (line numbering for example) or replacing // color, adding information text (line numbering for example) or replacing
// buffer content (folding for example) // buffer content (folding for example)

View File

@ -347,7 +347,7 @@ void Window::clear_display_buffer()
void Window::on_option_changed(const Option& option) void Window::on_option_changed(const Option& option)
{ {
run_hook_in_own_context(Hook::WinSetOption, format("{}={}", option.name(), option.get_desc_string())); run_hook_in_own_context(Hook::WinSetOption, format("{}={}", option.name(), option.get_desc_string()));
// an highlighter might depend on the option, so we need to redraw // a highlighter might depend on the option, so we need to redraw
force_redraw(); force_redraw();
} }