🎨 Add editor font size scroll zoom switch https://github.com/siyuan-note/siyuan/issues/8297

This commit is contained in:
Daniel 2023-05-27 22:21:05 +08:00
parent bb08d48d11
commit 337120511a
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -18,6 +18,7 @@ package conf
type Editor struct {
FontSize int `json:"fontSize"` // 字体大小
FontSizeScrollZoom bool `json:"fontSizeScrollZoom"` // 字体大小是否支持滚轮缩放
FontFamily string `json:"fontFamily"` // 字体
CodeSyntaxHighlightLineNum bool `json:"codeSyntaxHighlightLineNum"` // 代码块是否显示行号
CodeTabSpaces int `json:"codeTabSpaces"` // 代码块中 Tab 转换空格数,配置为 0 则表示不转换
@ -51,6 +52,7 @@ type Editor struct {
func NewEditor() *Editor {
return &Editor{
FontSize: 16,
FontSizeScrollZoom: false,
CodeSyntaxHighlightLineNum: true,
CodeTabSpaces: 0,
CodeLineWrap: false,