Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How can VisualStudio be extended to make programming easier

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the knowledge of "how to expand VisualStudio to make programming easier". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

1.BuildVision

BuildVision (sourse) is an extension of the visual build process:

This small extension shows you the status of the build process, how long it took, and, most importantly, the errors (if any) generated during the build process. The advantage of this is that errors can be grouped under each item, which is easier to navigate than the flat list in the error output:

2.GitDiffMargin

GitDiffMargin (sourse) adds a space to the left column of the VisualStudio editor (or scroll bar if you like) and shows the differences before and after changing / deleting lines, allowing you to quickly navigate and revert to previous changes!

This is the perfect companion for the Git project, and it's great to use it with VisualStudioGitProvider, assuming you use VisualStudioGitProvider.

So it occurred to me:

3.NoGit

NoGit (sourse) does only one thing-invalidate the built-in VisualStudioGit source control vendor, because VisualStudioGit source control vendors have a habit of restarting themselves as soon as you open a solution that uses Git. NoGit will always close this provider.

4.ReopenStartPage

Another time-saving VisualStudio extension is ReopenStartPage (sourse), which literally reopens VisualStudio's Start page when you close a solution. Personally, I like to use the list of recent solutions on the Start page, which is really convenient for opening recently used solutions!

5.SaveAllTheTime

SaveAllTheTime (sourse) is another VisualStudio extension that allows VisualStudio to save modified files and projects all the time. VisualStudio sometimes does not save the project file when you rename or move the file. SaveAllTheTime ensures that everything is saved before you submit the changes!

In addition, SaveAllTheTime has a widget that often reminds you to submit. Of course, assuming you don't need git, you can disable this widget.

How can VisualStudio extensions make programming easier

6.TabSanity

TabSanity (sourse) can make tabs-as-spaces behave like an actual tabs! Backspace and delete keys, arrow navigation will not allow the insertion of symbols into the space forming the label, it will jump to the next "label", no longer need brother keys!

7.EmojiVS

Finally, let's add some fun to our code with EmojiVS (sourse)-- an extension that adds githubemojis to your code (or more specifically, code comments). So, why not try it?

It even provides IntelliSense:

Note: assuming you are a ReSharper user, in addition to EmojiVS, you also need to install the ReMoji extension to ensure the integrity of the code.

That's all for "how to extend VisualStudio to make programming easier". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report