From f8198b3022ecea707ca595eff88cf45efc0c9566 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 28 Jul 2018 19:33:11 +1000 Subject: [PATCH] Fix specs based highlighter documentation Lists elements are now given as separate arguments rather than as a single ':' separated string. Fixes #2261 --- doc/pages/highlighters.asciidoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/pages/highlighters.asciidoc b/doc/pages/highlighters.asciidoc index acef968d..ea6500cd 100644 --- a/doc/pages/highlighters.asciidoc +++ b/doc/pages/highlighters.asciidoc @@ -121,11 +121,11 @@ and `range-specs`. In this example two words will be added in the gutter: a blue Foo at line 1 and a bold red/yellow Bar on line 3: ----------------------------------------------------------------------- +------------------------------------------------------------------------ declare-option line-specs my_flags -set-option window my_flags "%val{timestamp}:1|Foo:3|{red,yellow+b}Bar" +set-option window my_flags %val{timestamp} '1|Foo' '3|{red,yellow+b}Bar' add-highlighter window/ flag-lines blue my_flags ----------------------------------------------------------------------- +------------------------------------------------------------------------ *ranges* :: use the data in the `range-specs` option of the given name to highlight @@ -135,7 +135,7 @@ add-highlighter window/ flag-lines blue my_flags -------------------------------------------------------- declare-option range-specs my_range -set-option window my_range "%val{timestamp}:1.1,1.3|red" +set-option window my_range %val{timestamp} '1.1,1.3|red' add-highlighter window/ ranges my_range -------------------------------------------------------- @@ -147,7 +147,7 @@ add-highlighter window/ ranges my_range -------------------------------------------------------- declare-option range-specs my_range -set-option window my_range "%val{timestamp}:1.1,1.3|red" +set-option window my_range %val{timestamp} '1.1,1.3|red' add-highlighter window/ replace-ranges my_range --------------------------------------------------------