vote up 17 vote down star
22

There are so many little options and settings within Microsoft Visual Studio. Which adjustments do you recommend to others?

flag

65% accept rate

23 Answers

vote up 21 vote down

Line Numbers

Tools > Options

Text Editor > All Languages > General

Display: Line Numbers

Visual Studio Line Numbers

link|flag
2  
I'd prefer Cntrl + g to go to a specific line. :) – RWendi Oct 9 '08 at 20:57
2  
Line numbers are helpful when you're working, locally or remotely, with another developer. "Look at lines 25-30." – Michael Petrotta Oct 9 '08 at 21:26
1  
WEll you can just look at the status bar and check the line you are instead of having 1/4 inch took for nothing about 95% of time ;) – Daok Nov 3 '08 at 20:20
1  
Like Daok said - this seems like HUGE waste of space and I don't think I can ever remember needing them. CTRL-G also works for me. – tim Dec 29 at 16:38
4  
I cannot imagine working without line numbers – lucian.jp Jan 27 at 18:31
vote up 11 vote down

I've never found dynamic help to be either dynamic or helpful, and just tends to slow visual studio down, so using regedit:

registry key:
    HKEY_CURRENT_USER\Software\Microsoft\Visual Studio\x.x\Dynamic Help
value:
    Never Show DH on F1 = yes

I'm also keen on setting the following in Options->Projects and Solutions:

  • Show Output window when build starts - checked (IMHO easiest way to spot build errors)
  • Track Active Item in Solution Explorer - unchecked (stops every project ending up fully expanded in Solution Explorer) Visual Studio Preferences
link|flag
This screenshot makes me think I need to clean my display. – Chris Nov 13 at 5:17
vote up 6 vote down

Tools -> Options -> Environment -> Keyboard

Setup a shortcut to close the active document. Ctrl+Alt+W in my case.

link|flag
whats wrong with control+f4? – Dested Oct 13 '08 at 8:42
1  
control-f4 is a lot harder to hit than something like ctrl-w (which most apps use to close windows, both in Windows and OSX). – Joseph Daigle Nov 3 '08 at 20:44
ctrl-f4 works in pretty much every application with tabs. – Dustin Getz Jan 27 at 17:49
I have ctrl+shift+x I thought it was default... – texmex5 Jan 27 at 18:11
I use Control-W, which is the same as the shortcut to close the current tab in some browsers. – Kyralessa Jun 11 at 3:21
vote up 6 vote down

Gotta have the tab indention set up right.

Also, Consolas & Color Themed - white backgrounds hurt my eyes

link|flag
And what, pray, is 'right' tab indentation? (runs for cover...) – Benjol Oct 1 at 6:28
Purely subjective of course, but I prefer double spaces instead of tabs, so I like to set VS to convert it as such. – thismat Oct 6 at 13:13
vote up 5 vote down

Environment->General->Animate environment tools => OFF.

Speeds UI responsiveness by 82%.

link|flag
1  
+1 for making up a very specific percentage :) – Chris Nov 13 at 5:21
vote up 5 vote down

Option Strict On

Tools > Options

Projects and Solutions > VB Defaults

Default project settings: Option Strict: On

Option Strict

link|flag
vote up 4 vote down

Personally i hate that VS defaults to "Tab to Spaces" when you are developing in C#. This is so awkward to work with and unnecessary.

Yes, i know there are issues with Tabs but honestly, did any of you ever encounter them coding in C# on Windows?

link|flag
You will if you have a team where one developer doesn't like the default tab width. – Joel Coehoorn Oct 9 '08 at 20:49
That is just a display issue and can be configured on each computer without affecting anyone else. However, if one developer does have "tabs to spaces" on and all source files he touched are converted to spaces ... well, that just sucks. – steffenj Oct 9 '08 at 21:38
I totally agree - to save others time: Tools > Options > Text Editor > All Languages > Tabs > Keep tabs – Cory House Nov 17 '08 at 14:33
1  
getting your team to use anything but the default settings is an uphill battle. – Dustin Getz Jan 27 at 17:51
1  
I hate to start a religious war, but only infidels would check in files with \t instead of spaces. – Frank Schwieterman Aug 4 at 22:59
show 2 more comments
vote up 4 vote down

Several have mentioned custom keybindings. Here are handy default keybinding reference posters…

Microsoft Visual Basic Default Keybindings reference poster

A high quality, print-ready PDF containing the useful keybindings for developers that choose the Visual Basic developer profile in Visual Studio 2008 or use Visual Basic Express.

Microsoft Visual C# Default Keybindings reference poster

Visual C# in Visual Studio 2008 and Visual C# 2008 Express Edition Wall chart showing useful keyboard shortcuts for Visual C# programming language.

I like Microsoft's instructions:

  1. Download and extract PDF
  2. Send to favorite full color printer/copier
  3. Hang on wall
  4. Code
  5. Smile
link|flag
vote up 3 vote down

Fixedsys Font

Tools > Options

Environment > Fonts and Colors

Font: Fixedsys

Visual Studio font

link|flag
3  
Consolas is much better imho. – Mark S. Rasmussen Oct 9 '08 at 20:44
Droid Sans Mono 10pt has reduced my eye fatigue measurably. – bouvard Oct 28 '08 at 21:14
dina font: donationcoder.com/Software/Jibz/Dina – Dustin Getz Jan 27 at 17:50
vote up 3 vote down

Set the active document you're working on to display in the solution explorer. I've seen a lot of people hunting for their current doc if the project gets too big.

Tools -> Options. Make sure show all settings is checked.

Click on Projects and Solutions.
Enable the Track Active Item in Explorer checkbox.

alt text

link|flag
I personally find this distracting. A keyboard shortcut that found the active item would be nice though. – Greg Jan 27 at 18:17
I found it distracting too. So I use Add-in (codeproject.com/KB/macros/…) to quickly find document when I need it. – Juozas Kontvainis Apr 24 at 7:18
vote up 3 vote down

Always show solution

Tools > Options

Projects and Solutions

Always show solution

Always show solution

link|flag
vote up 2 vote down

Source View

Tools > Options

HTML Designer > General

Start pages in: Source View

Visual Studio Start pages in Source View

link|flag
This doesn't seem to be available in the Express version and that makes me sad. – bouvard Oct 28 '08 at 21:13
Bouvard, remmember to check the "Show All Settings" button, at the buttom of the dialog – Jesper Blad Jensen aka. Deldy Jan 27 at 18:12
vote up 2 vote down

Environment => General => Recent files

24 items shown in Window menu

24 items shown in recently used lists

Environment => General

Show status bar ON

Animate environment tools OFF

link|flag
vote up 2 vote down

Prevent Visual Studio from renaming pasted controls

http://stackoverflow.com/questions/484327/how-do-i-prevent-visual-studio-from-renaming-my-controls#484344

link|flag
vote up 2 vote down

I'm somewhat surprised to be the first person recommending Visual Studio Hacks for a lot of suggestions of this variety

link|flag
vote up 1 vote down

Check out this thread for the Color theme options for Visual Studio http://stackoverflow.com/questions/141371/which-visual-studio-color-theme

And consolas is my favourite font

link|flag
vote up 1 vote down

Visible white space.

Free Image Hosting by FreeImageHosting.net

The default color is too strong. I immediately change it to silver.

Silver visible white space

On some displays, even silver is too strong, and I create a "light silver".

Free Image Hosting by FreeImageHosting.net

link|flag
vote up 1 vote down

Window Layouts

This really isn't a setting but something I always do is back up my settings via Tools > Import and Export Settings.

I make sure to back up my window layouts for both single and multiple monitors. It saves frustration when moving from my multi-monitor setup to a single monitor for a presentation.

Not to mention, it makes it easy to get up and running on a new PC.

link|flag
vote up 1 vote down

Find and Replace window’s "Search Hidden Text" checkbox.

It's not really a preference but it is indispensable. It sure is frustrating when you don’t notice that it "magically" unchecked itself.

link|flag
vote up 0 vote down

Besides, Line Numbers, the first thing I always do in a newly-installed IDE is set the Edit.GoToDefinition keyboard shortcut.

Tools > Options > Keyboard

link|flag
this is usually defaults to F12 already – DK Oct 9 '08 at 21:18
But isn't what I'm used to. To each his/her own. :) – Kon M Oct 9 '08 at 21:29
vote up 0 vote down

Its all about Resharper ;) Gives you tons of shortcuts which are so useful I can no longer work without them. I don't get on with the intellisense though, so I've turned that off.

This is incredibly useful, allows you to write underscores with the space bar when writing long test method names.

link|flag
vote up 0 vote down

This applies to winform projects.

Instead of opening the form in design mode by default, you can configure VS to open the code editor instead. This is configured by right-clicking on a form in the solution explorer and choosing the "Open with" option. This gives you a dialog that allows you to specify the default option when double-clicking on a file.

link|flag
vote up 0 vote down

Un-Bold Brace Matching

Tools > Options

Environment > Fonts and Colors

Display items: Brace Matching (Hilight)

uncheck Bold

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.