1. 程式人生 > 其它 >Visual Studio使用實用技巧

Visual Studio使用實用技巧

技術標籤:Gogo

快捷鍵篇

1. 在當前行插入空行:Ctrl + Enter

2. create your own snippets

{
	"format print line":{
		"scope": "go",
		 "prefix": "pp",
		 "body": [
			"fmt.Println(\"$1\")"
		 ],
		 "description": "format print line"
	}
}