This commit is contained in:
archseer 2022-05-04 02:16:52 +00:00
parent 2d47bfcf8c
commit b8d3ad8bed
4 changed files with 18 additions and 18 deletions

View File

@ -211,14 +211,14 @@ available, which is not defined by default.</p>
<tr><td><code>max-depth</code></td><td>Set with an integer value for maximum depth to recurse.</td><td>Defaults to <code>None</code>.</td></tr> <tr><td><code>max-depth</code></td><td>Set with an integer value for maximum depth to recurse.</td><td>Defaults to <code>None</code>.</td></tr>
</tbody></table> </tbody></table>
<h3 id="editorauto-pairs-section"><a class="header" href="#editorauto-pairs-section"><code>[editor.auto-pairs]</code> Section</a></h3> <h3 id="editorauto-pairs-section"><a class="header" href="#editorauto-pairs-section"><code>[editor.auto-pairs]</code> Section</a></h3>
<p>Enable automatic insertion of pairs to parentheses, brackets, etc. Can be <p>Enables automatic insertion of pairs to parentheses, brackets, etc. Can be a
a simple boolean value, or a specific mapping of pairs of single characters.</p> simple boolean value, or a specific mapping of pairs of single characters.</p>
<table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody> <p>To disable auto-pairs altogether, set <code>auto-pairs</code> to <code>false</code>:</p>
<tr><td><code>false</code></td><td>Completely disable auto pairing, regardless of language-specific settings</td></tr> <pre><code class="language-toml">[editor]
<tr><td><code>true</code></td><td>Use the default pairs: <code>(){}[]''&quot;&quot;``</code></td></tr> auto-pairs = false # defaults to `true`
<tr><td>Mapping of pairs</td><td>e.g. <code>{ &quot;(&quot; = &quot;)&quot;, &quot;{&quot; = &quot;}&quot;, ... }</code></td></tr> </code></pre>
</tbody></table> <p>The default pairs are <code>(){}[]''&quot;&quot;``</code>, but these can be customized by
<p>Example</p> setting <code>auto-pairs</code> to a TOML table:</p>
<pre><code class="language-toml">[editor.auto-pairs] <pre><code class="language-toml">[editor.auto-pairs]
'(' = ')' '(' = ')'
'{' = '}' '{' = '}'

View File

@ -849,14 +849,14 @@ available, which is not defined by default.</p>
<tr><td><code>max-depth</code></td><td>Set with an integer value for maximum depth to recurse.</td><td>Defaults to <code>None</code>.</td></tr> <tr><td><code>max-depth</code></td><td>Set with an integer value for maximum depth to recurse.</td><td>Defaults to <code>None</code>.</td></tr>
</tbody></table> </tbody></table>
<h3 id="editorauto-pairs-section"><a class="header" href="#editorauto-pairs-section"><code>[editor.auto-pairs]</code> Section</a></h3> <h3 id="editorauto-pairs-section"><a class="header" href="#editorauto-pairs-section"><code>[editor.auto-pairs]</code> Section</a></h3>
<p>Enable automatic insertion of pairs to parentheses, brackets, etc. Can be <p>Enables automatic insertion of pairs to parentheses, brackets, etc. Can be a
a simple boolean value, or a specific mapping of pairs of single characters.</p> simple boolean value, or a specific mapping of pairs of single characters.</p>
<table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody> <p>To disable auto-pairs altogether, set <code>auto-pairs</code> to <code>false</code>:</p>
<tr><td><code>false</code></td><td>Completely disable auto pairing, regardless of language-specific settings</td></tr> <pre><code class="language-toml">[editor]
<tr><td><code>true</code></td><td>Use the default pairs: <code>(){}[]''&quot;&quot;``</code></td></tr> auto-pairs = false # defaults to `true`
<tr><td>Mapping of pairs</td><td>e.g. <code>{ &quot;(&quot; = &quot;)&quot;, &quot;{&quot; = &quot;}&quot;, ... }</code></td></tr> </code></pre>
</tbody></table> <p>The default pairs are <code>(){}[]''&quot;&quot;``</code>, but these can be customized by
<p>Example</p> setting <code>auto-pairs</code> to a TOML table:</p>
<pre><code class="language-toml">[editor.auto-pairs] <pre><code class="language-toml">[editor.auto-pairs]
'(' = ')' '(' = ')'
'{' = '}' '{' = '}'

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long