diff --git a/doc/syntax.txt b/doc/syntax.txt index 6070efd96..afd05d8c9 100644 --- a/doc/syntax.txt +++ b/doc/syntax.txt @@ -31,10 +31,10 @@ x?? zero or one «x», prefer zero x{n,m}? «n» or «n»+1 or ... or «m» «x», prefer fewer x{n,}? «n» or more «x», prefer fewer x{n}? exactly «n» «x» -x{} (== x*) NOT SUPPORTED vim -x{-} (== x*?) NOT SUPPORTED vim -x{-n} (== x{n}?) NOT SUPPORTED vim -x= (== x?) NOT SUPPORTED vim +x{} (== x*) NOT SUPPORTED +x{-} (== x*?) NOT SUPPORTED +x{-n} (== x{n}?) NOT SUPPORTED +x= (== x?) NOT SUPPORTED Implementation restriction: The counting forms «x{n,m}», «x{n,}», and «x{n}» reject forms that create a minimum or maximum repetition count above 1000. @@ -59,8 +59,8 @@ Grouping: (?#text) comment NOT SUPPORTED (?|x|y|z) branch numbering reset NOT SUPPORTED (?>re) possessive match of «re» NOT SUPPORTED -re@> possessive match of «re» NOT SUPPORTED vim -%(re) non-capturing group NOT SUPPORTED vim +re@> possessive match of «re» NOT SUPPORTED +%(re) non-capturing group NOT SUPPORTED Flags: i case-insensitive (default false) @@ -83,21 +83,21 @@ $ at end of text (like «\z» not «\Z») or line («m»=true) (?!re) before text not matching «re» NOT SUPPORTED (?<=re) after text matching «re» NOT SUPPORTED (?