This commit is contained in:
NotAShelf 2024-06-24 20:07:33 +00:00
commit 18713c49d2
2 changed files with 11 additions and 10 deletions

View file

@ -26696,16 +26696,16 @@ null or string or list of string</p>
<p>The position at which smart column should be displayed for each individual buffer type</p>
<p><span class="emphasis"><em>Type:</em></span>
attribute set of (signed integer or list of signed integer)</p>
attribute set of (string or list of string)</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">{ }</code></p>
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">vim.ui.smartcolumn.setupOpts.custom_colorcolumn = {
nix = 110;
ruby = 120;
java = 130;
go = [90 130];
nix = &quot;110&quot;;
ruby = &quot;120&quot;;
java = &quot;130&quot;;
go = [&quot;90&quot; &quot;130&quot;];
};
</code></pre>