#39 Middle button support in the Visual Studio Editor
Middle Button support in Visual Studio. What does it so? Watch this …
Middle Button support in Visual Studio. What does it so? Watch this …
Do you ever write quick and dirty “do you think this will work?” code? I do. You have an idea – open up a quick console app, write some code, and then desert it never to be seen again. I do that a couple of times a week, and my hard drive ends up littered…
And yet another way of searching code (or any text really) in Visual Studio… it’s called Find in Files. It is the most comprehensive way to do a search. Even if you’re not looking for code, this can search any text string, in any set of files. We’re not talking about files linked in a…
Onlining,Onlining,Onlining. You know the little [+] in the left margin of your code in Visual Studio? That is called outlining, and if you click the [+] your code region will expand, and the icon changes to a [-]. Pretty straight forward. But did you know you can do all of this from the keyboard, without using…
Sometimes scrolling to the right for long lines of text hides other text that you want to see at the beginning of the line. Using word wrap allows you to see all text on a line, one the screen at once. Some like it, some don’t – but that’s why it’s an option 🙂
The Find and Replace window is not a dialog, but actually a tool window. Thus you can dock it to the side if you find it in your way. Right-click on the tool window Titlebar and select Dockable. Now the tool window can be docked using a docking target. Additionally, you can go to Window menu…
Just select some text (or just have the cursor on the word you wish to search for) and press [CTRL]+[F3]. [CTRL]+[SHIFT]+[F3] will do a reverse search to find previous. Note that a [CTRL]+[F3] search uses the following options: Is case sensitive Searches hidden text Allows for partial matching Does not use regular expressions