Replies: 1 comment 1 reply
-
To summarize two key take-aways: I recommend making two renames:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
These two config settings are confusingly similar:
show_completions_on_input
show_inline_completions
The answers to the following questions should be obvious from reading the documentation...
... but they are not.
The core problem stems from their confusing names. Both have
show_
and have to do withcompletions
. So what is the difference betweenon_input
andinline
? Please clarify.Even better, please rename one or both, since that is probably the only way to settle this confusion once and for all. If someone has to go to the documentation page just to get unconfused, that is a hint that current design choices are not working well enough.
Ideas to consider:
show_inline_completions
toauto_show_completion_ghost_text
?show_completions_on_input
toauto_trigger_completion_menu
?Current Documentation
From
zed/docs/src/configuring-zed.md
:Show Inline Completions
editor::ShowInlineCompletion
.show_inline_completions
true
Show Completions On Input
show_completions_on_input
true
Current Source Code
crates/language/src/language_settings.rs#L112
crates/language/src/language_settings.rs#L141
Beta Was this translation helpful? Give feedback.
All reactions