mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 19:02:07 +00:00
fmt
This commit is contained in:
parent
366f13bb5c
commit
687ccd4c6f
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ pub struct EditorSettings {
|
|||
#[derive(Copy, Clone, Debug, Serialize, Deserialize, JsonSchema, PartialEq, Eq)]
|
||||
pub struct Scrollbar {
|
||||
pub when_to_show: ShowScrollbar,
|
||||
pub git_diff: bool
|
||||
pub git_diff: bool,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, Serialize, Deserialize, JsonSchema, PartialEq, Eq)]
|
||||
|
@ -36,7 +36,7 @@ pub struct EditorSettingsContent {
|
|||
#[derive(Copy, Clone, Debug, Serialize, Deserialize, JsonSchema, PartialEq, Eq)]
|
||||
pub struct ScrollbarContent {
|
||||
pub when_to_show: Option<ShowScrollbar>,
|
||||
pub git_diff: Option<bool>
|
||||
pub git_diff: Option<bool>,
|
||||
}
|
||||
|
||||
impl Setting for EditorSettings {
|
||||
|
|
Loading…
Reference in a new issue