This extension pack packages some useful extensions for BMC Firmware engineer.
Feel Free to share your useful extensions.
Thank You !!!
My VSCode Keyboard Shorcuts - Windows
Provide some setup guidance before using the extensions. Visit the extension in market place to get more details of each extension, include setup guidance and function details.
First, follow below guidance to create one personal access token(PAT) with the scopes "api" and "read user" https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html
Note: Remember to backup your token after you create it. You won't be able to access the token after revisit the web page.
Once the PAT is created properly, in VSCode,
-launch the command palette (Press F1)
-Execute command "GitLab: Set GitLab Personal Access Token"
-Input Gitlab server URL (For example: https://gitlab.com)
-Input PAT
If the official gitlab server gitlab.com is not consumed, the VSCode setting "gitlab.InstanceUrl" should be set to match the target gitlab server.
-Launch the command palette (Press F1)
-Execute command "Preferences: Open Settings (UI)"
-Type "instanceurl" to locate the key "Gitlab: Instance Url".
-Click "Edit in settings.json", modify like below
"gitlab.instanceUrl": "https://your-gitlab.com",
The Git client should be properly configured for the VSCode source control functionality.
-Visit "Windows Credentials" in Windows "Credential Manager"
Click to see how to access the credential Manager
-Click "Add a windows credential"
assume the target gitlab server address is https://your-gitlab.com
Fill-in below information:
Internet address: git:https://oauth2@your-gitlab.com User name: oauth2 password: [Your PAT]
It's recommended to add the folder path for "Project Manager" extension to enumerate the available projects for switching between projects easily.
For Git projects, VSCode setting "projectManager.git.baseFolders" specify the folders to search available projects.
-Launch the command palette (Press F1)
-Execute command "Preferences: Open Settings (UI)"
-Type "git:base" to locate the key "Project Manager>Git: Base Folders".
-Click "Add Item" to add the folder to be scanned.
Press Ctrl+K Ctrl+S to launch the Keyboard Shortcuts table to customize below hotkeys,
Command | Hotkey | Command ID | Comment |
---|---|---|---|
markdown.extension.editing.toggleBold | Remove the extension default hotkey to keep Ctrl+B for toggle sidebar visibility | ||
Tasks: Run Task | Ctrl+K Shift+R | workbench.action.tasks.runTask | Choose and run one task |
Tasks: Run Test Task | Ctrl+K Shift+T | workbench.action.tasks.test | Run default test task |
Tasks: Terminate Task | Ctrl+K Shift+K | workbench.action.tasks.terminate | Terminate one or all task(s). |
Hopefully this Quick Guidance Help. Enjoy !!!