Photo by Mark Fletcher-Brown on Unsplash
This post is about some visual studio code extension, and tips i found.
VS Code
Commands
Here are some command i used:
F1 : Open command
Ctrl + P : Find File
Ctrl + T : Find method
Ctrl+⇧+P: : Toggle Screencast Mode (to show command)
Shit+Alt+F : Format Document
Ctrl+ù : Open Terminal
Shift + F12 : Find References
vscode cheatsheet
Extensions
Here is a snippet to list all installed extensions:
code --list-extensions | % { "code --install-extension $_" }
Extension pack list [Docs authoring]
Extension recommended by Microsoft to write docs
CodeTour
CodeTour allow you to add
a tour with Markdown in your files.
Make link to send command to terminal
Write in your codetour
>> ls
and it will be rendered as a link that will be executed in your terminal.
Insert diagram
Write
![text](relative link from the repository to your diagram)
to refer to a svg file. You can couple this one with draw.io extension.
Examples
Didact
Didact is a tool to interact and modify vscode itself.
The tutorial is easy to follow.
You can create link that can:
- create named terminal
- send command to named terminal
- interact with vscode etc ..
This page is important to understand how to create lonk that will be interpreted as command using didact.
Hope this helps !
Top comments (0)