created prompt.rs

This commit is contained in:
Jan Hrastnik 2020-10-09 22:55:45 +02:00 committed by Blaž Hrastnik
parent 9e7b6465c6
commit c60f1a6553
4 changed files with 45 additions and 6 deletions

View file

@ -8,7 +8,10 @@ use helix_core::{
};
use once_cell::sync::Lazy;
use crate::view::{View, PADDING};
use crate::{
prompt::Prompt,
view::{View, PADDING},
};
/// A command is a function that takes the current state and a count, and does a side-effect on the
/// state (usually by creating and applying a transaction).
@ -478,6 +481,10 @@ pub mod insert {
}
}
pub fn insert_char_prompt(prompt: &mut Prompt, c: char) {
prompt.insert_char(c);
}
// Undo / Redo
pub fn undo(view: &mut View, _count: usize) {

View file

@ -1,5 +1,6 @@
pub mod commands;
pub mod keymap;
pub mod prompt;
pub mod theme;
pub mod view;

18
helix-view/src/prompt.rs Normal file
View file

@ -0,0 +1,18 @@
use std::string::String;
pub struct Prompt {
pub buffer: String,
}
impl Prompt {
pub fn new() -> Prompt {
let prompt = Prompt {
buffer: String::from(""),
};
prompt
}
pub fn insert_char(&mut self, c: char) {
self.buffer.push(c);
}
}