/***
editor.getValue()
editor.setValue(newValue)
editor.onDidChangeModelContent((val)=>{
//监听值的变化
})
editor.getAction('editor.action.formatDocument').run() // 格式化代码
editor.dispose() // 销毁实例
editor.onDidChangeOptions // 配置改变事件
editor.onDidChangeLanguage // 语言改变事件
*/