Tips : “Remove and Sort” Namespaces using Shortcut in Visual Studio December 4, 2010
Posted by Abhijit Jana in Tips and Tricks, Visual Studio.Tags: codeproject, Tips and Tricks, Tools
trackback
While dealing with maintaining coding standard like stylecop warning fix with code, most of the time we need to remove unused namespaces and sort the namespaces. We can do it easily from the context menu of the code editor. There you have three different option for “Organize Using” . Either you can Remove Unused Usings , Sort Usings or we can do it together by selecting “Remove and Sort” . Let’s see how we can make it more handy !
Even we can automatically fix this using some third party tools and addins. But it can be even very handy with in visual studio aswell, if we can set some shortcut key for them. From Tools > Option, navigate to Keyboard tab. Search for “Edit.RemoveAndSort” which command will to both remove unused usings and sort the usings, then set shortcut for the same, as I did with “Ctrl + Shift + W” , Click on “Assign” and Ok. you are done.
From next time you just need to press “Ctrl+Shift+W” to remove unused namespaces and sort them accordingly.
Even you can set the same for “Sort Usings” ( “Edit.SortUsings” ) and “Removed Unused Usings” (“Edit.RemoveUsings”) .
Hope this will help save some of your time !
Thanks !
AJ








[...] This post was mentioned on Twitter by Daniel Vaughan and Abhijit Jana, Abhijit Jana. Abhijit Jana said: Tips : “Remove and Sort” Namespaces using Shortcut in Visual Studio: http://wp.me/ppvPE-vv [...]
thanks man…
Thanks, very usefull
Thanks for this. Very helpful to men!
[...] Abhijit’s World of .NET Tips : “Remove and Sort” Namespaces using Shortcut in Visual Studio Share [...]
Really helpful. Thanks!
Thanks. Very helpful (i assigne CTRL+Shift+O to remind me of eclipse shortcut ‘remove unused imports’)