This article will talk about VSCode cool and practical multi-cursor editing. I will introduce the method of adding and using multi-cursors. I hope it will be helpful to everyone!
If you want to say which feature of VSCode has greatly improved coding efficiency, multi-cursor editing is definitely one of them. Multi-cursor editing allows us to avoid repeating the same text operations. The text processing commands built in VSCode and provided by third-party extensions can greatly enhance the flexibility of multi-cursor editing. I hope that by reading this article, I can teach readers how to flexibly use multi-cursor editing in daily editing. [Recommended learning: "vscode introductory tutorial"]
Content outline:
Hold down the ⌥ key, then move the cursor to wherever you want to add the cursor and click directly A cursor will be added.
The shortcut keys related to the cursor in VSCode all have the ⌥ key
We can open the VSCode shortcut key table through ⌘ K,⌘ S shortcut key combination and search for cursor
All shortcut keys related to the cursor will be listed. Search for add cursor
to view the shortcut keys related to add cursor
:
Add the cursor to the same column:
There can be multiple cursors and multiple selections in the VSCode editor at the same time. Most commands for adding a selection in VSCode will also add a cursor when adding a selection. Therefore, we can use the shortcut keys for adding a selection to add multiple cursors.
Commonly used ones are:
⌘ D is to add a selection to the next match found, so there is a high probability that there will be a command Used to add a selection to the previously found match.
If the text to be found is more complex, we can directly open the search first and use thecase provided in the search box to ignore ,
matches Whole word ,
regular function to find complex text, and then use
⌘ ⇧ L to select all.
If there is already a selection , we can use the shortcut key ⌥ ⇧ I To add the cursor at the end of all lines in the selection. If you want to move the cursor to the beginning of the line at this time, just enter the Home key.
Cursor movement Obviously you cannot use the mouse to position when editing multiple cursors, which requires us to use keys to move. The most basic four arrows are the up, down, left and right arrows, and the Home and End keys are needless to say. In addition, it is commonly used to move one word or part of a word at a time. You can view the shortcut keys related to moving the cursor by searching for
cursor right,
cursor end:
Word-level movement is very commonly used:
As mentioned before, the symmetrical design of VSCode commands, ⌥ → is to move to the right to the end of the next word, then ⌥ ← is to move the beginning of the previous word to the left.
And this also verifies what we said before, the shortcut keys related to the cursor all have ⌥. Therefore, when we customize shortcut keys, it is best to add ⌥ to the shortcut keys related to the cursor. For example, you can define ⌥ J to move to the previous git change, and then symmetrically design ⌥ K to move to the next git change. . Easy to remember and search.
Some Mac users may feel that the cursor moves too slowly. This can be adjusted in Settings
-> Keyboard
to make the cursor move smoother:
Delay before repeating
slider to set how long a character waits before it starts repeating. Key Repeat
slider to set the rate at which characters repeat. It is recommended to increase the key repeat
speedfaster, so that the cursor movement will be faster and smoother.
When editing with multiple cursors, the most common operations are moving, selecting, deleting, inserting, etc.
The shortcut key for moving the cursor plus ⇧ is the shortcut key for selecting the move area
Let’s list a few examples Verify this rule:
smart select. We know that the shortcut key
cmd D can select a word, but if you want to select a string, it will not work. At this time, you can use smart selection to achieve it.
The shortcut key to move the cursor plus theOn Mac⌫ key is leftThe shortcut key to delete the cursor moving area, add Up fn ⌫ is right shortcut key to delete the cursor movement area
⌘ → Represents the End key,
⌘ ← represents the Home key, fn
⌫ represents Delete This rule should be common to all applications.
letterCase as an example, the conversion results are:
transform to to find all text conversion commands
To give a practical example, for example, we need to change a bunch of constants that were originally in small camel case to all uppercase:
In addition to VSCode's built-in text processing commands, you can also use third-party plug-ins. Here are the recommendations: Text Power Tools. Reasons for recommendation: Active maintenance and rich functions.
There are many functions. Readers can check the extension homepage to learn more about it. I think if you don’t have the spirit of exploration and the ability to toss, you probably won’t be able to read this article. I will only demonstrate the function of inserting numbers here:
Capable readers can also write their own VSCode extensions to implement more text processing commands such as insertion, conversion, and even deletion. . It should be noted that all selections must be processed during implementation. For example, the author's VSCode extension VSCode FE Helper implements an extension that converts selected words into plurals as follows. The code is very simple. You can notice that all selections are traversed, so when calling this command during multi-cursor editing, all selections can be processed:
import { TextEditor } from 'vscode'; export default async function plur(editor: TextEditor): Promise<void> { const { default: pluralize } = await import('pluralize'); editor.edit((editorBuilder) => { const { document, selections } = editor; for (const selection of selections) { const word = document.getText(selection); const pluralizedWord = pluralize(word); editorBuilder.replace(selection, pluralizedWord); } }); }
Next I will demonstrate a few examples of how I usually use multiple cursors. For those who are not familiar with multi-cursor editing, it may seem a bit complicated, but if you practice it yourself and practice it, you should be fine. I often use multi-cursor editing when developing, but it is not as smooth as demonstrated in the article, and the steps may not be the minimum, but it is still much more efficient than repeated editing. I often make mistakes when typing, but it doesn’t matter because I can withdraw it anyway.
As we all know, when you learn ctrl c, ctrl v, you are already a junior programmer. When you can not only copy code but also modify other people's code, then you are already a mature programmer. Learning multi-cursor editing can greatly improve the efficiency of modifying code.
When we copy a piece of JS code from stackoverflow, there may be many vars in it. We can use multi-cursor editing to replace all vars with let.
Steps:
Place the cursor on var
⌘ ⇧ L, to select all var
Enter let
Sometimes when I open a new project, I need to install many eslint plug-ins. My initial approach was to copy the package names one by one from the package.json of the previous project, which was too troublesome. Some people say, why don't you just copy the package name and version number to the package.json of the new project? The main reason for not doing that is that the package version number of the previous project is not necessarily the latest, and the new project needs to install the latest version.
Steps:
Open package.json and set the cursor to the first package name
⌘ Alt ↓Add multiple cursors to multiple package names
##^ ⇧ →, use smart select to select the package name and
⌘ Ccopy
⌘ N, create a new temporary file, ⌘ Vpaste it
⌘ Alt ↓Add multiple cursors to the same column below
⌫, then type a space to copy the entire text to the terminal
function App() { return ( <HashRouter> <Routes> <Route index element={<Home />} /> <Route path="/settings" element={<Settings />} /> <Route path="/collection" element={<Collection />} /> <Route path="/notFound" element={<NotFound />} /> </Routes> </HashRouter> ); }
export function App() { return ( <HashRouter> <Routes> <Route index element={<Home />} /> <Route path={RoutePath.Settings} element={<Settings />} /> <Route path={RoutePath.Collection} element={<Collection />} /> <Route path={RoutePath.NotFound} element={<NotFound />} /> </Routes> </HashRouter> ); } enum RoutePath { Settings = '/settings', Collection = '/collection', NotFound = '/notFound', }
在我 TypeScript 类型体操实例解析 这篇文章中有实现过一个将字符串字面量类型中所有字符转换成大写的类型:
type LetterMapper = { a: 'A'; b: 'B'; c: 'C'; d: 'D'; e: 'E'; f: 'F'; g: 'G'; h: 'H'; i: 'I'; j: 'J'; k: 'K'; l: 'L'; m: 'M'; n: 'N'; o: 'O'; p: 'P'; q: 'Q'; r: 'R'; s: 'S'; t: 'T'; u: 'U'; v: 'V'; w: 'W'; x: 'X'; y: 'Y'; z: 'Z'; }; type CapitalFirstLetter<S extends string> = S extends `${infer First}${infer Rest}` ? First extends keyof LetterMapper ? `${LetterMapper[First]}${Rest}` : S : S;
这个 LetterMapper
类型手敲会觉得很浪费光阴,让我们用多光标编辑酷炫的实现它:
VSCode 作为编辑器界的新生代王者,集百家之众长,除了多光标编辑还有很多可以提高编码和重构效率的特性。例如:
等等。作为一个 VSCode 老玩家,我都觉得 VSCode 还有很多使用的功能特性地方我没探索到。众所周知,折腾编辑器,折腾 shell,折腾系统,是程序员的三大乐趣。充满未知才会有趣,才能让我们热此不疲,让我们每一次发现新大陆的时候感叹自己以前的无知。
多光标编辑是 VSCode 一个非常实用的特性,熟练掌握光标的移动,选中,删除和一些常用的文本处理命令可以让我们使用多光标编辑时更加得心应手。VSCode 的快捷键设计有它的一套自己的设计哲学,理解它不但有助于我们记忆快捷键,也便于在快捷键表中搜索。在我们自定义快捷键或者编写扩展的提供默认快捷键的时候也应该要参考这套哲学。当你觉得对下前编码重构的效率不满意时,不妨折腾下编辑器,也许能够带给你意外的惊喜。
本文完。
更多关于VSCode的相关知识,请访问:vscode教程!!
The above is the detailed content of Let's talk about how to add and use multiple cursors in VSCode. For more information, please follow other related articles on the PHP Chinese website!