mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-03-06 08:46:02 +00:00
Compare commits
2 commits
360ad313bc
...
96753dfa7c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96753dfa7c | ||
|
|
4a1d2c8f03 |
3 changed files with 49 additions and 2 deletions
File diff suppressed because one or more lines are too long
45
options.html
45
options.html
|
|
@ -5330,7 +5330,7 @@
|
||||||
<details class="toc-category">
|
<details class="toc-category">
|
||||||
<summary title="vim.languages">
|
<summary title="vim.languages">
|
||||||
<span>vim.languages</span>
|
<span>vim.languages</span>
|
||||||
<span class="toc-count">410</span>
|
<span class="toc-count">412</span>
|
||||||
</summary>
|
</summary>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
|
@ -7256,6 +7256,22 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href='#option-vim-languages-php-format-enable' title="vim.languages.php.format.enable">
|
||||||
|
php.format.enable
|
||||||
|
|
||||||
|
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href='#option-vim-languages-php-format-type' title="vim.languages.php.format.type">
|
||||||
|
php.format.type
|
||||||
|
|
||||||
|
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href='#option-vim-languages-php-lsp-enable' title="vim.languages.php.lsp.enable">
|
<a href='#option-vim-languages-php-lsp-enable' title="vim.languages.php.lsp.enable">
|
||||||
php.lsp.enable
|
php.lsp.enable
|
||||||
|
|
@ -29191,6 +29207,33 @@ have any of these filetypes.</p>
|
||||||
<div class="option-example">Example: <code>true</code></div>
|
<div class="option-example">Example: <code>true</code></div>
|
||||||
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/php.nix" target="_blank"><nvf/modules/plugins/languages/php.nix></a></code></div>
|
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/php.nix" target="_blank"><nvf/modules/plugins/languages/php.nix></a></code></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="option" id="option-vim-languages-php-format-enable">
|
||||||
|
<h3 class="option-name">
|
||||||
|
<a href="#option-vim-languages-php-format-enable" class="option-anchor">vim.languages.php.format.enable</a>
|
||||||
|
<span class="copy-link" title="Copy link to this option"></span>
|
||||||
|
<span class="copy-feedback">Link copied!</span>
|
||||||
|
</h3>
|
||||||
|
<div class="option-type">Type: <code>boolean</code></div>
|
||||||
|
<div class="option-description"><html><head></head><body><p>Whether to enable PHP formatting.</p>
|
||||||
|
</body></html></div>
|
||||||
|
<div class="option-default">Default: <code>false</code></div>
|
||||||
|
<div class="option-example">Example: <code>true</code></div>
|
||||||
|
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/php.nix" target="_blank"><nvf/modules/plugins/languages/php.nix></a></code></div>
|
||||||
|
</div>
|
||||||
|
<div class="option" id="option-vim-languages-php-format-type">
|
||||||
|
<h3 class="option-name">
|
||||||
|
<a href="#option-vim-languages-php-format-type" class="option-anchor">vim.languages.php.format.type</a>
|
||||||
|
<span class="copy-link" title="Copy link to this option"></span>
|
||||||
|
<span class="copy-feedback">Link copied!</span>
|
||||||
|
</h3>
|
||||||
|
<div class="option-type">Type: <code>list of value "php_cs_fixer" (singular enum)</code></div>
|
||||||
|
<div class="option-description"><html><head></head><body><p>PHP formatter to use</p>
|
||||||
|
</body></html></div>
|
||||||
|
<div class="option-default">Default: <code>[
|
||||||
|
"php_cs_fixer"
|
||||||
|
]</code></div>
|
||||||
|
<div class="option-declared">Declared in: <code><a href="https://github.com/NotAShelf/nvf/blob/main/modules/plugins/languages/php.nix" target="_blank"><nvf/modules/plugins/languages/php.nix></a></code></div>
|
||||||
|
</div>
|
||||||
<div class="option" id="option-vim-languages-php-lsp-enable">
|
<div class="option" id="option-vim-languages-php-lsp-enable">
|
||||||
<h3 class="option-name">
|
<h3 class="option-name">
|
||||||
<a href="#option-vim-languages-php-lsp-enable" class="option-anchor">vim.languages.php.lsp.enable</a>
|
<a href="#option-vim-languages-php-lsp-enable" class="option-anchor">vim.languages.php.lsp.enable</a>
|
||||||
|
|
|
||||||
|
|
@ -2004,6 +2004,10 @@ highlighting only).</p>
|
||||||
<p>Added Debugging support to <code>languages.php</code>.</p>
|
<p>Added Debugging support to <code>languages.php</code>.</p>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
<p>Added Formatting support to <code>languages.php</code> via
|
||||||
|
<a href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer">PHP-CS-Fixer</a>.</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
<p>Didn't Add
|
<p>Didn't Add
|
||||||
<a href="https://github.com/NotAShelf/syntax-gaslighting.nvim"><code>syntax-gaslighting</code></a>,
|
<a href="https://github.com/NotAShelf/syntax-gaslighting.nvim"><code>syntax-gaslighting</code></a>,
|
||||||
you're crazy.</p>
|
you're crazy.</p>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue