Skip to content

Commit 715f2e1

Browse files
committed
Fix casing of "Vim"
1 parent bff6924 commit 715f2e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

regex.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<h1>Regex cheatsheet</h1>
7272

7373
<p>Many programs use regular expression to find &amp; replace text. However, they tend to come with their own different flavor.</p>
74-
<p>You can probably expect most modern software and programming languages to be using some variation of the Perl flavor, "PCRE"; however command-line tools (grep, less, ...) will often use the POSIX flavor (sometimes with an extended variant, e.g. <code>egrep</code> or <code>sed -r</code>). ViM also comes with its own syntax (a superset of what Vi accepts).</p>
74+
<p>You can probably expect most modern software and programming languages to be using some variation of the Perl flavor, "PCRE"; however command-line tools (grep, less, ...) will often use the POSIX flavor (sometimes with an extended variant, e.g. <code>egrep</code> or <code>sed -r</code>). Vim also comes with its own syntax (a superset of what Vi accepts).</p>
7575
<p>This cheatsheet lists the respective <a href="#syntax">syntax of each flavor</a>, and the <a href="#programs">software that uses it</a>.</p>
7676
<p>If you spot errors or missing data, or just want to make this prettier/more accurate, don't hesitate to open an <a href="https://github.com/remram44/regex-cheatsheet/issues/new">issue</a> or a <a href="https://github.com/remram44/regex-cheatsheet/compare/">pull request</a>.</p>
7777
</section>
@@ -82,7 +82,7 @@ <h1>Syntax</h1>
8282

8383
<table class="table table-bordered table-striped">
8484
<thead>
85-
<tr><th>What</th><th><a href="http://perldoc.perl.org/perlre.html">Perl</a>/PCRE</th><th><a href="https://docs.python.org/library/re.html">Python's <code>re</code></a></th><th>POSIX (BRE)</th><th>POSIX extended (ERE)</th><th>ViM</th></tr>
85+
<tr><th>What</th><th><a href="http://perldoc.perl.org/perlre.html">Perl</a>/PCRE</th><th><a href="https://docs.python.org/library/re.html">Python's <code>re</code></a></th><th>POSIX (BRE)</th><th>POSIX extended (ERE)</th><th>Vim</th></tr>
8686
</thead>
8787
<tbody id="syntax-basics" class="subgroup">
8888
<tr><th colspan="6">Basics</th></tr>
@@ -182,7 +182,7 @@ <h1>Programs</h1>
182182
<tr><td>PyCharm</td><td>PCRE</td><td>Perl-inspired</td></tr>
183183
<tr><td>Sublime Text</td><td>?</td><td></td></tr>
184184
<tr><td>UltraEdit</td><td>PCRE</td><td></td></tr>
185-
<tr><td>ViM</td><td>ViM</td><td></td></tr>
185+
<tr><td>Vim</td><td>Vim</td><td></td></tr>
186186
</tbody>
187187
<tbody id="programs-cmdline" class="subgroup">
188188
<tr><th colspan="3">Command-line tools</th></tr>

0 commit comments

Comments
 (0)