文档中提到了一种叫做代码的可执行文件,但我不确定在哪里可以找到它,所以我可以把它放在我的路径上。我从VSCode网站下载的zip文件不包括任何这样的可执行文件。(我可以很好地运行.app。)
这是windows独有的功能吗?
文档中提到了一种叫做代码的可执行文件,但我不确定在哪里可以找到它,所以我可以把它放在我的路径上。我从VSCode网站下载的zip文件不包括任何这样的可执行文件。(我可以很好地运行.app。)
这是windows独有的功能吗?
从Visual Studio代码设置页面:
Tip: If you want to run VS Code from the terminal by simply typing 'code', VS Code has a command, Shell Command: Install 'code' command in PATH, to add 'code' to your $PATH variable list. After installation, launch VS Code. Now open the Command Palette (F1 or ⇧+⌘+P on Mac) and type shell command to find the Shell Command: Install 'code' command in PATH command. After executing the command, restart the terminal for the new $PATH value to take effect. You'll be able to simply type 'code .' in any folder to start editing files in that folder.
在OSX Mavericks上,我在~/bin中创建了一个名为vscode的bash脚本(改编自vscode Setup中的.bashrc):
#!/bin/bash
if [[ $# = 0 ]]
then
open -a "Visual Studio Code"
else
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
open -a "Visual Studio Code" --args "$F"
fi
Vscode <文件或目录>现在按预期工作。
我们将脚本更新为以下语法,以支持多个文件和文件夹作为参数,并修复了无法正确检测当前工作目录的问题:
code () {
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*
}
VS Code 1.0版本更新:
请从命令面板(查看|命令面板)使用命令在路径中安装“代码”命令或在路径中安装“代码内部人员”命令,使代码可用于命令行。
我发现了mingw32的一个巧妙的解决方法(即对于那些使用git-scm.com在windows上安装的bash版本的人来说):
code () { VSCODE_CWD="$PWD" cmd //c code $* ;}
我有一个~/bin/code shell脚本,它与@BengaminPasero写的命令相匹配。
#!/bin/bash
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*
我把~/bin:前缀到我的$PATH,这允许我在不污染~/的情况下添加一堆一次性脚本。bash_profile脚本。
将此添加到/usr/local/bin/code,如果它们不同,您可能需要修改路径。
#!/usr/bin/env bash
CONTENTS="/Applications/Visual Studio Code.app/Contents"
ELECTRON="$CONTENTS/MacOS/Electron"
CLI="$CONTENTS/Resources/app/out/cli.js"
ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
exit $?
之后制作可执行文件
sudo chmod +x /usr/local/bin/code
如果你想在你的终端上打开Visual Studio Code上的文件或文件夹,下面的iTerm等命令是你安装Visual Studio Code时默认使用的命令
从命令行打开Visual Studio Code
code --
打开整个文件夹/目录
code .
打开特定的文件
code file_name
eg:- code index.html
我运行:open -a "Visual Studio Code" [folder-name]用我的Visual Studio Code应用程序打开一个文件夹。如果您只是想打开应用程序,文件夹名称是可选的。不确定这是否是您的用例,但希望这对您有所帮助!
在VS Code命令行中给出的启动路径的指令是不正确的;示例中显示的前导冒号不起作用。但是,以反斜杠结束的目录名启动将按预期打开指定的目录。
举个例子,
代码C:\Users\DAVE\Documents\编程\角\ StringCalculator \ src \
在C:\Users\DAVE\Documents\Programming\Angular\StringCalculator\src目录下打开Visual Studio代码编辑器。
重要提示:终端反斜杠虽然是可选的,但很有用,因为它清楚地表明意图是打开一个目录,而不是打开一个文件。请记住,文件扩展名一直都是可选的。
注意:附加到PATH列表的目录是\bin目录,shell命令代码启动Windows NT command脚本。
因此,当合并到另一个shell脚本中时,如果您希望运行脚本的其余部分,则必须调用或启动代码。值得庆幸的是,在我第一次测试一个新的shell脚本之前,我发现了这一点。我创建这个脚本是为了在本地Web服务器、默认的Web浏览器和Visual Studio Code中同时启动一个Angular 2项目。
下面是我的Angular启动脚本,经过调整,消除了对某个发布在其他地方的系统实用程序的依赖,但不是严格要求的。
@echo off
goto SKIPREM
=========================================================================
Name: StartAngularApp.CMD
Synopsis: Start the Angular 2 application installed in a specified
directory.
Arguments: %1 = OPTIONAL: Name of directory in which to application
is installed
Remarks: If no argument is specified, the application must be in
the current working directory.
This is a completely generalized Windows NT command
script (shell script) that uses the NPM Angular CLI to
load an Angular 2 application into a Node development
Web server, the default Web browser, and the Visual
Studio Code text editor.
Dependencies: Unless otherwise specified in the command line, the
application is created in the current working directory.
All of the following shell scripts and programs must be
installed in a directory that is on the Windows PATH
directory list.
1) ShowTime.CMD
2) WWPause.exe
3) WWSleep.exe
4) npm (the Node Package Manager) and its startup
script, npm.cmd, must be accessible via the Windows
PATH environment string. By default, this goes into
directory C:\Program Files\nodejs.
5) The Angular 2 startup script, ng.cmd, and the Node
Modules library must be installed for global access.
By default, these go into directory %AppData%\npm.
Author: David A. Gray
Created: Monday, 23 April 2017
-----------------------------------------------------------------------
Revision History
-----------------------------------------------------------------------
Date By Synopsis
---------- --- --------------------------------------------------------
2017/04/23 DAG Script created, tested, and deployed.
=======================================================================
:斯基普雷姆
echo BOJ %~0, version %~t0
echo.
echo -------------------------------------------------------
echo Displaying the current node.js version:
echo -------------------------------------------------------
echo.
node -v
echo.
echo -------------------------------------------------------
echo Displaying the current Node Package Manager version:
echo -------------------------------------------------------
echo.
call npm -v
echo.
echo -------------------------------------------------------
echo Loading Angular starter application %1
echo into a local Web server, the default Web browser, and
echo the Visual Studio Code text editor.
echo -------------------------------------------------------
echo.
if "%1" neq "" (
echo.
echo -------------------------------------------------------
echo Starting the Angular application in directory %1
echo -------------------------------------------------------
echo.
cd "%~1"
call code %1\src\
) else (
echo.
echo -------------------------------------------------------
echo Starting the Angular application in directory %CD%
echo -------------------------------------------------------
echo.
call code %CD%\src\
)
call ng serve --open
echo.
echo -------------------------------------------------------
echo %~nx0 Done!
echo -------------------------------------------------------
echo.
Pause
windows用户 只要输入
>code .
这里有更多命令 https://code.visualstudio.com/docs/editor/command-line
你可以使用Visual Studio Code定义的vscode:协议:
open vscode://file/full/path/to/project/or/file
你也可以使用
/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code
如果你不想修改你的路径
这是我在这篇文章中寻找的教程。它展示了通过编写代码在Visual Studio Code中打开文件的方法。
1.-打开文件
Bash
open ~/.bash_profile
终端OS
open ~/.zshrc
2.-在你的文件中添加:
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
3.-重新设置终端,并尝试在你想打开的文件夹
code .
4.-那么你可以像下面的评论那样使用它:https://stackoverflow.com/a/41821250/10033560
在打开VSC并按下(Command + Up + P)后,我尝试输入“shell Command”,但什么都没有出现。为了得到“Shell Command: Install 'code' Command In PATH Command”,你必须执行以下命令:
按(Command, Up, P) 输入>(这将显示并运行命令) 然后在PATH命令中输入Shell命令:Install 'code'命令。然后它就会出现。 一旦你点击它,它会更新,你应该很好!
从命令行文档启动MacOS X
注意:仅适用于Windows用户。
正如许多人已经建议从命令提示符使用代码打开代码的方法一样。命令。这将只打开Visual Studio Code Stable构建。但是如果你已经下载了Visual Studio Code Insider版本/版本(它有所有最新的版本/功能,但不稳定的版本),那么你需要在windows中遵循以下说明:
进入控制面板\系统和安全\系统。单击高级系统设置 点击环境变量 在系统变量选项卡下,单击路径变量的编辑 新增路径C:\Users\tsabu\AppData\Local\Programs\Microsoft VS Code Insiders\bin (或) C:\Program Files\Microsoft VS Code Insiders\bin基于你在机器中安装vscode insider的位置。 打开一个新的命令提示符并输入code-insiders。打开vcode -insider 建立/版本
很简单:
从命令行启动
你也可以在终端运行VS Code,在将它添加到路径后输入' Code ':
启动VS代码。 打开命令面板(⌘P),输入'shell Command ',在PATH命令中找到shell Command: Install 'code'命令。
源
https://code.visualstudio.com/docs/setup/mac
如果你在下载文件夹中安装你的vs code,你需要将vs code移动到应用程序文件夹,然后打开vs code,然后按shift + command + p,你会看到下图。然后你需要输入代码。现在可以开始了。
链接你当前的文件夹到vscode。
Windows Registry Editor Version 5.00
; Directory\Background\shell => on empty space
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode]
"Icon"="C:\\current-folder-vscode\\Code.exe,0"
@="VsCode"
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]
@="C:\\current-folder-vscode\\Code.exe ."
; Directory\shell => on a folder
[HKEY_CLASSES_ROOT\Directory\shell\vscode]
@="VsCode"
"Icon"="C:\\current-folder-vscode\\Code.exe,0"
[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]
@="C:\\current-folder-vscode\\Code.exe ."
试试这个
打开Visual Studio Code,按Command + Shift + P,然后在命令面板中输入Shell,现在你可以找到这个选项,比如Shell命令:从命令面板中的建议列表中安装代码。选择该选项。
通过终端/命令提示打开VSCode
就是这样。
现在打开终端类型。
$ code。
这是我在Mac OS Catalina上的工作方式——在这里找到(谢谢,Josiah!)
如果你在Mac OS Catalina上,你需要编辑你的.zprofile而不是.bash_profile。
编辑~/。Zprofile文件:vim ~/.zprofile 在它自己的行中添加以下代码:code () {VSCODE_CWD="$PWD" open -n -b "com.microsoft。——args $*;} 保存文件::wq 重新运行更新的文件:source ~/.zprofile。 测试运行的代码。在VS Code中打开你的当前文件夹!
如果你使用snap安装VS CODE。您需要在PATH环境变量中添加/snap/bin。 打开。bashrc或。zshrc 并在PATH环境变量中添加/snap/bin
重新加载终端, 代码命令将启动它
对于我来说,在Macbook Book Pro 2019 MacOS版本10.15.6上,在VSCode中打开命令面板的快捷方式是Shift + command + P。
打开它,你只需要写安装代码,然后按enter键。
之后,只需打开终端,输入代码,你的vscode将开始打开。
如果你正在使用可视代码内部,并且你想从你的终端或任何其他命令行工具在visual Studio code内部打开一个文件或文件夹,那么你可以参考下面的命令,这些命令在visual Studio code内部默认出现。
从命令行打开Visual Studio Code
code-insiders——
打开整个文件夹/目录
code-insiders。
打开特定的文件
code-insiders file_name
例:- code index.html
在我的情况下,我必须使用一个别名:
alias code="/<PATH TO VSCODE>/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code"
您可以在~/.bash_profile中添加这个别名。
我把这个添加到我的~/.profile中
alias vscode='/Applications/Visual\ Studio\ Code.app/Contents/MacOS/Electron'
then
. ~/.profile
之后我就可以做了
vscode
从终点站
运行代码的步骤。命令启动VSCode应用程序-
打开VSCode 打开命令托盘(Cmd+Shift+P) 输入Shell命令:在PATH中安装'code'命令并选择 你会得到Shell命令'code'成功安装在PATH的通知。 重新启动终端并输入代码。 这将从其中的当前文件夹文件打开VSCode。