mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
Fix warning
This commit is contained in:
parent
c72b70d4ae
commit
1fa52adabd
2 changed files with 5 additions and 2 deletions
|
@ -206,7 +206,10 @@
|
||||||
// particularly if they use box characters
|
// particularly if they use box characters
|
||||||
// "line_height": "standard",
|
// "line_height": "standard",
|
||||||
// 3. Use a custom line height.
|
// 3. Use a custom line height.
|
||||||
// "line_height": 1.2,
|
// "line_height": {
|
||||||
|
// "custom": 2
|
||||||
|
// },
|
||||||
|
//
|
||||||
"line_height": "comfortable"
|
"line_height": "comfortable"
|
||||||
// Set the terminal's font size. If this option is not included,
|
// Set the terminal's font size. If this option is not included,
|
||||||
// the terminal will default to matching the buffer's font size.
|
// the terminal will default to matching the buffer's font size.
|
||||||
|
|
|
@ -12,7 +12,7 @@ use schemars::{
|
||||||
schema::{InstanceType, ObjectValidation, Schema, SchemaObject, SingleOrVec},
|
schema::{InstanceType, ObjectValidation, Schema, SchemaObject, SingleOrVec},
|
||||||
JsonSchema,
|
JsonSchema,
|
||||||
};
|
};
|
||||||
use serde::{de::DeserializeOwned, Deserialize, Deserializer, Serialize};
|
use serde::{de::DeserializeOwned, Deserialize, Serialize};
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use sqlez::{
|
use sqlez::{
|
||||||
bindable::{Bind, Column, StaticColumnCount},
|
bindable::{Bind, Column, StaticColumnCount},
|
||||||
|
|
Loading…
Reference in a new issue