web-dev-qa-db-ja.com

Visual StudioではなくWebブラウザでVisual Studioのリンクを開くにはどうすればよいですか?

ソースファイルのコメントにURLがある場合、「Ctrlキーを押しながらクリックしてリンクをたどる」ことができます。ただし、これを行うと、Visual Studio内でリンクが開きます。 Webブラウザで開くにはどうすればよいですか?私の場合は、Google Chromeですか?

134
xofz

外部ブラウザで開く と呼ばれるこの動作を提供する拡張機能があります。 Visual Studio 2012、2013、2015、および2017で動作します(古いバージョン GitHubで利用可能 はVisual Studio 2010をサポートします。)

Dmitry にこれを指摘してくれてありがとう 彼の答え この同様の質問に。

編集:Visual Studioチームはついに、これをVisual Studioに組み込む作業に着手しました。 this 機能リクエストのステータスが「審査中」から「開始済み」に移動しました。

63
mikesigs

この設定が見つからなかったため、使用できる簡単なマクロを作成しました。これをすべてのマクロのようにキーコンボにバインドできます。これにより、より良い答えが得られるまで仕事が完了します。

Sub OpenURLInChrome()
   'copy to end of line
   DTE.ActiveDocument.Selection.EndOfLine(True)

  'set var
   Dim url As String = DTE.ActiveDocument.Selection.Text

   'launch chrome with url
   System.Diagnostics.Process.Start( _
      Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) _
      + "\Google\Chrome\Application\chrome.exe", url)
End Sub

URLの前にカーソルを置き、マクロを実行するだけです...

7
mracoker

これは、mracokerが上記で提案したマクロの改善です。

このマクロは現在の行でURLを検索し、前の回答のようにURLの後のテキストをキャプチャしません。

Sub OpenURLInChrome()

   ' Select to end of line
   DTE.ActiveDocument.Selection.EndOfLine(True)
   Dim selection As TextSelection = DTE.ActiveDocument.Selection

   ' Find URL within selection
   Dim match = System.Text.RegularExpressions.Regex.Match( _
      selection.Text, ".*(http\S+)")

   Dim url As String = ""
   If (match.Success) Then
      If match.Groups.Count = 2 Then
         url = match.Groups(1).Value
      End If
   End If

   ' Remove selection
   selection.SwapAnchor()
   selection.Collapse()

   If (url = String.Empty) Then
       MsgBox("No URL found")
   End If

   ' Launch chrome with url
   System.Diagnostics.Process.Start( _
      Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) _
      + "\Google\Chrome\Application\chrome.exe", url)
End Sub

使用するには、URLの前のどこかにカーソルを置きます。マクロを実行(Ctrl-Shift-Gにマップ)

5
Terrence

2019 Update:すべての答えは古いです。 VS2019コミュニティのオプションでこれを行うネイティブな方法があります:

Options >> Web Browser

0
dylanh724