mirror of https://github.com/helix-editor/helix
started work on goto mode
parent
b7e1c0cf82
commit
038201647c
|
@ -225,6 +225,7 @@ checksum = "4bd1061998a501ee7d4b6d449020df3266ca3124b941ec56cf2005c3779ca142"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
|
"lazy_static",
|
||||||
"os_str_bytes",
|
"os_str_bytes",
|
||||||
"textwrap",
|
"textwrap",
|
||||||
"unicode-width",
|
"unicode-width",
|
||||||
|
|
|
@ -9,6 +9,7 @@ use std::path::PathBuf;
|
||||||
pub enum Mode {
|
pub enum Mode {
|
||||||
Normal,
|
Normal,
|
||||||
Insert,
|
Insert,
|
||||||
|
Goto,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A state represents the current editor state of a single buffer.
|
/// A state represents the current editor state of a single buffer.
|
||||||
|
|
|
@ -254,6 +254,7 @@ impl Editor {
|
||||||
let mode = match view.state.mode() {
|
let mode = match view.state.mode() {
|
||||||
Mode::Insert => "INS",
|
Mode::Insert => "INS",
|
||||||
Mode::Normal => "NOR",
|
Mode::Normal => "NOR",
|
||||||
|
Mode::Goto => "GOTO",
|
||||||
};
|
};
|
||||||
self.surface.set_style(
|
self.surface.set_style(
|
||||||
Rect::new(0, self.size.1 - 1, self.size.0, 1),
|
Rect::new(0, self.size.1 - 1, self.size.0, 1),
|
||||||
|
@ -278,6 +279,7 @@ impl Editor {
|
||||||
match view.state.mode() {
|
match view.state.mode() {
|
||||||
Mode::Insert => write!(stdout, "\x1B[6 q"),
|
Mode::Insert => write!(stdout, "\x1B[6 q"),
|
||||||
Mode::Normal => write!(stdout, "\x1B[2 q"),
|
Mode::Normal => write!(stdout, "\x1B[2 q"),
|
||||||
|
Mode::Goto => write!(stdout, "\x1B[2 q"),
|
||||||
};
|
};
|
||||||
|
|
||||||
// render the cursor
|
// render the cursor
|
||||||
|
@ -326,6 +328,7 @@ impl Editor {
|
||||||
}))) => {
|
}))) => {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
Some(Ok(Event::Key(event))) => {
|
Some(Ok(Event::Key(event))) => {
|
||||||
if let Some(view) = &mut self.view {
|
if let Some(view) = &mut self.view {
|
||||||
match view.state.mode() {
|
match view.state.mode() {
|
||||||
|
@ -356,6 +359,19 @@ impl Editor {
|
||||||
// TODO: simplistic ensure cursor in view for now
|
// TODO: simplistic ensure cursor in view for now
|
||||||
view.ensure_cursor_in_view();
|
view.ensure_cursor_in_view();
|
||||||
|
|
||||||
|
self.render();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Mode::Goto => {
|
||||||
|
// TODO: handle modes and sequences (`gg`)
|
||||||
|
let keys = vec![event];
|
||||||
|
if let Some(command) = keymap[&Mode::Goto].get(&keys) {
|
||||||
|
// TODO: handle count other than 1
|
||||||
|
command(view, 1);
|
||||||
|
|
||||||
|
// TODO: simplistic ensure cursor in view for now
|
||||||
|
view.ensure_cursor_in_view();
|
||||||
|
|
||||||
self.render();
|
self.render();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -117,6 +117,24 @@ pub fn move_next_word_end(view: &mut View, count: usize) {
|
||||||
view.state.selection = Selection::single(pos, pos);
|
view.state.selection = Selection::single(pos, pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn move_file_start(view: &mut View, count: usize) {
|
||||||
|
// TODO: use a transaction
|
||||||
|
view.state.selection = view
|
||||||
|
.state
|
||||||
|
.move_selection(Direction::Backward, Granularity::Line, count);
|
||||||
|
|
||||||
|
view.state.mode = Mode::Normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn move_file_end(view: &mut View, count: usize) {
|
||||||
|
// TODO: use a transaction
|
||||||
|
view.state.selection = view
|
||||||
|
.state
|
||||||
|
.move_selection(Direction::Forward, Granularity::Line, count);
|
||||||
|
|
||||||
|
view.state.mode = Mode::Normal;
|
||||||
|
}
|
||||||
|
|
||||||
// avoid select by default by having a visual mode switch that makes movements into selects
|
// avoid select by default by having a visual mode switch that makes movements into selects
|
||||||
|
|
||||||
pub fn extend_char_left(view: &mut View, count: usize) {
|
pub fn extend_char_left(view: &mut View, count: usize) {
|
||||||
|
@ -292,6 +310,10 @@ pub fn normal_mode(view: &mut View, _count: usize) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn goto_mode(view: &mut View, _count: usize) {
|
||||||
|
view.state.mode = Mode::Goto;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: insert means add text just before cursor, on exit we should be on the last letter.
|
// TODO: insert means add text just before cursor, on exit we should be on the last letter.
|
||||||
pub fn insert_char(view: &mut View, c: char) {
|
pub fn insert_char(view: &mut View, c: char) {
|
||||||
let c = Tendril::from_char(c);
|
let c = Tendril::from_char(c);
|
||||||
|
|
|
@ -126,6 +126,7 @@ pub fn default() -> Keymaps {
|
||||||
vec![key!('w')] => commands::move_next_word_start,
|
vec![key!('w')] => commands::move_next_word_start,
|
||||||
vec![key!('b')] => commands::move_prev_word_start,
|
vec![key!('b')] => commands::move_prev_word_start,
|
||||||
vec![key!('e')] => commands::move_next_word_end,
|
vec![key!('e')] => commands::move_next_word_end,
|
||||||
|
vec![key!('g')] => commands::goto_mode,
|
||||||
vec![key!('i')] => commands::insert_mode,
|
vec![key!('i')] => commands::insert_mode,
|
||||||
vec![shift!('I')] => commands::prepend_to_line,
|
vec![shift!('I')] => commands::prepend_to_line,
|
||||||
vec![key!('a')] => commands::append_mode,
|
vec![key!('a')] => commands::append_mode,
|
||||||
|
@ -161,6 +162,14 @@ pub fn default() -> Keymaps {
|
||||||
code: KeyCode::Tab,
|
code: KeyCode::Tab,
|
||||||
modifiers: Modifiers::NONE
|
modifiers: Modifiers::NONE
|
||||||
}] => commands::insert_tab,
|
}] => commands::insert_tab,
|
||||||
|
),
|
||||||
|
state::Mode::Goto => hashmap!(
|
||||||
|
vec![Key {
|
||||||
|
code: KeyCode::Esc,
|
||||||
|
modifiers: Modifiers::NONE
|
||||||
|
}] => commands::normal_mode as Command,
|
||||||
|
vec![key!('g')] => commands::move_file_start as Command,
|
||||||
|
vec![key!('e')] => commands::move_file_end as Command,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue