mirror of
https://github.com/helix-editor/helix.git
synced 2025-01-19 05:27:07 +04:00
Add no_op
command (#743)
* Add `no_op` command * Document `no_op` in `remapping.md`
This commit is contained in:
parent
1540b37f34
commit
3e12b00993
@ -49,4 +49,6 @@ # At most one section each of 'keys.normal', 'keys.insert' and 'keys.select'
|
||||
| Null | `"null"` |
|
||||
| Escape | `"esc"` |
|
||||
|
||||
Keys can be disabled by binding them to the `no_op` command.
|
||||
|
||||
Commands can be found in the source code at [`helix-term/src/commands.rs`](https://github.com/helix-editor/helix/blob/master/helix-term/src/commands.rs)
|
||||
|
@ -162,6 +162,7 @@ pub fn doc(&self) -> &'static str {
|
||||
|
||||
#[rustfmt::skip]
|
||||
commands!(
|
||||
no_op, "Do nothing",
|
||||
move_char_left, "Move left",
|
||||
move_char_right, "Move right",
|
||||
move_line_up, "Move up",
|
||||
@ -361,6 +362,8 @@ fn eq(&self, other: &Self) -> bool {
|
||||
}
|
||||
}
|
||||
|
||||
fn no_op(_cx: &mut Context) {}
|
||||
|
||||
fn move_impl<F>(cx: &mut Context, move_fn: F, dir: Direction, behaviour: Movement)
|
||||
where
|
||||
F: Fn(RopeSlice, Range, Direction, usize, Movement) -> Range,
|
||||
|
Loading…
Reference in New Issue
Block a user