mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 18:06:18 +04:00
deploy: ed5febf4b3
This commit is contained in:
parent
ad23edb53b
commit
82a2758cd6
@ -476,6 +476,18 @@ with modal editors.</p>
|
||||
<tr><td><code>End</code></td><td>Move to line end</td><td><code>goto_line_end_newline</code></td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<p>If you want to disable them in insert mode as you become more comfortable with modal editing, you can use
|
||||
the following in your <code>config.toml</code>:</p>
|
||||
<pre><code class="language-toml">[keys.insert]
|
||||
up = "no_op"
|
||||
down = "no_op"
|
||||
left = "no_op"
|
||||
right = "no_op"
|
||||
pageup = "no_op"
|
||||
pagedown = "no_op"
|
||||
home = "no_op"
|
||||
end = "no_op"
|
||||
</code></pre>
|
||||
<h2 id="select--extend-mode"><a class="header" href="#select--extend-mode">Select / extend mode</a></h2>
|
||||
<p>This mode echoes Normal mode, but changes any movements to extend
|
||||
selections rather than replace them. Goto motions are also changed to
|
||||
|
@ -675,6 +675,18 @@ with modal editors.</p>
|
||||
<tr><td><code>End</code></td><td>Move to line end</td><td><code>goto_line_end_newline</code></td></tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<p>If you want to disable them in insert mode as you become more comfortable with modal editing, you can use
|
||||
the following in your <code>config.toml</code>:</p>
|
||||
<pre><code class="language-toml">[keys.insert]
|
||||
up = "no_op"
|
||||
down = "no_op"
|
||||
left = "no_op"
|
||||
right = "no_op"
|
||||
pageup = "no_op"
|
||||
pagedown = "no_op"
|
||||
home = "no_op"
|
||||
end = "no_op"
|
||||
</code></pre>
|
||||
<h2 id="select--extend-mode"><a class="header" href="#select--extend-mode">Select / extend mode</a></h2>
|
||||
<p>This mode echoes Normal mode, but changes any movements to extend
|
||||
selections rather than replace them. Goto motions are also changed to
|
||||
|
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
Block a user