简体   繁体   中英

Visual Studio: Shortcut to scroll solution explorer to current file

I'm not asking for the option to automatically follow the current file in the solution explorer. This has been answered in this question and I have this option turned off because I hate the behavior.

I would like to have a shortcut (or macro, or ....) to jump to the file I'm currently editing in the solution explorer.

In VS 2013 there is a built-in keyboard shortcut ( CTRL + \\ , S )

  1. Press CTRL +backslash
  2. Release both keys
  3. Press the S key

Or click the button highlighted in the image bellow.

与活动文档同步

One also has the option to customize the keyboard shortcut if you don't like the default combination :)

In Visual Studio 2015, 2017 and 2019 you can press Ctrl + [ and then s .

This will highlight the file currently being edited in Solution Explorer.

This can be configured via the following keyboard command: SolutionExplorer.SyncWithActiveDocument

To reconfigure, navigate to Tools -> Options -> Environment -> Keyboard

As far as I know there is no such option before VS 2012.

In VS 2012 the "Sync with Active Document" option was introduced. You can find description and screen on this blog (scroll to "Sync with Active Document" in the middle of page).

To locate the file you're currently editing in Solution Explorer:

Ctrl + W + S

I previously used Shift + Alt + L , but for some reason this is no longer working.

The other suggestions ( Ctrl+\\,S and Ctrl+[,S and Ctrl + ` + S) do not work for me in VS2015. I don't use resharper and dont like using macros when simple shortcuts are available.

在 Visual Studio 2015 中,使用 ReSharper,我可以按Shift + Alt + L突出显示在解决方案资源管理器中正在编辑的当前文件。

For VS2010 I found this macro and works for me :

Imports System
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90

Public Module Utilities
    Public Sub TrackProjectItem()
        Dim solution As Solution2 = DTE.Solution
        If Not solution.IsOpen OrElse DTE.ActiveDocument Is Nothing Then Return

        solution.FindProjectItem(DTE.ActiveDocument.FullName).ExpandView()

        Dim FileName As String = DTE.ActiveDocument.FullName

        Dim SolutionExplorerPath As String
        Dim items As EnvDTE.UIHierarchyItems = DTE.ToolWindows.SolutionExplorer.UIHierarchyItems
        Dim item As Object = FindItem(items, FileName, SolutionExplorerPath)

        If item Is Nothing Then
            MsgBox("Couldn't find the item in Solution Explorer.")
            Return
        End If

        DTE.Windows.Item(Constants.vsWindowKindSolutionExplorer).Activate()
        DTE.ActiveWindow.Object.GetItem(SolutionExplorerPath).Select(vsUISelectionType.vsUISelectionTypeSelect)
    End Sub

    Public Function FindItem(ByVal Children As UIHierarchyItems, ByVal FileName As String, ByRef SolutionExplorerPath As String) As Object
        For Each CurrentItem As UIHierarchyItem In Children
            Dim TypeName As String = Microsoft.VisualBasic.Information.TypeName(CurrentItem.Object)
            If TypeName = "ProjectItem" Then
                Dim projectitem As EnvDTE.ProjectItem = CType(CurrentItem.Object, EnvDTE.ProjectItem)
                Dim i As Integer = 1
                While i <= projectitem.FileCount
                    If projectitem.FileNames(i) = FileName Then
                        SolutionExplorerPath = CurrentItem.Name
                        Return CurrentItem
                    End If
                    i = i + 1
                End While
            End If

            Dim ChildItem As UIHierarchyItem = FindItem(CurrentItem.UIHierarchyItems, FileName, SolutionExplorerPath)
            If Not ChildItem Is Nothing Then
                SolutionExplorerPath = CurrentItem.Name + "\" + SolutionExplorerPath
                Return ChildItem
            End If
        Next
    End Function
End Module

Original Source here

In Visual Studio 2010/2012 you can use this extension ( link ). It adds option to sync on Solution Explorer toolbar and code context menu.

For VS 2017 the default configuration is:

CTRL + [,S

And the complete list of shortcuts you can find here:

http://visualstudioshortcuts.com/2017/

如果我的问题是正确的,您可以转到工具 -> 选项 -> 项目和解决方案 -> 常规并选中“在解决方案资源管理器中跟踪活动项目”选项。

On my keyboard I had to press:

Ctrl + ` + S

Do note that the sign in the middle is the key just left of the backspace.

Using Visual Studio 2015.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM