如何使用命令行在VSCode中安装多个扩展名

问题描述 投票:0回答:1

如何使用cli在VSCode中安装多个扩展?我尝试过:

code --install-extension xyz.local-history jock.svg

但是它仅安装第一个扩展名xyz.local-history

Installing extensions...
Installing extension 'xyz.local-history' v1.7.0...
(node:10874) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Extension 'xyz.local-history' v1.7.0 was successfully installed.
visual-studio-code install command-line-interface
1个回答
0
投票

for extensions in ms-python.python ms-azure-devops.azure-pipelines ms-mssql.mssql do code --install-extension $extensions done
© www.soinside.com 2019 - 2024. All rights reserved.