mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
Show a message if no definition was found.
This commit is contained in:
parent
1be8b2005d
commit
d4d5e88ade
1 changed files with 11 additions and 8 deletions
|
@ -1268,7 +1268,9 @@ fn _goto(
|
||||||
[location] => {
|
[location] => {
|
||||||
jump_to(editor, location, offset_encoding, Action::Replace);
|
jump_to(editor, location, offset_encoding, Action::Replace);
|
||||||
}
|
}
|
||||||
[] => (), // maybe show user message that no definition was found?
|
[] => {
|
||||||
|
editor.set_error("No definition found.".to_string());
|
||||||
|
}
|
||||||
_locations => {
|
_locations => {
|
||||||
let mut picker = ui::Picker::new(
|
let mut picker = ui::Picker::new(
|
||||||
locations,
|
locations,
|
||||||
|
@ -2039,14 +2041,15 @@ pub fn completion(cx: &mut Context) {
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: if no completion, show some message or something
|
// TODO: if no completion, show some message or something
|
||||||
if !items.is_empty() {
|
if items.is_empty() {
|
||||||
|
return;
|
||||||
|
}
|
||||||
use crate::compositor::AnyComponent;
|
use crate::compositor::AnyComponent;
|
||||||
let size = compositor.size();
|
let size = compositor.size();
|
||||||
let ui = compositor.find("hx::ui::editor::EditorView").unwrap();
|
let ui = compositor.find("hx::ui::editor::EditorView").unwrap();
|
||||||
if let Some(ui) = ui.as_any_mut().downcast_mut::<ui::EditorView>() {
|
if let Some(ui) = ui.as_any_mut().downcast_mut::<ui::EditorView>() {
|
||||||
ui.set_completion(items, offset_encoding, trigger_offset, size);
|
ui.set_completion(items, offset_encoding, trigger_offset, size);
|
||||||
};
|
};
|
||||||
}
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
// TODO: Server error: content modified
|
// TODO: Server error: content modified
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue