Rename remaining mentions of "inline completion" to "edit prediction" (#35512)
Release Notes: - N/A
This commit is contained in:
parent
85885723a9
commit
65018c28c0
43 changed files with 480 additions and 498 deletions
|
@ -90,7 +90,7 @@ impl Vim {
|
|||
if let Some(kind) = motion_kind {
|
||||
vim.copy_selections_content(editor, kind, window, cx);
|
||||
editor.insert("", window, cx);
|
||||
editor.refresh_inline_completion(true, false, window, cx);
|
||||
editor.refresh_edit_prediction(true, false, window, cx);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -123,7 +123,7 @@ impl Vim {
|
|||
if objects_found {
|
||||
vim.copy_selections_content(editor, MotionKind::Exclusive, window, cx);
|
||||
editor.insert("", window, cx);
|
||||
editor.refresh_inline_completion(true, false, window, cx);
|
||||
editor.refresh_edit_prediction(true, false, window, cx);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -82,7 +82,7 @@ impl Vim {
|
|||
selection.collapse_to(cursor, selection.goal)
|
||||
});
|
||||
});
|
||||
editor.refresh_inline_completion(true, false, window, cx);
|
||||
editor.refresh_edit_prediction(true, false, window, cx);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -169,7 +169,7 @@ impl Vim {
|
|||
selection.collapse_to(cursor, selection.goal)
|
||||
});
|
||||
});
|
||||
editor.refresh_inline_completion(true, false, window, cx);
|
||||
editor.refresh_edit_prediction(true, false, window, cx);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue