Visual Studio Web ブラウザーを無効にする方法はありますか? コメント内のハイパーリンクをCtrlキーを押しながらクリックすると、実際のブラウザが起動するようにしたいだけです。
にあるタブWeb Browser
にオプションがあるようですが、完全に無効にする方法はないようです。Environment
Tools --> Options
これを行うためのネイティブな方法がない場合は、拡張を歓迎します。
コメントをクリックすると (ここの例は XML ファイルのコメントを示しています)
Visual Studio に組み込まれているこの IE タブではなく、Chrome を起動したい
編集この質問を別の質問の複製としてマークしました。誰かがこのマクロを提供しました:
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(url)
End Sub
次に、それをキーにバインドし、カーソルを URL の先頭に設定してからホットキーを押して使用します。ブラウザーにコピー/貼り付けするために全体を強調表示するよりも少し簡単です。