scxml editor插件在vscode中无法使用的问题

I had the same issue, I'm running it on Linux and looking at the Developer Tools console it said it could not find "./editorglue" and would fail to load the extension. "EditorGlue.js" indeed exists and I presume this works in Windows as it does not care about case, but in Linux it matters, to fix it: inside extension.js is I changed:

const editorglue_1 = require("./editorglue");

to
const editorglue_1 = require("./EditorGlue");

ps. This is a great extension by the way!

https://github.com/Phrogz/visual-scxml-editor/issues/45

相关推荐
骑着毛驴数星星5 小时前
CANDB++中的CAN_DBC快速编辑方法,使用文本编辑器(如notepad++和VScode)
vscode·can
界面开发小八哥13 小时前
「Java EE开发指南」如何使用MyEclipse中的Web Fragment项目?
java·ide·java-ee·eclipse·myeclipse
weixin_3077791314 小时前
VS Code配置MinGW64编译Ipopt库
开发语言·c++·vscode·算法
充气大锤15 小时前
从0开始配置conda环境并在PyCharm中使用
ide·pycharm·conda
weixin_3077791317 小时前
VS Code配置MinGW64编译backward库
开发语言·c++·vscode·算法
QL.ql1 天前
vscode的ws环境,esp32s3连接wifi
ide·vscode·编辑器
_错错错1 天前
Vim 常用快捷键及插件
编辑器·vim·linux 开发工具
阿波罗尼亚1 天前
@Autowired @Resource IDE警告 和 依赖注入
ide
大白同学4212 天前
【Linux】编辑器vim的使用
linux·编辑器·vim
Hyvial2 天前
VsCode 使用指南(配置 + 美化)
vscode