在 vscode 插件开发中使用 language server 时,官方示例中有些地方已过时。
在 lsp-sample 中,要调试 server 时,在最新版本的 vscode 中并不成功。需要改动两个地方: 1、把 launch.json 中的"protocol": "legacy" 改为 "protocol": "inspector" 2、--debug=6009 改为 --inspect=6009
原因在于从 1.14 版本开始,node debug 已将 legacy 模式改为 inspector 模式,相关参数也有所改变。
详情见: https://code.visualstudio.com/updates/v1_14#_node-debugging
1
noe132 2017-09-24 15:24:51 +08:00
我选择 atom.....
|