From 96f90b39d89d836cc06670769c8011f90c2a1754 Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sun, 22 Sep 2024 04:39:07 +0000 Subject: [PATCH 1/4] Fix: Irregular Action Refactoring ( Fixes #235, Fixes #236 ) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 57ea24a..b22b07e 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Once you understand some basics of that syntax, regular expressions become a lot 3. A Regex can have comments! ( # Like this in .NET ( or like (?#this comment) in ECMAScript ) ). 4. You don't have to do it all in one expression! -Irregular comes with 146 useful [named expressions](SavedPatterns.md), and lets you create more. +Irregular comes with 145 useful [named expressions](SavedPatterns.md), and lets you create more. To see the expressions that ship with Irregular, run: From 5e1eac263d8a60981b81bd297faf46abb0a00057 Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sun, 22 Sep 2024 04:39:07 +0000 Subject: [PATCH 2/4] Fix: Irregular Action Refactoring ( Fixes #235, Fixes #236 ) --- RegEx/Console/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RegEx/Console/README.md b/RegEx/Console/README.md index b65de63..19c47be 100644 --- a/RegEx/Console/README.md +++ b/RegEx/Console/README.md @@ -9,11 +9,11 @@ Note: Using these regular expressions in the terminal may result in awkward out |[?](4BitColor.regex.txt) |Matches an ANSI 3 or 4-bit color |[source](4BitColor.regex.source.ps1) | |[?](8BitColor.regex.txt) |Matches an ANSI 8-bit color |[source](8BitColor.regex.source.ps1) | |[?](Blink.regex.txt) |Matches ANSI Blink Start or End |[source](Blink.regex.source.ps1) | -|[?](Bold.regex.txt) |Matches an ANSI Bold (aka bright) Start or End |[source](Bold.regex.source.ps1) | +|[?](Bold.regex.txt) |Matches an ANSI Bold Start or End |[source](Bold.regex.source.ps1) | |[?](Code.regex.txt) |Matches an ANSI escape code |[source](Code.regex.source.ps1) | |[?](Color.regex.txt) |Matches an ANSI color |[source](Color.regex.source.ps1) | |[?](Cursor.regex.txt) |Matches an ANSI cursor control |[source](Cursor.regex.source.ps1) | -|[?](DefaultColor.regex.txt) |Matches an ANSI default color |[source](DefaultColor.regex.source.ps1) | +|[?](DefaultColor.regex.txt) |Matches an ANSI 24-bit color |[source](DefaultColor.regex.source.ps1) | |[?](Faint.regex.txt) |Matches an ANSI Faint (aka dim) Start or End |[source](Faint.regex.source.ps1) | |[?](Hide.regex.txt) |Matches ANSI Hide (aka conceal) Start or End |[source](Hide.regex.source.ps1) | |[?](Invert.regex.txt) |Matches ANSI Invert Start or End |[source](Invert.regex.source.ps1) | @@ -21,7 +21,7 @@ Note: Using these regular expressions in the terminal may result in awkward out |[?](Link.regex.txt) |Matches ANSI Hyperlink |[source](Link.regex.source.ps1) | |[?](Note.regex.txt) |Matches an ANSI VT520 Note |[source](Note.regex.source.ps1) | |[?](Reset.regex.txt) |Matches an ANSI Reset (this clears formatting) |[source](Reset.regex.source.ps1) | -|[?](Strikethrough.regex.txt)|Matches ANSI Strikethrough (aka crossed out) Start or End |[source](Strikethrough.regex.source.ps1)| +|[?](Strikethrough.regex.txt)|Matches ANSI Strikethrough Start or End |[source](Strikethrough.regex.source.ps1)| |[?](Style.regex.txt) |Matches an ANSI style (color or text option) |[source](Style.regex.source.ps1) | |[?](Underline.regex.txt) |Matches ANSI Underline/DoubleUnderline Start or Underline End|[source](Underline.regex.source.ps1) | From 95ea4fcf1b9a02f559aa7ba948f0a68f3401defd Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sun, 22 Sep 2024 04:39:07 +0000 Subject: [PATCH 3/4] Fix: Irregular Action Refactoring ( Fixes #235, Fixes #236 ) --- RegEx/OpenSCAD/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RegEx/OpenSCAD/README.md b/RegEx/OpenSCAD/README.md index 1cd310c..53e738d 100644 --- a/RegEx/OpenSCAD/README.md +++ b/RegEx/OpenSCAD/README.md @@ -6,9 +6,9 @@ This directory contains Regular Expressions for [OpenSCAD](https://openscad.org/ |----------------------------------------------------|---------------------------------------------|-----------| |[?](Customization.regex.txt)|Matches Potential Open SCAD Customizations |False | |[?](Function.regex.txt) |Matches Open SCAD Functions |False | -|[?](Include.regex.txt) |Matches Open SCAD Include statements |False | +|[?](Include.regex.txt) |Matches Open SCAD Modules |False | |[?](Module.regex.txt) |Matches Open SCAD Modules |False | |[?](Parameter.regex.txt) |Matches Potential Open SCAD Module Parameters|False | -|[?](Use.regex.txt) |Matches OpenSCAD Use statements |False | +|[?](Use.regex.txt) |Matches Open SCAD Modules |False | From ccd8e1e4b02990d1ba49d94ae8a631ed68867d24 Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sun, 22 Sep 2024 04:39:18 +0000 Subject: [PATCH 4/4] Fix: Irregular Action Refactoring ( Fixes #235, Fixes #236 ) --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index f7fe75f..501f56b 100644 --- a/docs/README.md +++ b/docs/README.md @@ -32,7 +32,7 @@ Once you understand some basics of that syntax, regular expressions become a lot 3. A Regex can have comments! ( # Like this in .NET ( or like (?#this comment) in ECMAScript ) ). 4. You don't have to do it all in one expression! -Irregular comes with 146 useful [named expressions](SavedPatterns.md), and lets you create more. +Irregular comes with 145 useful [named expressions](SavedPatterns.md), and lets you create more. To see the expressions that ship with Irregular, run: