mirror of https://github.com/helix-editor/helix
moved prompt command matching to prompt.rs
parent
7208c86f23
commit
ed03ec92a8
|
@ -10,7 +10,7 @@ pub enum Mode {
|
||||||
Normal,
|
Normal,
|
||||||
Insert,
|
Insert,
|
||||||
Goto,
|
Goto,
|
||||||
Command,
|
Prompt,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A state represents the current editor state of a single buffer.
|
/// A state represents the current editor state of a single buffer.
|
||||||
|
|
|
@ -237,7 +237,7 @@ impl Editor {
|
||||||
Mode::Insert => "INS",
|
Mode::Insert => "INS",
|
||||||
Mode::Normal => "NOR",
|
Mode::Normal => "NOR",
|
||||||
Mode::Goto => "GOTO",
|
Mode::Goto => "GOTO",
|
||||||
Mode::Command => "COM", // command mode i guess
|
Mode::Prompt => "PRO", // prompt?
|
||||||
};
|
};
|
||||||
// statusline
|
// statusline
|
||||||
self.surface.set_style(
|
self.surface.set_style(
|
||||||
|
@ -252,9 +252,14 @@ impl Editor {
|
||||||
use tui::backend::Backend;
|
use tui::backend::Backend;
|
||||||
let view = self.view.as_ref().unwrap();
|
let view = self.view.as_ref().unwrap();
|
||||||
// render buffer text
|
// render buffer text
|
||||||
let buffer_string = &self.prompt.buffer;
|
let buffer_string;
|
||||||
self.surface
|
if view.state.mode == Mode::Prompt {
|
||||||
.set_string(2, self.size.1 - 1, buffer_string, text_color);
|
buffer_string = &self.prompt.buffer;
|
||||||
|
self.surface
|
||||||
|
.set_string(1, self.size.1 - 1, buffer_string, text_color);
|
||||||
|
} else {
|
||||||
|
buffer_string = &String::from("");
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: theres probably a better place for this
|
// TODO: theres probably a better place for this
|
||||||
self.terminal
|
self.terminal
|
||||||
|
@ -272,8 +277,8 @@ impl Editor {
|
||||||
Mode::Insert => write!(stdout, "\x1B[6 q"),
|
Mode::Insert => write!(stdout, "\x1B[6 q"),
|
||||||
mode => write!(stdout, "\x1B[2 q"),
|
mode => write!(stdout, "\x1B[2 q"),
|
||||||
};
|
};
|
||||||
if view.state.mode() == Mode::Command {
|
if view.state.mode() == Mode::Prompt {
|
||||||
pos = Position::new(self.size.0 as usize, 2 + self.prompt.buffer.len());
|
pos = Position::new(self.size.0 as usize, 1 + self.prompt.buffer.len());
|
||||||
} else {
|
} else {
|
||||||
if let Some(path) = view.state.path() {
|
if let Some(path) = view.state.path() {
|
||||||
self.surface
|
self.surface
|
||||||
|
@ -341,16 +346,8 @@ impl Editor {
|
||||||
}
|
}
|
||||||
view.ensure_cursor_in_view();
|
view.ensure_cursor_in_view();
|
||||||
}
|
}
|
||||||
Mode::Command => {
|
Mode::Prompt => {
|
||||||
if let Some(command) = keymap[&Mode::Command].get(&keys) {
|
self.prompt.handle_keyevent(event, view);
|
||||||
command(view, 1);
|
|
||||||
} else if let KeyEvent {
|
|
||||||
code: KeyCode::Char(c),
|
|
||||||
..
|
|
||||||
} = event
|
|
||||||
{
|
|
||||||
commands::insert_char_prompt(&mut self.prompt, c)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
mode => {
|
mode => {
|
||||||
if let Some(command) = keymap[&mode].get(&keys) {
|
if let Some(command) = keymap[&mode].get(&keys) {
|
||||||
|
|
|
@ -307,8 +307,20 @@ pub fn append_mode(view: &mut View, _count: usize) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn command_mode(view: &mut View, _count: usize) {
|
pub fn prompt_mode(view: &mut View, _count: usize) {
|
||||||
view.state.mode = Mode::Command;
|
view.state.mode = Mode::Prompt;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn move_char_left_prompt(prompt: &mut Prompt, _char: char) {
|
||||||
|
if prompt.cursor_loc > 1 {
|
||||||
|
prompt.cursor_loc -= 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn move_char_right_prompt(prompt: &mut Prompt, _char: char) {
|
||||||
|
if prompt.cursor_loc < prompt.buffer.len() {
|
||||||
|
prompt.cursor_loc += 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: I, A, o and O can share a lot of the primitives.
|
// TODO: I, A, o and O can share a lot of the primitives.
|
||||||
|
|
|
@ -163,7 +163,7 @@ pub fn default() -> Keymaps {
|
||||||
vec![key!('p')] => commands::paste,
|
vec![key!('p')] => commands::paste,
|
||||||
vec![key!('>')] => commands::indent,
|
vec![key!('>')] => commands::indent,
|
||||||
vec![key!('<')] => commands::unindent,
|
vec![key!('<')] => commands::unindent,
|
||||||
vec![key!(':')] => commands::command_mode,
|
vec![key!(':')] => commands::prompt_mode,
|
||||||
vec![Key {
|
vec![Key {
|
||||||
code: KeyCode::Esc,
|
code: KeyCode::Esc,
|
||||||
modifiers: Modifiers::NONE
|
modifiers: Modifiers::NONE
|
||||||
|
@ -209,7 +209,7 @@ pub fn default() -> Keymaps {
|
||||||
vec![key!('g')] => commands::move_file_start as Command,
|
vec![key!('g')] => commands::move_file_start as Command,
|
||||||
vec![key!('e')] => commands::move_file_end as Command,
|
vec![key!('e')] => commands::move_file_end as Command,
|
||||||
),
|
),
|
||||||
state::Mode::Command => hashmap!(
|
state::Mode::Prompt => hashmap!(
|
||||||
vec![Key {
|
vec![Key {
|
||||||
code: KeyCode::Esc,
|
code: KeyCode::Esc,
|
||||||
modifiers: Modifiers::NONE
|
modifiers: Modifiers::NONE
|
||||||
|
|
|
@ -1,13 +1,18 @@
|
||||||
|
use crate::commands;
|
||||||
|
use crate::View;
|
||||||
|
use crossterm::event::{KeyCode, KeyEvent};
|
||||||
use std::string::String;
|
use std::string::String;
|
||||||
|
|
||||||
pub struct Prompt {
|
pub struct Prompt {
|
||||||
pub buffer: String,
|
pub buffer: String,
|
||||||
|
pub cursor_loc: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Prompt {
|
impl Prompt {
|
||||||
pub fn new() -> Prompt {
|
pub fn new() -> Prompt {
|
||||||
let prompt = Prompt {
|
let prompt = Prompt {
|
||||||
buffer: String::from(""),
|
buffer: String::from(":"), // starting prompt symbol
|
||||||
|
cursor_loc: 0,
|
||||||
};
|
};
|
||||||
prompt
|
prompt
|
||||||
}
|
}
|
||||||
|
@ -15,4 +20,17 @@ impl Prompt {
|
||||||
pub fn insert_char(&mut self, c: char) {
|
pub fn insert_char(&mut self, c: char) {
|
||||||
self.buffer.push(c);
|
self.buffer.push(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn handle_keyevent(&mut self, key_event: KeyEvent, view: &mut View) {
|
||||||
|
match key_event {
|
||||||
|
KeyEvent {
|
||||||
|
code: KeyCode::Char(c),
|
||||||
|
..
|
||||||
|
} => self.insert_char(c),
|
||||||
|
KeyEvent {
|
||||||
|
code: KeyCode::Esc, ..
|
||||||
|
} => commands::normal_mode(view, 1),
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue