mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 03:47:51 +03:00
Add 'A', 'I' commands.
This commit is contained in:
parent
fb0f56b747
commit
b08278807e
3 changed files with 94 additions and 0 deletions
|
@ -60,8 +60,86 @@ pub fn append_mode(state: &mut State, _count: usize) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: I, A, o and O can share a lot of the primitives.
|
||||||
|
|
||||||
// I inserts at the start of each line with a selection
|
// I inserts at the start of each line with a selection
|
||||||
|
pub fn prepend_to_line(state: &mut State, _count: usize) {
|
||||||
|
state.mode = Mode::Insert;
|
||||||
|
|
||||||
|
// calculate line numbers for each selection range
|
||||||
|
let mut lines = state
|
||||||
|
.selection
|
||||||
|
.ranges()
|
||||||
|
.iter()
|
||||||
|
.map(|range| state.doc.char_to_line(range.head))
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
lines.sort();
|
||||||
|
lines.dedup();
|
||||||
|
|
||||||
|
let positions: Vec<_> = lines
|
||||||
|
.into_iter()
|
||||||
|
.map(|index| {
|
||||||
|
// adjust all positions to the end of the line.
|
||||||
|
let line_start = state.doc.line_to_char(index);
|
||||||
|
line_start
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let selection = Selection::new(
|
||||||
|
positions
|
||||||
|
.iter()
|
||||||
|
.copied()
|
||||||
|
.map(|pos| Range::new(pos, pos))
|
||||||
|
.collect(),
|
||||||
|
0,
|
||||||
|
);
|
||||||
|
|
||||||
|
let transaction = Transaction::new(state).with_selection(selection);
|
||||||
|
|
||||||
|
transaction.apply(state);
|
||||||
|
// TODO: need to store into history if successful
|
||||||
|
}
|
||||||
|
|
||||||
// A inserts at the end of each line with a selection
|
// A inserts at the end of each line with a selection
|
||||||
|
pub fn append_to_line(state: &mut State, _count: usize) {
|
||||||
|
state.mode = Mode::Insert;
|
||||||
|
|
||||||
|
// calculate line numbers for each selection range
|
||||||
|
let mut lines = state
|
||||||
|
.selection
|
||||||
|
.ranges()
|
||||||
|
.iter()
|
||||||
|
.map(|range| state.doc.char_to_line(range.head))
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
lines.sort();
|
||||||
|
lines.dedup();
|
||||||
|
|
||||||
|
let positions: Vec<_> = lines
|
||||||
|
.into_iter()
|
||||||
|
.map(|index| {
|
||||||
|
// adjust all positions to the end of the line.
|
||||||
|
let line = state.doc.line(index);
|
||||||
|
let line_start = state.doc.line_to_char(index);
|
||||||
|
line_start + line.len_chars() - 1
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let selection = Selection::new(
|
||||||
|
positions
|
||||||
|
.iter()
|
||||||
|
.copied()
|
||||||
|
.map(|pos| Range::new(pos, pos))
|
||||||
|
.collect(),
|
||||||
|
0,
|
||||||
|
);
|
||||||
|
|
||||||
|
let transaction = Transaction::new(state).with_selection(selection);
|
||||||
|
|
||||||
|
transaction.apply(state);
|
||||||
|
// TODO: need to store into history if successful
|
||||||
|
}
|
||||||
|
|
||||||
// o inserts a new line after each line with a selection
|
// o inserts a new line after each line with a selection
|
||||||
pub fn open_below(state: &mut State, _count: usize) {
|
pub fn open_below(state: &mut State, _count: usize) {
|
||||||
|
|
|
@ -322,6 +322,14 @@ pub struct Transaction {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Transaction {
|
impl Transaction {
|
||||||
|
/// Create a new, empty transaction.
|
||||||
|
pub fn new(state: &mut State) -> Self {
|
||||||
|
Self {
|
||||||
|
changes: ChangeSet::new(&state.doc),
|
||||||
|
selection: None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Returns true if applied successfully.
|
/// Returns true if applied successfully.
|
||||||
pub fn apply(&self, state: &mut State) -> bool {
|
pub fn apply(&self, state: &mut State) -> bool {
|
||||||
// apply changes to the document
|
// apply changes to the document
|
||||||
|
|
|
@ -103,10 +103,18 @@ pub fn default() -> Keymap {
|
||||||
code: KeyCode::Char('i'),
|
code: KeyCode::Char('i'),
|
||||||
modifiers: Modifiers::NONE
|
modifiers: Modifiers::NONE
|
||||||
} => commands::insert_mode as Command,
|
} => commands::insert_mode as Command,
|
||||||
|
Key {
|
||||||
|
code: KeyCode::Char('I'),
|
||||||
|
modifiers: Modifiers::SHIFT,
|
||||||
|
} => commands::prepend_to_line as Command,
|
||||||
Key {
|
Key {
|
||||||
code: KeyCode::Char('a'),
|
code: KeyCode::Char('a'),
|
||||||
modifiers: Modifiers::NONE
|
modifiers: Modifiers::NONE
|
||||||
} => commands::append_mode as Command,
|
} => commands::append_mode as Command,
|
||||||
|
Key {
|
||||||
|
code: KeyCode::Char('A'),
|
||||||
|
modifiers: Modifiers::SHIFT,
|
||||||
|
} => commands::append_to_line as Command,
|
||||||
Key {
|
Key {
|
||||||
code: KeyCode::Char('o'),
|
code: KeyCode::Char('o'),
|
||||||
modifiers: Modifiers::NONE
|
modifiers: Modifiers::NONE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue