Search Everywhere/Go to Type
Ctrl+N
ReSharper_GotoType
This command combines two different features:
- Search Everywhere, which appears first, allows you to navigate to the following destinations: types, symbols, files, string literals in source and textual files, recent edits, recent files, and recently viewed methods. The list of suggestions appears as soon as you invoke this feature and initially includes your recent files and navigated items.
- Go to Type, which appears the second time you press Ctrl+N or invoke the command from the menu, allows you to navigate to any type.
By default, navigation to text is integrated into Search Everywhere — ReSharper will show textual occurrences matching the query string in the end of the results list, after all matching types, symbols, and files. You can disable this behavior by clearing Integrate Go to Text into Search Everywhere on the page of ReSharper options.
If this option is disabled, you can navigate to text by pressing Ctrl+N three times.
Using these features you can search items in symbols and files in your entire solution as well as all assemblies referenced in the projects of your solution. Search results also include matching items from all assemblies that are currently loaded in the Assembly Explorer window.
Note that this command works in global scope, i.e. you do not need to bring your focus to the editor to invoke it.
To search everywhere or locate a type
- Press Ctrl+N or choose from the main menu. Alternatively, you can press Ctrl+Shift+A, start typing the command name in the pop-up, and then choose it there.
- In the Search Everywhere pop-up list that appears, start typing the item name. As you type, the list of items narrows down, suggesting names that match the entered substring.
- To further narrow down the list of items, you can type
/
to apply filters. For example, you can type/me
to display only events. Note that you can type filters both before and after your search query. - To switch to the Go to Type feature, click the menu command or press the shortcut once again. The Enter type name pop-up list appears where you can specify a type you are looking for.
- Optionally, select Include library types or press Alt+N to display matching items from libraries referenced in the solution.
By default, as long as your input matches something in your solution, only solution items are displayed. If there are no matches for your input in the solution, ReSharper starts looking for matching library types automatically. - Do one of the following:
- Click on the desired item to open it in the editor.
- Select the desired item by pressing Up and Down and then press Enter to open it in the editor.
- To view and analyze the list of matched items in the Find Results window, click Show in Find Results
, press Shift+Enter or + on the numeric keypad.
If the item you navigate to belongs to the current solution, ReSharper opens the corresponding file in the editor and places the caret at the symbol declaration. If it is found in referenced libraries, ReSharper navigates according to the settings defined on the
page of ReSharper options. You can narrow down the list of items using CamelHumps. It is case-insensitive, so there is no difference between rtbf
and RTBF
. ReSharper always shows recently visited items at top of the list and highlights them in green. exactMatching
will match isMatchingExactly
: "Collection"
will return Collection
but will not return FilteredCollection
, IterateCollection()
, etc. However, while using exact search to filter out compound names, you can still use wildcard symbols *
and ?
to allow exactly as much variation as you need. If you want to navigate to a type, for example, by its fully qualified name, type parts of the name and split them with spaces or dots. Consider the example below: *
(asterisk) represents zero or more characters; +
(plus), :
(semicolon), .
(dot), and \
(backslash) separate parts of the type's fully qualified name. :
(colon).
To disable the Search Everywhere functionality and navigate to types only, clear the Enable 'Search Everywhere' check box on the page of ReSharper options.
ReSharper can remember the last input that you used to find something with Search Everywhere/Go to Type, Go To File, and Go to Text actions. To enable or disable this behavior, use the Remember last search check box on the page of ReSharper options. When this option is selected, ReSharper will also use your current selection in the editor as the initial search query.
This feature is supported in the following languages and technologies:
The instructions and examples given here address the use of the feature in C#. For details specific to other languages, see corresponding topics in the ReSharper by Language section.
See Also
Procedures:
- Go To File
- Go to File Member
- Go to Symbol
- Go to Base Symbols
- Go to Derived Symbols
- Go to Declaration
- Go to Implementation
- Go to Type of Symbol
- Go to Usages of Symbol
- Go to Next/Previous Member
- Go to Containing Declaration
- Navigation from Symbols
- Navigate To
- Finding Usages
- Context Navigation
- Navigating to Recent Locations
- Structural Search and Replace
- CamelHumps