Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I click control-click a hyperlink in the Visual Studio 2012 text editor, it opens the URL in a new Visual Studio tab. I would rather the link open outside Visual Studio in my system's default web browser (happens to be Google Chrome). How can I arrange this?

I'm talking about hyperlinks in code comments.


I am using Visual Studio 2012. I found a similar question dated 2009, however the accepted answer doesn't work in Visual Studio 2012.

share|improve this question

5 Answers

up vote 6 down vote accepted

Frustratingly, this isn't possible in Visual Studio 2012.

Bug reported to developers at http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/2723548-open-links-in-an-actual-browser Please add your vote!

share|improve this answer

It seems that it is not possible (except if your default browser is IE, so you would not know the difference).

As Anand wrote above, you could ctrl + right click on the link and then select open link in external window (you cannot do that on the start page, only on an opened webpage) but it still opens the window in IE no matter what your default browser is.

Even if you go to TOOLS --> Options --> Environment --> Web Browser, you will notice that it indicated that IE and the internal VS web browser are siblings.

So just copy the URL from the address bar and paste it to your default browser (it's not too much trouble in my opinion).

share|improve this answer

I found a way to change the default browser for all actions in Visual Studio Express 2012 for Web. It's documented here:

By default, Visual Studio uses your default browser to test pages. To use a different browser or Page Inspector, right-click [an .aspx] page in [the] Solution Explorer and then click [...] Browse With [, which] lets you select a browser from a list, add new browsers to the list, or set one as the default browser. (The default browser setting here applies only to the Visual Studio environment and not to Windows.)

This also changes the default browser for F5'ing an MVC project, because I'm used to closing IE to stop debugging. When I let Visual Studio use my system's default browser, I first have to switch back to it from my browser to stop debugging, because closing the browser tab doesn't.

Unfortunately it still doesn't open links in comments in a browser.

share|improve this answer

ctrl+right click on the link and then select 'view in browser(Crome)'. (default browser name)

share|improve this answer
2  
There's no such menu item for me :( – Colonel Panic Oct 30 '12 at 9:44
@Anand this is dependant on the type of project – Blowsie Apr 26 at 8:30

You can use the default browser switcher application if you are using Visual Studio 2010 for this kind of situation:

  1. On your tool bar menu select "TOOLS"
  2. Then from options choose "EXTENSION Manager"
  3. It will open the extension manager window in the left hand side there are options choose the "Online Gallery" option
  4. In Online Gallery search for "WoVS Default Browser Switcher"
  5. Download it and Install it
  6. After download restart VS

Hope this works best for you

share|improve this answer
There are no results for 'Wovs' – Colonel Panic Oct 31 '12 at 16:11
@Colonel Panic I have checked it on another machines also there I was able to see Wovs Default Browser switcher in the Online Gallery – NetStarter Nov 6 '12 at 11:41
3  
@NetStarter It is available for VS2010 as far as I can see it is not available for VS2012 as of yet – Mark Hall Nov 7 '12 at 7:52
@Mark Hall ok thanks for the info I was not knowing about it Sorry Colonel Panic – NetStarter Nov 10 '12 at 10:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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