VSCode作为一款流行的编辑器,它具有丰富的功能,比如智能提示,运行和调试代码,内置git,扩展插件等等。在日常的开发工作中,我们常常需要打开配置文件或者其他文本文件,一般情况我们首先打开文本编辑器,然后通过File菜单打开需要的文件,这样做比较麻烦,尤其是在命令行中工作的情况,本篇文章介绍code命令在mac系统中的安装和使用。
安装
首先打开VSCode,然后使用快捷键Shift+Command+P,调起命令窗口,输入shell Command,下方出现Install ‘code’ command in PATH选项,点击以安装。
安装成功后,出现弹框提示
使用
打开命令行,进入工作目录,如果要打开某个文本文件,直接输入code + 文件名称即可。如果要打开某个文件夹,可以先进入这个文件夹,在命令行中敲入code . 就可以了。
选项 | | |
---|
-d --diff | Compare two files with each other. | 比较两个文件的差异 | -a --add | Add folder(s) to the last active window. | 向窗口中添加文件夹 | -g --goto <file:line[:character]> | Open a file at the path on the specified line and character position. | 指定某一行 | -n --new-window | Force to open a new window. | 强制使用新窗口 | -r --reuse-window | Force to open a file or folder in an already opened window. | 复用现有窗口 | -w --wait | Wait for the files to be closed before returning. | 等待文件关闭 | –user-data-dir
| Specifies the directory that user data is kept in. Can be used to open multiple distinct instances of Code. | 用户数据保存目录 | -h --help | Print usage. | 帮助 |
code命令除了打开现有文件,它还支持新建文本文件,直接在目录中输入code + 新文件名,它会自动创建新文件,然后在VSCode中编辑保存就可以了。
|