This topic created in 378 days ago, the information mentioned may be changed or developed.
Supplement 1 · Jun 3, 2025
翻了一下这个插件里面的 dist 目录,拿 llm refine 了一下
```js
const EXTENSION_ID = "anyscalecompute.anyscale-workspaces";
...
const remoteSshConfig = vscode.workspace.getConfiguration("remote.SSH");
const currentDefaultExtensions = remoteSshConfig.get("defaultExtensions") || [];
const anyscaleDefaultExtensions = [
EXTENSION_ID,
"ms-python.python",
"ms-toolsai.jupyter-renderers",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter"
];
const updatedDefaultExtensions = Array.from(new Set([...currentDefaultExtensions, ...anyscaleDefaultExtensions]));
remoteSshConfig.update("defaultExtensions", updatedDefaultExtensions, vscode.ConfigurationTarget.Global);
```
看起来本身这个插件就是会往 defaultExtensions 里面塞自己
1 replies • 2025-06-03 23:01:01 +08:00
 |
|
1
halberd Jun 3, 2025
同,不知道什么时候被装上的。删除 settings 并卸载插件,搞掉了。刚刚我也在让 llm 分析代码,暂时好像没发现危害。
|