Visual Studio使用实用技巧

快捷键篇

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

 

2. create your own snippets

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

 

你可能感兴趣的:(go)