mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
global_search: Suggest latest '/' register value
This commit is contained in:
parent
1d023b05ac
commit
7b1131adf6
3 changed files with 36 additions and 21 deletions
|
@ -2407,7 +2407,10 @@ fn global_search(cx: &mut Context) {
|
|||
.boxed()
|
||||
};
|
||||
|
||||
let mut picker = Picker::new(
|
||||
let reg = cx.register.unwrap_or('/');
|
||||
cx.editor.registers.last_search_register = reg;
|
||||
|
||||
let picker = Picker::new(
|
||||
columns,
|
||||
1, // contents
|
||||
vec![],
|
||||
|
@ -2443,16 +2446,9 @@ fn global_search(cx: &mut Context) {
|
|||
.with_preview(|_editor, FileResult { path, line_num, .. }| {
|
||||
Some((path.clone().into(), Some((*line_num, *line_num))))
|
||||
})
|
||||
.with_history_register(Some(reg))
|
||||
.with_dynamic_query(get_files, Some(275));
|
||||
|
||||
if let Some((reg, line)) = cx
|
||||
.register
|
||||
.and_then(|reg| Some((reg, cx.editor.registers.first(reg, cx.editor)?)))
|
||||
{
|
||||
picker = picker.with_line(line.into_owned(), cx.editor);
|
||||
cx.editor.registers.last_search_register = reg;
|
||||
}
|
||||
|
||||
cx.push_layer(Box::new(overlaid(picker)));
|
||||
}
|
||||
|
||||
|
|
|
@ -391,9 +391,8 @@ impl<T: 'static + Send + Sync, D: 'static + Send + Sync> Picker<T, D> {
|
|||
self
|
||||
}
|
||||
|
||||
pub fn with_line(mut self, line: String, editor: &Editor) -> Self {
|
||||
self.prompt.set_line(line, editor);
|
||||
self.handle_prompt_change();
|
||||
pub fn with_history_register(mut self, history_register: Option<char>) -> Self {
|
||||
self.prompt.with_history_register(history_register);
|
||||
self
|
||||
}
|
||||
|
||||
|
@ -977,10 +976,21 @@ impl<I: 'static + Send + Sync, D: 'static + Send + Sync> Component for Picker<I,
|
|||
}
|
||||
}
|
||||
key!(Enter) => {
|
||||
if let Some(option) = self.selection() {
|
||||
(self.callback_fn)(ctx, option, Action::Replace);
|
||||
// If the prompt has a history completion and is empty, use enter to accept
|
||||
// that completion
|
||||
if let Some(completion) = self
|
||||
.prompt
|
||||
.first_history_completion(ctx.editor)
|
||||
.filter(|_| self.prompt.line().is_empty())
|
||||
{
|
||||
self.prompt.set_line(completion.to_string(), ctx.editor);
|
||||
self.handle_prompt_change();
|
||||
} else {
|
||||
if let Some(option) = self.selection() {
|
||||
(self.callback_fn)(ctx, option, Action::Replace);
|
||||
}
|
||||
return close_fn(self);
|
||||
}
|
||||
return close_fn(self);
|
||||
}
|
||||
ctrl!('s') => {
|
||||
if let Some(option) = self.selection() {
|
||||
|
|
|
@ -117,6 +117,19 @@ impl Prompt {
|
|||
&self.line
|
||||
}
|
||||
|
||||
pub fn with_history_register(&mut self, history_register: Option<char>) -> &mut Self {
|
||||
self.history_register = history_register;
|
||||
self
|
||||
}
|
||||
|
||||
pub(crate) fn first_history_completion<'a>(
|
||||
&'a self,
|
||||
editor: &'a Editor,
|
||||
) -> Option<Cow<'a, str>> {
|
||||
self.history_register
|
||||
.and_then(|reg| editor.registers.first(reg, editor))
|
||||
}
|
||||
|
||||
pub fn recalculate_completion(&mut self, editor: &Editor) {
|
||||
self.exit_selection();
|
||||
self.completion = (self.completion_fn)(editor, &self.line);
|
||||
|
@ -480,10 +493,7 @@ impl Prompt {
|
|||
let line_area = area.clip_left(self.prompt.len() as u16).clip_top(line);
|
||||
if self.line.is_empty() {
|
||||
// Show the most recently entered value as a suggestion.
|
||||
if let Some(suggestion) = self
|
||||
.history_register
|
||||
.and_then(|reg| cx.editor.registers.first(reg, cx.editor))
|
||||
{
|
||||
if let Some(suggestion) = self.first_history_completion(cx.editor) {
|
||||
surface.set_string(line_area.x, line_area.y, suggestion, suggestion_color);
|
||||
}
|
||||
} else if let Some((language, loader)) = self.language.as_ref() {
|
||||
|
@ -578,8 +588,7 @@ impl Component for Prompt {
|
|||
self.recalculate_completion(cx.editor);
|
||||
} else {
|
||||
let last_item = self
|
||||
.history_register
|
||||
.and_then(|reg| cx.editor.registers.first(reg, cx.editor))
|
||||
.first_history_completion(cx.editor)
|
||||
.map(|entry| entry.to_string())
|
||||
.unwrap_or_else(|| String::from(""));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue