Wraps your code in a Markdown code block.
This works well when chatting with AI, as it provides more context for the code block.
⌘;
I have the following code in my clipboard:
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
I run the command and select go
as the language for the codeblock:
and the codeblock is inserted in the markdown file:
```go
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
```
Thanks for icons from vscode-material-icon-theme