Home > Development Tools > VSCode > body text

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)

奋力向前
Release: 2021-09-16 10:38:16
forward
5621 people have browsed it

In the previous article "In-depth analysis of the production and use of css font icons (code sharing)", we learned about the production and use of css font icons. The following article will show you how to use the plug-in in vscode to replace the code of the entire project. Let's see how to do it together.

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)

Use this vscode plug-in to replace the code of the entire project in minutes

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)

Preface

Since the gogocode tool was open sourced, we have heard calls from community partners for the vscode plug-in, so we reused it The ability of playground is combined with the local file and directory structure to develop the vscode plug-in!

playground address https://play.gogocode.io/

vscode plug-in https://marketplace.visualstudio.com/items?itemName=mmfe .vscode-gogocode

My feeling after using it is: I should have listened to my friends earlier, it’s so delicious!

Now that the plug-in has taken shape, let me introduce how to use the GoGoCode plug-in to facilitate batch code conversion and modification.

Download and install

vscodePlug-in store searchgogocode

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)

Try converting a single file

1. Right-click the file and "Convert with GoGoCode" to open the plug-in window

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)

##2 . Write conversion code: I want to rewrite the introduction method of

component, and change the code in the form of (resolve) => require([xxx], resolve) to () => import(xxx)

If you have more complex processing scenarios, you can write conversion logic based on gogocode. Refer to the documentation. Currently, conversion of js, html, and vue is supported.

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)

3. Replace the source file: The conversion effect is immediate. Click

replace, and the file will be modified successfully~

Batch convert files

gogocodeThe plug-in also supports replacement in the entire project or multiple selected files

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite) ##1. Select the folder: Right-click on the file directory, "Convert with

gogocode

"

If you want to block certain selected files or folders, you can ctrl-click multiple files Then remove in batches

2. Write the conversion code

3. Replace the original file:

replace

You can only replace the currently displayed file, replaceAllYou can replace all files in the directory tree

When replacingAll, only files that have been successfully converted will be replaced, and files that have been converted incorrectly will not be replaced

For this requirement , a friend in the exchange group contributed a regular rule:

One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite)# It is really convenient to use regular rules for simple replacement, but there are many boundary conditions to consider, such as spaces, newlines, and special characters. wait. If it is more complicated and difficult to use regular expressions, you are welcome to use

gogocode

. Free one-click upgrade vue2 function

In addition to very convenient batch replacement, friends who install the

gogocode

plug-in can enjoy one-click upgrade to vue2 for free Code upgrade to vue3 rights! You only need to right-click the folder and select "

vue2

Upgrade to vue3". You don't need to type commands or copy and paste the path to convert the code with one click. For more information on vue upgrades, you can click here: Alimama has made a new tool to help you change the Vue2 code to the of Vue3

Official website address: https://gogocode.io/zh

Recommended learning:
vscode tutorial

The above is the detailed content of One trick to teach you to use the plug-in in vscode to replace the code of the entire project (favorite). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.im
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!