VScode快捷键设置和代码简写

VScode快捷键设置和代码简写1常用快捷键 单行注释 ctrl+/ 多行注释 alt+shift+a 复制上一行代码到下一行 alt+shift+↓ 移动代码到上一行或下一行 alt+↑,alt+↓ 返回到上次编辑位置 alt…

大家好,又见面了,我是你们的朋友全栈君。

1 常用快捷键

单行注释

ctrl+/

多行注释

alt+shift+a

复制上一行代码到下一行

alt+shift+↓

移动代码到上一行或下一行

alt+↑, alt+↓

返回到上次编辑位置

alt+←

格式化代码

ctrl+s

替换

ctrl+h

2 快捷键简写设置

snippets设置

  1. shift+ctrl+p
  2. 输入snippets

    VScode快捷键设置和代码简写

  3. 点击go.json

    VScode快捷键设置和代码简写

  4. 在json文件中加入
    // Place your snippets for go here. Each snippet is defined under a snippet name and has a prefix, body and 	// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the 	// same ids are connected.	// Example:	// "Print to console": {	// 	"prefix": "log",	// 	"body": [	// 		"console.log('$1');",	// 		"$2"	// 	],	// 	"description": "Log output to console"	// }	"pln":{		"prefix": "pln",		"body": "fmt.Println($0)",		"description": "fmt.Println()"	},	"plf":{		"prefix": "plf",		"body": "fmt.Printf(\"$0\\n\",)",		"description": "fmt.Printf()"	}

     

  5. 效果

    VScode快捷键设置和代码简写

3 Go语言标准库文档查阅

     中文版

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/131715.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号