mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
Remove leftover log
This commit is contained in:
parent
3b6f66791f
commit
75a9cfdabe
1 changed files with 1 additions and 3 deletions
|
@ -120,7 +120,7 @@ export interface Syntax {
|
|||
|
||||
// HACK: "constructor" as a key in the syntax interface returns an error when a theme tries to use it.
|
||||
// For now hack around it by omiting constructor as a valid key for overrides.
|
||||
export type ThemeSyntax = Partial<Omit<Syntax, "constructor">>
|
||||
export type ThemeSyntax = Partial<Syntax>
|
||||
|
||||
const defaultSyntaxHighlightStyle: Omit<SyntaxHighlightStyle, "color"> = {
|
||||
weight: fontWeights.normal,
|
||||
|
@ -312,8 +312,6 @@ function buildDefaultSyntax(colorScheme: ColorScheme): Syntax {
|
|||
},
|
||||
}
|
||||
|
||||
console.log(JSON.stringify(defaultSyntax, null, 2))
|
||||
|
||||
return defaultSyntax
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue