language_settings: Add auto
alias for subtle edit prediction mode (#25686)
This PR makes `auto` an alias for the `subtle` edit prediction mode. Right now I'm in a state where I can't have valid settings in both development and Nightly because the settings values are disparate. Release Notes: - N/A
This commit is contained in:
parent
b06da7f7fd
commit
6a1c104522
1 changed files with 1 additions and 0 deletions
|
@ -244,6 +244,7 @@ pub struct EditPredictionSettings {
|
|||
pub enum EditPredictionsMode {
|
||||
/// If provider supports it, display inline when holding modifier key (e.g., alt).
|
||||
/// Otherwise, eager preview is used.
|
||||
#[serde(alias = "auto")]
|
||||
Subtle,
|
||||
/// Display inline when there are no language server completions available.
|
||||
#[default]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue