mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-01 04:02:46 +02:00
CodeEditor: attach fontsize setting to monaco
This commit is contained in:
@ -66,7 +66,13 @@ export default class CodeEditor extends Component {
|
||||
if (nextProps.prefs !== this.props.prefs) {
|
||||
const { prefs } = nextProps;
|
||||
|
||||
this.instance.setOption('indentWithTabs', prefs.indentWith !== 'spaces');
|
||||
if (this.props.mode === 'monaco') {
|
||||
this.instance.updateOptions({ fontSize: prefs.fontSize });
|
||||
} else {
|
||||
this.instance.setOption(
|
||||
'indentWithTabs',
|
||||
prefs.indentWith !== 'spaces'
|
||||
);
|
||||
this.instance.setOption(
|
||||
'blastCode',
|
||||
prefs.isCodeBlastOn ? { effect: 2, shake: false } : false
|
||||
@ -82,6 +88,7 @@ export default class CodeEditor extends Component {
|
||||
|
||||
this.instance.refresh();
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -129,6 +136,7 @@ export default class CodeEditor extends Component {
|
||||
enabled: false
|
||||
},
|
||||
wordWrap: 'on',
|
||||
renderWhitespace: 'all',
|
||||
fontLigatures: true,
|
||||
automaticLayout: true
|
||||
});
|
||||
|
Reference in New Issue
Block a user