-
-
Save pedoc/c510ba7ecf6c7c65133d9806f00b9978 to your computer and use it in GitHub Desktop.
Opening Windows Terminal and VSCode from SmartGit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add these entries to your `tools.yml` to be able to right-click to open | |
# things in VSCode (files and folders) and Windows Terminal (folders only) and Visual Studio(sln files). | |
# Make sure to change `YOUR_USERNAME` in the VSCode path. | |
tools: | |
- name: Open in VSCode | |
fileStarter: {command: 'C:\Users\YOUR_USERNAME\AppData\Local\Programs\Microsoft VS Code\Code.exe', | |
parameters: '"${filePath}"'} | |
useForOpen: true | |
waitUntilFinished: false | |
filePattern: '*' | |
- name: Open in Windows Terminal | |
fileStarter: {command: cmd.exe, parameters: '/c wt.exe -d "${filePath}"'} | |
useForOpen: true | |
waitUntilFinished: false | |
filePattern: '*' | |
forFilesNotDirectories: false | |
- name: Open default sln | |
fileStarter: {command: opendef.exe, parameters: '--path "${filePath}" --ext sln'} | |
useForOpen: true | |
waitUntilFinished: false | |
filePattern: '*' | |
forFilesNotDirectories: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment