我正在为 lsp 服务器设置一个摩纳哥语言客户端。我需要配置 rootUri 和 rootPath 字段。但是,我通过以下代码创建了一个编辑器。我有一个问题,rootUri
字段rootPath
等于 null,尽管我尝试使用不同的 Uri(文件,url 解析)。没有任何效果。
const uri = Uri.file('/home/test.cpp');
const editor = monaco.editor.create(this.$refs.editor, {
model: monaco.editor.createModel(this.code, 'cpp', uri),
glyphMargin: true,
lightbulb: {
enabled: true,
},
showUnused: true,
tabCompletion: true,
});
MonacoServices.install(editor);
请提供一些信息,我如何能够更改rootUri
和rootPath
字段的值。