From 78cb1f6c79ad4dac4a7e03b30dfd54d714fe670a Mon Sep 17 00:00:00 2001 From: meg <90473723+meg-huggingface@users.noreply.github.com> Date: Wed, 28 Aug 2024 11:17:14 -0700 Subject: [PATCH] Remove extraneous 'vim' word Guessing someone was trying to open vim + there was a global replace, resulting in a lot of 'vim' at the end of many lines. This deletes them. --- doc/syntax.txt | 120 ++++++++++++++++++++++++------------------------- 1 file changed, 60 insertions(+), 60 deletions(-) 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 (?