mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 01:46:18 +04:00
Make the prompt callback take a Context.
This commit is contained in:
parent
16883e7543
commit
fd1ae35051
@ -28,7 +28,7 @@
|
||||
use movement::Movement;
|
||||
|
||||
use crate::{
|
||||
compositor::{Callback, Component, Compositor},
|
||||
compositor::{self, Callback, Component, Compositor},
|
||||
ui::{self, Completion, Picker, Popup, Prompt, PromptEvent},
|
||||
};
|
||||
|
||||
@ -1032,30 +1032,32 @@ pub struct TypableCommand {
|
||||
pub alias: Option<&'static str>,
|
||||
pub doc: &'static str,
|
||||
// params, flags, helper, completer
|
||||
pub fun: fn(&mut Editor, &[&str], PromptEvent),
|
||||
pub fun: fn(&mut compositor::Context, &[&str], PromptEvent),
|
||||
pub completer: Option<Completer>,
|
||||
}
|
||||
|
||||
fn quit(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
// last view and we have unsaved changes
|
||||
if editor.tree.views().count() == 1 && buffers_remaining_impl(editor) {
|
||||
if cx.editor.tree.views().count() == 1 && buffers_remaining_impl(cx.editor) {
|
||||
return;
|
||||
}
|
||||
editor.close(view!(editor).id, /* close_buffer */ false);
|
||||
cx.editor
|
||||
.close(view!(cx.editor).id, /* close_buffer */ false);
|
||||
}
|
||||
|
||||
fn force_quit(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
editor.close(view!(editor).id, /* close_buffer */ false);
|
||||
fn force_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
cx.editor
|
||||
.close(view!(cx.editor).id, /* close_buffer */ false);
|
||||
}
|
||||
|
||||
fn open(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn open(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
match args.get(0) {
|
||||
Some(path) => {
|
||||
// TODO: handle error
|
||||
editor.open(path.into(), Action::Replace);
|
||||
cx.editor.open(path.into(), Action::Replace);
|
||||
}
|
||||
None => {
|
||||
editor.set_error("wrong argument count".to_string());
|
||||
cx.editor.set_error("wrong argument count".to_string());
|
||||
}
|
||||
};
|
||||
}
|
||||
@ -1086,30 +1088,30 @@ fn write_impl<P: AsRef<Path>>(
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn write(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
let (view, doc) = current!(editor);
|
||||
fn write(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
let (view, doc) = current!(cx.editor);
|
||||
if let Err(e) = write_impl(view, doc, args.first()) {
|
||||
editor.set_error(e.to_string());
|
||||
cx.editor.set_error(e.to_string());
|
||||
};
|
||||
}
|
||||
|
||||
fn new_file(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
editor.new_file(Action::Replace);
|
||||
fn new_file(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
cx.editor.new_file(Action::Replace);
|
||||
}
|
||||
|
||||
fn format(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
let (view, doc) = current!(editor);
|
||||
fn format(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
let (view, doc) = current!(cx.editor);
|
||||
|
||||
doc.format(view.id)
|
||||
}
|
||||
|
||||
fn set_indent_style(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn set_indent_style(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
use IndentStyle::*;
|
||||
|
||||
// If no argument, report current indent style.
|
||||
if args.is_empty() {
|
||||
let style = current!(editor).1.indent_style;
|
||||
editor.set_status(match style {
|
||||
let style = current!(cx.editor).1.indent_style;
|
||||
cx.editor.set_status(match style {
|
||||
Tabs => "tabs".into(),
|
||||
Spaces(1) => "1 space".into(),
|
||||
Spaces(n) if (2..=8).contains(&n) => format!("{} spaces", n),
|
||||
@ -1131,22 +1133,23 @@ fn set_indent_style(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
};
|
||||
|
||||
if let Some(s) = style {
|
||||
let doc = doc_mut!(editor);
|
||||
let doc = doc_mut!(cx.editor);
|
||||
doc.indent_style = s;
|
||||
} else {
|
||||
// Invalid argument.
|
||||
editor.set_error(format!("invalid indent style '{}'", args[0],));
|
||||
cx.editor
|
||||
.set_error(format!("invalid indent style '{}'", args[0],));
|
||||
}
|
||||
}
|
||||
|
||||
/// Sets or reports the current document's line ending setting.
|
||||
fn set_line_ending(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn set_line_ending(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
use LineEnding::*;
|
||||
|
||||
// If no argument, report current line ending setting.
|
||||
if args.is_empty() {
|
||||
let line_ending = current!(editor).1.line_ending;
|
||||
editor.set_status(match line_ending {
|
||||
let line_ending = current!(cx.editor).1.line_ending;
|
||||
cx.editor.set_status(match line_ending {
|
||||
Crlf => "crlf".into(),
|
||||
LF => "line feed".into(),
|
||||
FF => "form feed".into(),
|
||||
@ -1171,49 +1174,50 @@ fn set_line_ending(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
};
|
||||
|
||||
if let Some(le) = line_ending {
|
||||
doc_mut!(editor).line_ending = le;
|
||||
doc_mut!(cx.editor).line_ending = le;
|
||||
} else {
|
||||
// Invalid argument.
|
||||
editor.set_error(format!("invalid line ending '{}'", args[0],));
|
||||
cx.editor
|
||||
.set_error(format!("invalid line ending '{}'", args[0],));
|
||||
}
|
||||
}
|
||||
|
||||
fn earlier(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn earlier(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
let uk = match args.join(" ").parse::<helix_core::history::UndoKind>() {
|
||||
Ok(uk) => uk,
|
||||
Err(msg) => {
|
||||
editor.set_error(msg);
|
||||
cx.editor.set_error(msg);
|
||||
return;
|
||||
}
|
||||
};
|
||||
let (view, doc) = current!(editor);
|
||||
let (view, doc) = current!(cx.editor);
|
||||
doc.earlier(view.id, uk)
|
||||
}
|
||||
|
||||
fn later(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn later(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
let uk = match args.join(" ").parse::<helix_core::history::UndoKind>() {
|
||||
Ok(uk) => uk,
|
||||
Err(msg) => {
|
||||
editor.set_error(msg);
|
||||
cx.editor.set_error(msg);
|
||||
return;
|
||||
}
|
||||
};
|
||||
let (view, doc) = current!(editor);
|
||||
let (view, doc) = current!(cx.editor);
|
||||
doc.later(view.id, uk)
|
||||
}
|
||||
|
||||
fn write_quit(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
let (view, doc) = current!(editor);
|
||||
fn write_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
let (view, doc) = current!(cx.editor);
|
||||
if let Err(e) = write_impl(view, doc, args.first()) {
|
||||
editor.set_error(e.to_string());
|
||||
cx.editor.set_error(e.to_string());
|
||||
return;
|
||||
};
|
||||
quit(editor, &[], event)
|
||||
quit(cx, &[], event)
|
||||
}
|
||||
|
||||
fn force_write_quit(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
write(editor, args, event);
|
||||
force_quit(editor, &[], event);
|
||||
fn force_write_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
write(cx, args, event);
|
||||
force_quit(cx, &[], event);
|
||||
}
|
||||
|
||||
/// Returns `true` if there are modified buffers remaining and sets editor error,
|
||||
@ -1273,16 +1277,16 @@ fn write_all_impl(
|
||||
}
|
||||
}
|
||||
|
||||
fn write_all(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
write_all_impl(editor, args, event, false, false)
|
||||
fn write_all(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
write_all_impl(&mut cx.editor, args, event, false, false)
|
||||
}
|
||||
|
||||
fn write_all_quit(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
write_all_impl(editor, args, event, true, false)
|
||||
fn write_all_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
write_all_impl(&mut cx.editor, args, event, true, false)
|
||||
}
|
||||
|
||||
fn force_write_all_quit(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
write_all_impl(editor, args, event, true, true)
|
||||
fn force_write_all_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
write_all_impl(&mut cx.editor, args, event, true, true)
|
||||
}
|
||||
|
||||
fn quit_all_impl(editor: &mut Editor, args: &[&str], event: PromptEvent, force: bool) {
|
||||
@ -1297,50 +1301,50 @@ fn quit_all_impl(editor: &mut Editor, args: &[&str], event: PromptEvent, force:
|
||||
}
|
||||
}
|
||||
|
||||
fn quit_all(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
quit_all_impl(editor, args, event, false)
|
||||
fn quit_all(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
quit_all_impl(&mut cx.editor, args, event, false)
|
||||
}
|
||||
|
||||
fn force_quit_all(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
quit_all_impl(editor, args, event, true)
|
||||
fn force_quit_all(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
quit_all_impl(&mut cx.editor, args, event, true)
|
||||
}
|
||||
|
||||
fn theme(editor: &mut Editor, args: &[&str], event: PromptEvent) {
|
||||
fn theme(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
||||
let theme = if let Some(theme) = args.first() {
|
||||
theme
|
||||
} else {
|
||||
editor.set_error("theme name not provided".into());
|
||||
cx.editor.set_error("theme name not provided".into());
|
||||
return;
|
||||
};
|
||||
|
||||
editor.set_theme_from_name(theme);
|
||||
cx.editor.set_theme_from_name(theme);
|
||||
}
|
||||
|
||||
fn yank_main_selection_to_clipboard(editor: &mut Editor, _: &[&str], _: PromptEvent) {
|
||||
yank_main_selection_to_clipboard_impl(editor);
|
||||
fn yank_main_selection_to_clipboard(cx: &mut compositor::Context, _: &[&str], _: PromptEvent) {
|
||||
yank_main_selection_to_clipboard_impl(&mut cx.editor);
|
||||
}
|
||||
|
||||
fn yank_joined_to_clipboard(editor: &mut Editor, args: &[&str], _: PromptEvent) {
|
||||
let (_, doc) = current!(editor);
|
||||
fn yank_joined_to_clipboard(cx: &mut compositor::Context, args: &[&str], _: PromptEvent) {
|
||||
let (_, doc) = current!(cx.editor);
|
||||
let separator = args
|
||||
.first()
|
||||
.copied()
|
||||
.unwrap_or_else(|| doc.line_ending.as_str());
|
||||
yank_joined_to_clipboard_impl(editor, separator);
|
||||
yank_joined_to_clipboard_impl(&mut cx.editor, separator);
|
||||
}
|
||||
|
||||
fn paste_clipboard_after(editor: &mut Editor, _: &[&str], _: PromptEvent) {
|
||||
paste_clipboard_impl(editor, Paste::After);
|
||||
fn paste_clipboard_after(cx: &mut compositor::Context, _: &[&str], _: PromptEvent) {
|
||||
paste_clipboard_impl(&mut cx.editor, Paste::After);
|
||||
}
|
||||
|
||||
fn paste_clipboard_before(editor: &mut Editor, _: &[&str], _: PromptEvent) {
|
||||
paste_clipboard_impl(editor, Paste::After);
|
||||
fn paste_clipboard_before(cx: &mut compositor::Context, _: &[&str], _: PromptEvent) {
|
||||
paste_clipboard_impl(&mut cx.editor, Paste::After);
|
||||
}
|
||||
|
||||
fn replace_selections_with_clipboard(editor: &mut Editor, _: &[&str], _: PromptEvent) {
|
||||
let (view, doc) = current!(editor);
|
||||
fn replace_selections_with_clipboard(cx: &mut compositor::Context, _: &[&str], _: PromptEvent) {
|
||||
let (view, doc) = current!(cx.editor);
|
||||
|
||||
match editor.clipboard_provider.get_contents() {
|
||||
match cx.editor.clipboard_provider.get_contents() {
|
||||
Ok(contents) => {
|
||||
let transaction =
|
||||
Transaction::change_by_selection(doc.text(), doc.selection(view.id), |range| {
|
||||
@ -1356,8 +1360,9 @@ fn replace_selections_with_clipboard(editor: &mut Editor, _: &[&str], _: PromptE
|
||||
}
|
||||
}
|
||||
|
||||
fn show_clipboard_provider(editor: &mut Editor, _: &[&str], _: PromptEvent) {
|
||||
editor.set_status(editor.clipboard_provider.name().into());
|
||||
fn show_clipboard_provider(cx: &mut compositor::Context, _: &[&str], _: PromptEvent) {
|
||||
cx.editor
|
||||
.set_status(cx.editor.clipboard_provider.name().into());
|
||||
}
|
||||
|
||||
fn change_current_directory(editor: &mut Editor, args: &[&str], _: PromptEvent) {
|
||||
@ -1633,7 +1638,7 @@ fn command_mode(cx: &mut Context) {
|
||||
}
|
||||
}
|
||||
}, // completion
|
||||
move |editor: &mut Editor, input: &str, event: PromptEvent| {
|
||||
move |cx: &mut compositor::Context, input: &str, event: PromptEvent| {
|
||||
use helix_view::editor::Action;
|
||||
|
||||
if event != PromptEvent::Validate {
|
||||
@ -1646,9 +1651,10 @@ fn command_mode(cx: &mut Context) {
|
||||
}
|
||||
|
||||
if let Some(cmd) = cmd::COMMANDS.get(parts[0]) {
|
||||
(cmd.fun)(editor, &parts[1..], event);
|
||||
(cmd.fun)(cx, &parts[1..], event);
|
||||
} else {
|
||||
editor.set_error(format!("no such command: '{}'", parts[0]));
|
||||
cx.editor
|
||||
.set_error(format!("no such command: '{}'", parts[0]));
|
||||
};
|
||||
},
|
||||
);
|
||||
|
@ -39,10 +39,10 @@ pub fn regex_prompt(
|
||||
Prompt::new(
|
||||
prompt,
|
||||
|input: &str| Vec::new(), // this is fine because Vec::new() doesn't allocate
|
||||
move |editor: &mut Editor, input: &str, event: PromptEvent| {
|
||||
move |cx: &mut crate::compositor::Context, input: &str, event: PromptEvent| {
|
||||
match event {
|
||||
PromptEvent::Abort => {
|
||||
let (view, doc) = current!(editor);
|
||||
let (view, doc) = current!(cx.editor);
|
||||
doc.set_selection(view.id, snapshot.clone());
|
||||
}
|
||||
PromptEvent::Validate => {
|
||||
@ -56,8 +56,8 @@ pub fn regex_prompt(
|
||||
|
||||
match Regex::new(input) {
|
||||
Ok(regex) => {
|
||||
let (view, doc) = current!(editor);
|
||||
let registers = &mut editor.registers;
|
||||
let (view, doc) = current!(cx.editor);
|
||||
let registers = &mut cx.editor.registers;
|
||||
|
||||
// revert state to what it was before the last update
|
||||
doc.set_selection(view.id, snapshot.clone());
|
||||
|
@ -44,7 +44,7 @@ pub fn new(
|
||||
let prompt = Prompt::new(
|
||||
"".to_string(),
|
||||
|pattern: &str| Vec::new(),
|
||||
|editor: &mut Editor, pattern: &str, event: PromptEvent| {
|
||||
|editor: &mut Context, pattern: &str, event: PromptEvent| {
|
||||
//
|
||||
},
|
||||
);
|
||||
|
@ -20,7 +20,7 @@ pub struct Prompt {
|
||||
completion: Vec<Completion>,
|
||||
selection: Option<usize>,
|
||||
completion_fn: Box<dyn FnMut(&str) -> Vec<Completion>>,
|
||||
callback_fn: Box<dyn FnMut(&mut Editor, &str, PromptEvent)>,
|
||||
callback_fn: Box<dyn FnMut(&mut Context, &str, PromptEvent)>,
|
||||
pub doc_fn: Box<dyn Fn(&str) -> Option<&'static str>>,
|
||||
}
|
||||
|
||||
@ -54,7 +54,7 @@ impl Prompt {
|
||||
pub fn new(
|
||||
prompt: String,
|
||||
mut completion_fn: impl FnMut(&str) -> Vec<Completion> + 'static,
|
||||
callback_fn: impl FnMut(&mut Editor, &str, PromptEvent) + 'static,
|
||||
callback_fn: impl FnMut(&mut Context, &str, PromptEvent) + 'static,
|
||||
) -> Self {
|
||||
Self {
|
||||
prompt,
|
||||
@ -386,7 +386,7 @@ fn handle_event(&mut self, event: Event, cx: &mut Context) -> EventResult {
|
||||
modifiers: KeyModifiers::SHIFT,
|
||||
} => {
|
||||
self.insert_char(c);
|
||||
(self.callback_fn)(cx.editor, &self.line, PromptEvent::Update);
|
||||
(self.callback_fn)(cx, &self.line, PromptEvent::Update);
|
||||
}
|
||||
KeyEvent {
|
||||
code: KeyCode::Char('c'),
|
||||
@ -395,7 +395,7 @@ fn handle_event(&mut self, event: Event, cx: &mut Context) -> EventResult {
|
||||
| KeyEvent {
|
||||
code: KeyCode::Esc, ..
|
||||
} => {
|
||||
(self.callback_fn)(cx.editor, &self.line, PromptEvent::Abort);
|
||||
(self.callback_fn)(cx, &self.line, PromptEvent::Abort);
|
||||
return close_fn;
|
||||
}
|
||||
KeyEvent {
|
||||
@ -459,7 +459,7 @@ fn handle_event(&mut self, event: Event, cx: &mut Context) -> EventResult {
|
||||
modifiers: KeyModifiers::NONE,
|
||||
} => {
|
||||
self.delete_char_backwards();
|
||||
(self.callback_fn)(cx.editor, &self.line, PromptEvent::Update);
|
||||
(self.callback_fn)(cx, &self.line, PromptEvent::Update);
|
||||
}
|
||||
KeyEvent {
|
||||
code: KeyCode::Enter,
|
||||
@ -469,7 +469,7 @@ fn handle_event(&mut self, event: Event, cx: &mut Context) -> EventResult {
|
||||
self.completion = (self.completion_fn)(&self.line);
|
||||
self.exit_selection();
|
||||
} else {
|
||||
(self.callback_fn)(cx.editor, &self.line, PromptEvent::Validate);
|
||||
(self.callback_fn)(cx, &self.line, PromptEvent::Validate);
|
||||
return close_fn;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user