For a small community discussion, what are some essential Visual Studio macros you guys use? I just started learning about them, and want to hear what some of you guys can't live without.
closed as not constructive by Will♦ Sep 26 '11 at 17:49
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I used to employ a lot of macros in VS 2002/2003. One example would be Region creation - I always like my classes to be divided into the following regions - "Private members", "Public Properties", "Public Methods" and "Private methods". So, I have a macro mapped to a shortcut key that creates these regions in any new class file. Refactoring support in VS 2005/2008 (and the facility of adding common code snippets) as well as the use of Addins like DXCore and SlickEdit allow me to work without having to create too many macros anymore. |
|||||||||||||||||
|
|
I add buttons on the toolbar for the following 3 macros. Each will take the currently selected text in any file and google it (or MSDN-it, or spell-check-it). Make up a nifty icon for the toolbar for extra style-points.
|
||||
|
|
|
Show build duration in the Output window Put this code in your EnvironmentEvents module. This will write the duration directly to the build window for any action on a solution (build, rebuild, clean, deploy). You can change the IsBuild function to specify the actions you want to see this information for.
|
|||||||||||||
|
|
Show the start page after you close a solution (but keep Visual Studio open) Put this code in your EnvironmentEvents module:
Hide the start page after you open a solution Put this code in your EnvironmentEvents module:
|
|||||||||||
|
|
I use the following lesser-known shortcuts very often:
|
||||
|
Insert GUID, great for WiX work, add to menu as button or as key shortcut.
Organise usings for all .cs files in a solution - Original Author: djpark.
|
||||
|
|
|
Outlining: Collapse to definitions but expand regions Are you working in one of those shops that insists on regions around everything, so that when you collapse to definitions, you can't see any code? What you really need is a collapse-to-definitions-but-expand-regions macro, like this one:
Put this in a regular macro module, assign it to a hot key, and your code is back. (Except...if you work with some really nefarious individuals who put regions inside methods, this will unfortunately expand those methods. If anybody knows a way to write this to avoid that, feel free to edit.) |
||||
|
|
|
I use Jeff's FormatToHtml macros if I'm going to be pasting a code example into a blog post or an email. |
||||
|
|
|
Collapse all nodes of the Solution panel, very useful especially for big projects:
|
||||
|
|
|
I work with dual monitors, and I find Sharon's layout-switching macro (from a 1 monitor to a 2 monitor layout) totally invaluable. When you need to be referencing a web page or other program while typing a bit of code, Ctrl-Alt-1 to switch to a one monitor layout for your Visual Studio windows. Once you're done, Ctrl-Alt-2 to switch to your two monitor layout and get all your windows back. Awesome! http://www.invisible-city.com/sharon/2008/06/workstation-hack-visual-studio-on-2.html |
||||
|
|
|
I mapped ctrl-shift-G to a macro that generates a GUID in registry format - this is useful for editing IDL |
||||
|
|
|
Not a macro on its own, but useful:
|
||||
|
|
|
I'm currently working on two different projects with different coding standards, one that uses tabs for line beginnings and another that uses spaces. This macro will toggle between which standard is used based on which environment is currently active:
|
||||
|
|
|
I couldn't let this question go without mentioning this one. It even has a video to show how to install and use it. This macro simply allows you to create the nested files in the solution explorer (like resources.resx). Edit: Updated the link |
|||||
|
|
My Documents\Visual Studio 2012\Addins. There, for your projectwhatever, put thewhatever.dllfor your add-in, as well as thewhatever.AddInfile from the main project directory. – Kyralessa Sep 5 '12 at 19:12