Visual Studio Solution Explorer, selected file changes when I click into Main Coding View [duplicate] - visual-studio

In my Visual Studio 2012 Solution Explorer, when I single click a filename it opens it. This was different from Visual Studio 2010 (required a double click). Is there a way to make double-click the 'view file' command?

This is called the Preview Tab feature. To change that behavior, go to:
Tools -> Options -> Environment -> Tabs and Windows
Then look for the "Preview Tab" section, and uncheck the options therein:

Option 1: Using icon in Solution Explorer
You can enable or disable the feature in Solution Explorer using the "Preview Selected Items" button.
The icon is a Tab aligned to the right.
Option 2: Using the Options window
You can enable or disable the feature by going into Tools > Options and then Environment > Tabs and Windows.

The Single-click opens files in the preview tab text mentioned in rubber boots' answer is missing in VS 2015. Mysteriously, a search for "single click" still brings up the Environment > Tabs and Windows option.
So for VS2015 and VS2017, either click the button in Vinicius's answer, or uncheck the Preview selected files in Solution Explorer box shown in the screenshot below.

In Visual studio 12/13, easiest way is to type "single click" in quick search and than select Tabs and Windows.
And in Tabs and Windows dialogue ,uncheck "Preview selected files in solutions explorer"

Shortcut Ctrl+Alt+Home.
If you press that in a document that was just opened, it will be opened permanently.
Item -> right click -> Open With -> Source Code (Text) Editor -> press Set as Default button

It's no longer there in VS2019. You enable/disable it through "preview selected Items" in Solution Explorer.

Related

Single click in "Find Results" to open file in Visual Studio

In the "Find Results", I double click an item to open the file.
How can I open a file in this panel with single click?
The only single click option I found for this opens it in a preview tab. By default, I believe this setting is enabled (perhaps you turned it off at some point or you have the preview tab settings completely turned off?)
Under Tools → Options → Environment → Tabs and Windows there is a "Preview Tab" section. Enable the "Preview selected files in Find Results" option:
This should make it so that when you click once on one of those file paths, it will open in a preview tab. From there, you can look over the file as if its any other tab.

Advanced Save Options missing in Visual Studio 2017

In VS2015 I would select File -> "Advanced Save Options...", where I could pick the encoding I wanted, e.g. UTF-8.
In VS2017, this option is no longer in the File menu.
How can I save files with a specific encoding in VS2017?
From Visual Studio Team:
Advanced Save Options... has been moved due to uncommon use.
You can still access the functionality through File-> Save As -> then clicking the down arrow on the Save button and clicking "Save With Encoding..."
You can also add it back to the File menu through Tools->Customize->Commands if you want to.
Turns out there is a caret in the Save-button after you select "Save As...", there you can select "Save with encoding".

How to prevent Solution Explorer to automatically open selected item in editor (VS 2015)?

Please note I am not talking about "Track active item in Solution Explorer".
I like that, so when I am switching editor windows, Solution Explorer automatically tracks, and made selected the item in its tree. That's cool.
Instead I am asking about the reverse automatism: When I select an item in Solution Explorer (not double click, just select), it opens and activated in the editor using a single rightest tab, in the editor pane. (usual files are stacked from left tabs).
How can I prevent this automatic opening in VS 2015?
In VS 2013 it's under Settings - Environment - Tabs and Windows - Preview Tab.

How to stop Visual Studio from opening a file on single click?

In my Visual Studio 2012 Solution Explorer, when I single click a filename it opens it. This was different from Visual Studio 2010 (required a double click). Is there a way to make double-click the 'view file' command?
This is called the Preview Tab feature. To change that behavior, go to:
Tools -> Options -> Environment -> Tabs and Windows
Then look for the "Preview Tab" section, and uncheck the options therein:
Option 1: Using icon in Solution Explorer
You can enable or disable the feature in Solution Explorer using the "Preview Selected Items" button.
The icon is a Tab aligned to the right.
Option 2: Using the Options window
You can enable or disable the feature by going into Tools > Options and then Environment > Tabs and Windows.
The Single-click opens files in the preview tab text mentioned in rubber boots' answer is missing in VS 2015. Mysteriously, a search for "single click" still brings up the Environment > Tabs and Windows option.
So for VS2015 and VS2017, either click the button in Vinicius's answer, or uncheck the Preview selected files in Solution Explorer box shown in the screenshot below.
In Visual studio 12/13, easiest way is to type "single click" in quick search and than select Tabs and Windows.
And in Tabs and Windows dialogue ,uncheck "Preview selected files in solutions explorer"
Shortcut Ctrl+Alt+Home.
If you press that in a document that was just opened, it will be opened permanently.
Item -> right click -> Open With -> Source Code (Text) Editor -> press Set as Default button
It's no longer there in VS2019. You enable/disable it through "preview selected Items" in Solution Explorer.

Visual Studio 2010 "Open With..." is missing?

I'm trying to change Visual Studio to open my code instead of designer by default. This question tells me to right click on a file and go to "Open With..."
However, when I try to right click on a file in my solution explorer I have no "Open With..." option. I'm not sure if this is caused by an extension (I have the CodeRush Xpress, VSCommands, Productivity Power tools, and VCS tools for SVN, Git, and Hg), or what, but I would like to be able to configure what my files open with.
Where do I need to go to either get the menu option back or change these settings?
The context menu can be modified. If you haven't heavily customized your command bars and menus then a full reset is wise. Tools + Import/Export, "Reset all settings" radio button.
Or fix the context menu. Tools + Customize, Commands tab, click the "Context menu" radio button. Select the "Project and Solution Context Menu | Item" option from the combobox. Click the Add Command button.
This MSDN link might help you:
How to: Change or Add a Default Editor
It's not the most intuitive method, but from the link:
On the File menu in Visual Studio, choose Open and then select File.
In the Open File dialog box, select a file of the type you want to change.
Still in the Open File dialog box, click the down arrow next to the Open button, and then select Open With.
In the Open With dialog box, choose an editor from the Select a program to open list.
Click the Set as Default button and then click the Open button to open the file.

Resources