Windows為VSCode新增右鍵選單

2021-09-27 01:42:02 字數 823 閱讀 3126

在本地建立乙個.reg字尾的檔案,檔名test(可自定義)

建立好檔案後將其拖到任意一款編輯器當中,新增其內容

windows registry editor version 5.00

[hkey_classes_root\directory\background\shell\vscode]

@="open vscode here"

"icon"="d:\\microsoft vs code\\code.exe"

[hkey_classes_root\directory\background\shell\vscode\command]

@="d:\\microsoft vs code\\code.exe ."

[hkey_classes_root\directory\shell\vscode]

@="open vscode here"

"icon"="d:\\microsoft vs code\\code.exe"

[hkey_classes_root\directory\shell\vscode\command]

@="d:\\microsoft vs code\\code.exe %1"

這裡我的vscode安裝在d盤下的microsoft vs code目錄,可根據你的安裝路徑進行修改,需要注意其中路徑使用\\進行分割,

修改好內容後雙擊執行test.reg,將其新增入登錄檔。

可以看到已經新增成功了!

Windows下VSCode執行Bash終端

可能windows開發的乙個缺點就是與shell結合的不好,git bash提供了一種方式可以在windows下執行linux命令,如何將其結合在vscode中使用呢?參考回答 兩種方式 1.將git bash目錄比如c program files x86 git bin bash.exe新增到環境...

Windows下VSCode執行Bash終端

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!可能windows開發的乙個缺點就是與shell結合的不好,git bash提供了一種方式可以在windows下執行linux命令,如何將其結合在vscode中使用呢?參考回答 兩種方式 1.將git bash目錄比如c program files...

vscode 搭建cpp環境 windows

學習自 vscode 配置c c 環境 編寫執行c c 2.安裝cpptools外掛程式 按ctrl p開啟快速命令框,輸入以下命令後等待 ext install cpptools 3.安裝編譯 除錯環境 目前windows下除錯僅支援 cygwin 和 安裝 mingw 選中幾個需要的項右鍵mak...