FE Tycoon
#VScode 如果你的 VS Code 很卡,可以尝试关闭硬件加速,看看有没有变快。步骤如下:
1、打开命令面板 (Mac 快捷键:Cmd + Shift + P,Windows 快捷键:Ctrl + Shift + P)
2、输入 "Preferences: Configure Runtime Arguments"
3、去掉这一行的注释(如果没有就加上去): "disable-hardware-acceleration": true
4、重启 VS Code
- 前端充电宝
1、打开命令面板 (Mac 快捷键:Cmd + Shift + P,Windows 快捷键:Ctrl + Shift + P)
2、输入 "Preferences: Configure Runtime Arguments"
3、去掉这一行的注释(如果没有就加上去): "disable-hardware-acceleration": true
4、重启 VS Code
- 前端充电宝
#VScode
就算不依靠第三方插件,也可以显示当前行的修改者了。使用 `git.blame.editorDecoration.enabled` 和 `git.blame.statusBarItem.enabled `设置启用此功能。也可以通过 `git.blame.editorDecoration.template` 自定义展示的格式。
就算不依靠第三方插件,也可以显示当前行的修改者了。使用 `git.blame.editorDecoration.enabled` 和 `git.blame.statusBarItem.enabled `设置启用此功能。也可以通过 `git.blame.editorDecoration.template` 自定义展示的格式。
{
"git.blame.editorDecoration.template": "${subject}, ${authorName} (${authorDateAgo})"
}