Fix tooltip of always_treat_brackets_as_autoclosed
(#18191)
Fixed a bug where the `always_treat_brackets_as_autoclosed` option would not display the message in the tooltip that appears when hovering. Release Notes: - N/A
This commit is contained in:
parent
3ca18af40b
commit
1f35c8d09d
1 changed files with 5 additions and 5 deletions
|
@ -325,11 +325,11 @@ pub struct LanguageSettingsContent {
|
||||||
///
|
///
|
||||||
/// Default: true
|
/// Default: true
|
||||||
pub use_auto_surround: Option<bool>,
|
pub use_auto_surround: Option<bool>,
|
||||||
// Controls how the editor handles the autoclosed characters.
|
/// Controls how the editor handles the autoclosed characters.
|
||||||
// When set to `false`(default), skipping over and auto-removing of the closing characters
|
/// When set to `false`(default), skipping over and auto-removing of the closing characters
|
||||||
// happen only for auto-inserted characters.
|
/// happen only for auto-inserted characters.
|
||||||
// Otherwise(when `true`), the closing characters are always skipped over and auto-removed
|
/// Otherwise(when `true`), the closing characters are always skipped over and auto-removed
|
||||||
// no matter how they were inserted.
|
/// no matter how they were inserted.
|
||||||
///
|
///
|
||||||
/// Default: false
|
/// Default: false
|
||||||
pub always_treat_brackets_as_autoclosed: Option<bool>,
|
pub always_treat_brackets_as_autoclosed: Option<bool>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue