惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

博客园 - Bob-wei

CMakeList.txt Windows Terminal 配置文件 C# 7.2 中 In参数( in parameter )的性能比较 JavaScript 的 parseInt(x), parseFloat(x), Number(x), +x, ~~x, x>>>0, isNaN(x) 区别和结果 Windows Terminal 配置 git-bash,集成右键菜单,集成VSCode 恢复WIn10 2004的“要使用本计算机,用户必须输入用户名和密码”选项 plantuml server with math docker image aspnetcore singleton service in app.use [bash] 编写7zz函数替换7z压缩命令 Chrome 不跟随 macOS 系统主题改变深色模式 VSCode的浅色主题(Default Light+)侧边活动栏改为浅色 VSCode_Extensions C++ in VSCode 用户中心 - 博客园 C# 私有字段前缀 _ 的设置(VS2019, .editorconfig) dotnet 跨平台编译发布 重新调整动态vhdx占用的空间 通过git-bash一句话获得当前目录的全部csproj文件绝对路径 devdocs
Visual Studio 配置额外工具 Windows Terminal 等
Bob-wei · 2021-05-31 · via 博客园 - Bob-wei
添加额外工具:
Tools -> External Tools...
1. 添加Git Console(安装Windows版Git可用)
                Title: Git Console
              Command: C:\Program Files\Git\bin\sh.exe
            Arguments: --login
    Initial directory: $(ItemDir)
2. 添加Win10的Bash(推荐,安装zsh、antigen或者on-my-zsh以及git后,可以用很多git的alias)
   注意:vs是x86程序,不能直接用%systemroot%\System32\bash.exe,需要用sysnative目录或者找它的源文件。
                Title: Bash
              Command: C:\Windows\sysnative\bash.exe
            Arguments: --login
    Initial directory: $(ItemDir)
3. Sublime Text
                Title: Sublime Text
              Command: "C:\Program Files\Sublime Text 3\sublime_text.exe"
            Arguments: $(ItemPath):$(CurLine):$(CurCol)
    Initial directory: $(ItemDir)
4. Notepad2
                Title: Notepad3
              Command: "C:\Program Files\Notepad3\Notepad3.exe"
            Arguments: /g $(CurLine),$(CurCol) $(ItemPath)
    Initial directory: $(ItemDir)
5. VSCode
                Title: VSCode
              Command: "C:\Program Files\Microsoft VS Code\Code.exe"
            Arguments: -g $(ItemPath):$(CurLine):$(CurCol)
    Initial directory: $(ItemDir)
6. Explorer
                Title: Explorer
              Command: C:\Windows\System32\explorer.exe
            Arguments: /Select,"$(ItemPath)"
    Initial directory: $(ItemDir)
7. Windows Terminal
                Title: Windows Terminal
              Command: C:\Windows\System32\cmd.exe
            Arguments: /d /c for /f "tokens=1" %i in ('dir /b "%userprofile%\AppData\Local\Microsoft\WindowsApps\Microsoft.WindowsTerminal*"') do start "" "%userprofile%\AppData\Local\Microsoft\WindowsApps\%~i\wt.exe"
    Initial directory: $(ItemDir)
                  [x]: Close on exit


关闭反馈
~~~~~~~
Help -> Send Feedback -> Settings
No, I would not lick to participate.

posted @ 2021-05-31 21:13  Bob-wei  阅读(709)  评论()    收藏  举报