译文 你不知道的VS Code冷门快捷技巧( 三 )


如果你一直在手动操作,那么你需要知道有更好的方法 。
Yes, you need to startcodewith the,in the.on thefile’s , a“”will be used tothe code usingrules of , line ,and , etc.
是的,你需要使用 "命令面板 "中的 "格式化文档 "命令开始自动格式化代码 。根据当前文件的语言,将使用特定的 "默认 "格式器,使用各种缩进、行长、大括号和小括号等规则来格式化代码 。
While there’s abuilt-in JS/TS , for a more, Ithe.
虽然有一个相当不错的内置 JS/TS 格式化器,但要想获得更强大的解决方案,我强烈推荐使用扩展 。
After , you’ll set it as your.
安装后,您将把它设置为默认格式化程序 。
When you useover , there’s ayouto makea bit :
**
在使用手动保存而非自动保存时,有一项功能需要启用,以使格式化更容易一些:**
-:On Save: “ a file on save. Amust be , the file must not be saved after delay, and themust bedown”. It isby .
编辑器:保存时格式化:“保存时格式化文件 。格式化程序必须可用,延迟后不得保存文件,并且编辑器必须关闭” 。默认情况下它是禁用的 。
So with thison, VS Code willyour code with thewhen you save the file with Ctrl + S, as you saw in the above demo.
因此,启用此设置后,当您使用 Ctrl + S 保存文件时,VS Code 将自动使用当前默认格式化程序格式化您的代码,如上面的演示中所示 。
When you do ,On Save doesn’t work, and it can gettoopen thewhen you’reevery now and then. And that’s whatare for:
自动保存时,"保存时格式化 "不起作用,而且当你不时格式化时,连续打开 "命令调板 "会很乏味 。这就是键盘快捷键的作用:
: Shift + Alt + F
Mac: Shift ++ F
Linux: Ctrl + Shift + I
I’m onand , I don’t like this;makes meevery now and then, and Shift + Alt + F gotafter a while.
我使用的是系统,我个人并不喜欢这个默认快捷键;自动保存让我时不时就要格式化一次,而且 Shift + Alt + F 用久了也会让人心烦意乱 。
So Iit to Ctrl + D, Ctrl + D - achord that’s muchto press and , and has no. Iyou do the same.
所以我把它改成了 Ctrl + D, Ctrl + D - 一个更容易按、更容易记,而且没有冲突键绑定的键盘快捷键 。我建议你也这样做 。
9. Save time with multi-9. 使用多光标编辑节省时间
One of the wowin myVS Code days, the multi-lets you placeat, andorthe same texttimes. Thisuptime and, as we gettasks donewith rapid code .

译文  你不知道的VS Code冷门快捷技巧

文章插图
多光标编辑是我最早使用 VS Code 时的一大亮点,它可以让你在不同的点上放置多个光标,并多次删除或插入相同的文本 。这加快了编辑时间,大大提高了工作效率,因为我们可以在快速创建代码的同时高效地完成重复性工作 。
Of , when , there’sat least one . Use Alt + Click to add more.
当然,在编辑时,总是至少有一个光标 。使用 Alt + 单击可添加更多光标 。
You can alsoadd aabove or below theline, with Ctrl + Alt + Down or Ctrl + Alt + Up.
您还可以使用 Ctrl + Alt + Down 或 Ctrl + Alt + Up 在当前行的正上方或下方轻松添加光标 。
Theserun the AddAdd.
这些快捷键分别运行 AddAbove 和 AddBelow 命令 。
10.new/ file10. 快速创建新文件夹/文件
There’s nowhere we don’tnewand files, and if there was a way tofile/ , all the time saved would add up to give us aboost.
如果有一种方法可以加快文件/文件夹的创建速度,那么节省下来的所有时间都将大大提高我们的工作效率 。
If you’ve beennew files andin VS Code with the new file and new, then yes, there is a way.
如果你一直在 VS 代码中使用新建文件和新建文件夹按钮创建新文件和文件夹,那么是有办法的 。