小编典典

如何从终端/命令行调用 VS Code Editor

all

这个问题说明了一切。

如何打开 VS Code 编辑器

  • 窗口命令
  • linux和mac终端

例如我写的记事本++

> start notepad++ test.txt

顺便说一句,编辑器很棒(跨平台)!谢谢纳德拉!

你可以从微软下载


阅读 172

收藏
2022-07-09

共1个答案

小编典典

要打开文件或目录,请使用以下命令:

code /path/to/file/or/directory/you/want/to/open

对于 macOS 用户 ,需要手动安装:

  1. 启动 VS 代码。
  2. Command + Shift + P打开命令面板。
  3. 键入shell command, 找到Shell Command: Install 'code' command in PATH并选择安装它。
  4. 重启你的终端。
2022-07-09