helix-mods/helix-view/src/prompt.rs

89 lines
2.2 KiB
Rust
Raw Normal View History

use crate::commands;
use crate::View;
2020-10-13 19:10:50 +02:00
use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
2020-10-09 22:55:45 +02:00
use std::string::String;
pub struct Prompt {
pub buffer: String,
pub cursor_loc: usize,
2020-10-09 22:55:45 +02:00
}
impl Prompt {
pub fn new() -> Prompt {
let prompt = Prompt {
2020-10-13 18:57:55 +02:00
buffer: String::from(""),
cursor_loc: 0,
2020-10-09 22:55:45 +02:00
};
prompt
}
pub fn insert_char(&mut self, c: char) {
2020-10-13 18:57:55 +02:00
self.buffer.insert(self.cursor_loc, c);
self.cursor_loc += 1;
2020-10-09 22:55:45 +02:00
}
2020-10-13 19:10:50 +02:00
pub fn move_char_left(&mut self) {
2020-10-13 18:57:55 +02:00
if self.cursor_loc > 1 {
self.cursor_loc -= 1;
}
}
2020-10-13 19:10:50 +02:00
pub fn move_char_right(&mut self) {
2020-10-13 18:57:55 +02:00
if self.cursor_loc < self.buffer.len() {
self.cursor_loc += 1;
}
}
2020-10-13 19:10:50 +02:00
pub fn move_start(&mut self) {
self.cursor_loc = 0;
}
pub fn move_end(&mut self) {
self.cursor_loc = self.buffer.len();
}
2020-10-13 18:57:55 +02:00
pub fn delete_char_backwards(&mut self) {
if self.cursor_loc > 0 {
self.buffer.remove(self.cursor_loc - 1);
self.cursor_loc -= 1;
}
}
2020-10-13 19:10:50 +02:00
pub fn success_fn() {
// TODO:
}
2020-10-13 18:57:55 +02:00
pub fn handle_input(&mut self, key_event: KeyEvent, view: &mut View) {
match key_event {
KeyEvent {
code: KeyCode::Char(c),
2020-10-13 19:10:50 +02:00
modifiers: KeyModifiers::NONE,
} => self.insert_char(c),
KeyEvent {
code: KeyCode::Esc, ..
} => commands::normal_mode(view, 1),
2020-10-13 18:57:55 +02:00
KeyEvent {
code: KeyCode::Right,
..
2020-10-13 19:10:50 +02:00
} => self.move_char_right(),
2020-10-13 18:57:55 +02:00
KeyEvent {
code: KeyCode::Left,
..
2020-10-13 19:10:50 +02:00
} => self.move_char_left(),
KeyEvent {
code: KeyCode::Char('e'),
modifiers: KeyModifiers::CONTROL,
} => self.move_end(),
KeyEvent {
code: KeyCode::Char('a'),
modifiers: KeyModifiers::CONTROL,
} => self.move_start(),
2020-10-13 18:57:55 +02:00
KeyEvent {
code: KeyCode::Backspace,
..
} => self.delete_char_backwards(),
_ => (),
}
}
2020-10-09 22:55:45 +02:00
}