mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 20:37:44 +03:00
created prompt.rs
This commit is contained in:
parent
9e7b6465c6
commit
c60f1a6553
4 changed files with 45 additions and 6 deletions
|
@ -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) {
|
||||
|
|
|
@ -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
18
helix-view/src/prompt.rs
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue