mirror of https://github.com/helix-editor/helix
deploy: 31273c69e0
parent
f75fe0a5e1
commit
b0a4c6a771
|
@ -199,8 +199,9 @@
|
|||
<li><a href="#window-mode">Window mode</a></li>
|
||||
<li><a href="#space-mode">Space mode</a>
|
||||
<ul>
|
||||
<li><a href="#comment-mode">Comment mode</a></li>
|
||||
<li><a href="#popup">Popup</a></li>
|
||||
<li><a href="#completion-menu">Completion Menu</a></li>
|
||||
<li><a href="#signature-help-popup">Signature-help Popup</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="#unimpaired">Unimpaired</a></li>
|
||||
|
@ -477,12 +478,26 @@ useful when you're simply looking over text and not actively editing it.</p>
|
|||
<p>💡 Global search displays results in a fuzzy picker, use <code>Space + '</code> to bring it back up after opening a file.</p>
|
||||
</blockquote>
|
||||
<h5 id="popup"><a class="header" href="#popup">Popup</a></h5>
|
||||
<p>Displays documentation for item under cursor.</p>
|
||||
<p>Displays documentation for item under cursor. Remapping currently not supported.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody>
|
||||
<tr><td><code>Ctrl-u</code></td><td>Scroll up</td></tr>
|
||||
<tr><td><code>Ctrl-d</code></td><td>Scroll down</td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<h5 id="completion-menu"><a class="header" href="#completion-menu">Completion Menu</a></h5>
|
||||
<p>Displays documentation for the selected completion item. Remapping currently not supported.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody>
|
||||
<tr><td><code>Shift-Tab</code>, <code>Ctrl-p</code>, <code>Up</code></td><td>Previous entry</td></tr>
|
||||
<tr><td><code>Tab</code>, <code>Ctrl-n</code>, <code>Down</code></td><td>Next entry</td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<h5 id="signature-help-popup"><a class="header" href="#signature-help-popup">Signature-help Popup</a></h5>
|
||||
<p>Displays the signature of the selected completion item. Remapping currently not supported.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody>
|
||||
<tr><td><code>Alt-p</code></td><td>Previous signature</td></tr>
|
||||
<tr><td><code>Alt-n</code></td><td>Next signature</td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<h4 id="unimpaired"><a class="header" href="#unimpaired">Unimpaired</a></h4>
|
||||
<p>These mappings are in the style of <a href="https://github.com/tpope/vim-unimpaired">vim-unimpaired</a>.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th><th>Command</th></tr></thead><tbody>
|
||||
|
|
|
@ -639,8 +639,9 @@ selection to the "func" <code>identifier</code>.</p>
|
|||
<li><a href="keymap.html#window-mode">Window mode</a></li>
|
||||
<li><a href="keymap.html#space-mode">Space mode</a>
|
||||
<ul>
|
||||
<li><a href="keymap.html#comment-mode">Comment mode</a></li>
|
||||
<li><a href="keymap.html#popup">Popup</a></li>
|
||||
<li><a href="keymap.html#completion-menu">Completion Menu</a></li>
|
||||
<li><a href="keymap.html#signature-help-popup">Signature-help Popup</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="keymap.html#unimpaired">Unimpaired</a></li>
|
||||
|
@ -917,12 +918,26 @@ useful when you're simply looking over text and not actively editing it.</p>
|
|||
<p>💡 Global search displays results in a fuzzy picker, use <code>Space + '</code> to bring it back up after opening a file.</p>
|
||||
</blockquote>
|
||||
<h5 id="popup"><a class="header" href="#popup">Popup</a></h5>
|
||||
<p>Displays documentation for item under cursor.</p>
|
||||
<p>Displays documentation for item under cursor. Remapping currently not supported.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody>
|
||||
<tr><td><code>Ctrl-u</code></td><td>Scroll up</td></tr>
|
||||
<tr><td><code>Ctrl-d</code></td><td>Scroll down</td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<h5 id="completion-menu"><a class="header" href="#completion-menu">Completion Menu</a></h5>
|
||||
<p>Displays documentation for the selected completion item. Remapping currently not supported.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody>
|
||||
<tr><td><code>Shift-Tab</code>, <code>Ctrl-p</code>, <code>Up</code></td><td>Previous entry</td></tr>
|
||||
<tr><td><code>Tab</code>, <code>Ctrl-n</code>, <code>Down</code></td><td>Next entry</td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<h5 id="signature-help-popup"><a class="header" href="#signature-help-popup">Signature-help Popup</a></h5>
|
||||
<p>Displays the signature of the selected completion item. Remapping currently not supported.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th></tr></thead><tbody>
|
||||
<tr><td><code>Alt-p</code></td><td>Previous signature</td></tr>
|
||||
<tr><td><code>Alt-n</code></td><td>Next signature</td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<h4 id="unimpaired"><a class="header" href="#unimpaired">Unimpaired</a></h4>
|
||||
<p>These mappings are in the style of <a href="https://github.com/tpope/vim-unimpaired">vim-unimpaired</a>.</p>
|
||||
<div class="table-wrapper"><table><thead><tr><th>Key</th><th>Description</th><th>Command</th></tr></thead><tbody>
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue