mirror of
https://github.com/uqbar-dao/nectar.git
synced 2024-11-23 03:44:04 +03:00
fix delete key
This commit is contained in:
parent
390108a3e5
commit
9f2e3e1cab
@ -149,8 +149,13 @@ fn fetch_most_recent_blog_posts(n: usize) -> Vec<KinodeBlogPost> {
|
||||
60,
|
||||
vec![],
|
||||
) {
|
||||
Ok(response) => serde_json::from_slice::<Vec<KinodeBlogPost>>(response.body())
|
||||
.expect("Invalid UTF-8 from kinode.org"),
|
||||
Ok(response) => match serde_json::from_slice::<Vec<KinodeBlogPost>>(response.body()) {
|
||||
Ok(posts) => posts,
|
||||
Err(e) => {
|
||||
println!("Failed to parse blog posts: {e:?}");
|
||||
vec![]
|
||||
}
|
||||
},
|
||||
Err(e) => {
|
||||
println!("Failed to fetch blog posts: {e:?}");
|
||||
vec![]
|
||||
|
@ -444,9 +444,9 @@ pub async fn terminal(
|
||||
)?;
|
||||
},
|
||||
//
|
||||
// BACKSPACE or DELETE: delete a single character at cursor
|
||||
// BACKSPACE: delete a single character at cursor
|
||||
//
|
||||
KeyCode::Backspace | KeyCode::Delete => {
|
||||
KeyCode::Backspace => {
|
||||
if line_col == prompt_len {
|
||||
continue;
|
||||
}
|
||||
@ -477,6 +477,35 @@ pub async fn terminal(
|
||||
)?;
|
||||
},
|
||||
//
|
||||
// DELETE: delete a single character at right of cursor
|
||||
//
|
||||
KeyCode::Delete => {
|
||||
if line_col == current_line.len() {
|
||||
continue;
|
||||
}
|
||||
current_line.remove(line_col);
|
||||
if search_mode {
|
||||
utils::execute_search(
|
||||
&our,
|
||||
&mut stdout,
|
||||
¤t_line,
|
||||
prompt_len,
|
||||
(win_cols, win_rows),
|
||||
(line_col, cursor_col),
|
||||
&mut command_history,
|
||||
search_depth,
|
||||
)?;
|
||||
continue;
|
||||
}
|
||||
execute!(
|
||||
stdout,
|
||||
cursor::MoveTo(0, win_rows),
|
||||
terminal::Clear(ClearType::CurrentLine),
|
||||
Print(utils::truncate_in_place(¤t_line, prompt_len, win_cols, (line_col, cursor_col))),
|
||||
cursor::MoveTo(cursor_col, win_rows),
|
||||
)?;
|
||||
}
|
||||
//
|
||||
// LEFT: move cursor one spot left
|
||||
//
|
||||
KeyCode::Left => {
|
||||
|
Loading…
Reference in New Issue
Block a user