DEV Community

Cover image for Three Underrated VS Code Extensions That Can Save You Lots of Time
Levi Schouten
Levi Schouten

Posted on

Three Underrated VS Code Extensions That Can Save You Lots of Time

Visual Studio Code (VS Code) is a popular code editor known for its flexibility and extensive marketplace of extensions. While many developers are aware of the essential extensions, there are some hidden gems that can greatly enhance productivity and save valuable time. In this blog post, we will explore three underrated VS Code extensions that you might not be using yet but should definitely consider adding to your toolkit.

Multiple cursor case preserve

Link: Multiple cursor case preserve

Working with multiple cursors in VS Code is a powerful feature, but it often poses challenges when maintaining proper casing. When modifying occurrences of a word in multiple places, the camel case tends to break, causing inconsistencies. The Multiple cursor case preserve extension comes to the rescue by preserving the original casing. With this extension, you can ensure consistent and accurate casing changes across your code, as shown in the example below:

Image description

Template String Converter

Link: Template String Converter

Converting regular strings to template strings can be a tedious task. The Template String Converter extension simplifies this process by automatically converting regular strings to template strings when you type ${. This time-saving feature eliminates the need for manual conversion. Take a look at the demo below to see it in action:

Image description

Bracket Padder

Link: Bracket Padder

The Bracket Padder extension might not be well-known, but it offers a valuable time-saving capability. As the name suggests, it automatically adds whitespace padding for bracket pairs. This small enhancement greatly improves code readability and makes it easier to identify the boundaries of blocks and statements. The following animation demonstrates the Bracket Padder extension in action:

Image description

Conclusion:
These three underrated VS Code extensions can significantly enhance your coding workflow and save you precious time. The Multiple Case Preserve extension ensures consistent casing changes when working with multiple cursors. The Template String Converter automates the conversion of regular strings to template strings, reducing manual effort. Lastly, the Bracket Padder adds whitespace padding for bracket pairs, enhancing code readability. Give these extensions a try and see how they can boost your productivity. If you have any other recommendations for VS Code extensions, please tweet them at me @levischoute. Happy coding!

My personal website levischouten.net
My Twitter @levischoute

Top comments (2)

Collapse
 
bkpecho profile image
Bryan King Pecho

Great article! I've been using the Multiple Case Preserve extension for a while now and it's a lifesaver.

Collapse
 
levischouten profile image
Levi Schouten

Thank you, glad you liked it! :))