placeholder completion fn if no LSP

gui
Blaž Hrastnik 2 years ago
parent eadb2eaad1
commit febc7ee0fa
No known key found for this signature in database
GPG Key ID: 1238B9C4AD889640

@ -3573,6 +3573,12 @@ fn remove_primary_selection(cx: &mut Context) {
doc.set_selection(view.id, selection);
}
#[cfg(not(feature = "lsp"))]
pub fn completion(cx: &mut Context) {
// TODO:
}
#[cfg(feature = "lsp")]
pub fn completion(cx: &mut Context) {
use helix_lsp::{lsp, util::pos_to_lsp_pos};

Loading…
Cancel
Save