Compare commits
2 Commits
ff2043c0e2
...
3c7003291c
Author | SHA1 | Date |
---|---|---|
Lykin | 3c7003291c | |
Cloud | 94d642c4de |
|
@ -150,6 +150,50 @@ watch(
|
|||
},
|
||||
)
|
||||
|
||||
watch(
|
||||
() => pref.editorFont.fontSize,
|
||||
(fontSize) => {
|
||||
if (editorNode != null) {
|
||||
editorNode.updateOptions({
|
||||
fontSize,
|
||||
})
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
watch(
|
||||
() => pref.editorFont.fontFamily,
|
||||
(fontFamily = undefined) => {
|
||||
if (editorNode != null) {
|
||||
editorNode.updateOptions({
|
||||
fontFamily,
|
||||
})
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
watch(
|
||||
() => pref.showLineNum,
|
||||
(showLineNum) => {
|
||||
if (editorNode != null) {
|
||||
editorNode.updateOptions({
|
||||
lineNumbers: showLineNum ? 'on' : 'off',
|
||||
})
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
watch(
|
||||
() => pref.showFolding,
|
||||
(showFolding) => {
|
||||
if (editorNode != null) {
|
||||
editorNode.updateOptions({
|
||||
folding: showFolding !== false,
|
||||
})
|
||||
}
|
||||
},
|
||||
)
|
||||
|
||||
onUnmounted(() => {
|
||||
destroyEditor()
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue