Using Filters in Code Completion
ReSharper allows you to filter completion suggestions by kind of symbol, access modifiers, etc. You can modify the set of applied filters each time the code completion is invoked and/or choose to keep the state of filters.
By default, ReSharper shows filters bar at the bottom of the completion pou-up. In this bar, you can see the state of filters and click on the icons to enable or disable specific filters.

If necessary, you can hide the filters bar and configure other related options on the
page of ReSharper options.Persisting state of filters
By default, completion filters you specify are reset each time you invoke code completion. If necessary, you can keep the last modified state of filters. To do so, select Persist filters on the page of ReSharper options.
When this check box is selected, you can optionally modify the default state of filters. Note that these filter state controls are synchronized with the filter bar in the completion pop-up.
Filter modes
Each filter can be enabled in one of two modes: inclusive or exclusive.
Inclusive mode
if a filter is enabled in this mode, the completion list only shows items that match this filter. If there are several filters enabled in this mode, the completion list shows items that match all of these filters.
To enable filters in this mode, left-click on the filter icon.
On the filter bar, filters in this mode are highlighted with the uniform background.
Exclusive mode
if a filter is enabled in this mode, the completion list only shows items that match this filter. If there are several filters enabled in this mode, the completion list shows items that match all of these filters.
To enable filters in this mode, right-click on the filter icon.
On the filter bar, filters in this mode are highlighted with the border.
Shortcuts for completion filters
All completion filters can be toggled with keyboard shortcuts. The table below lists aliases for each action. You can use this aliases to find and assign specific shortcuts in Visual Studio options. (
).Filter | Action aliases (include/exclude) |
---|---|
Namespaces | ReSharper_IntelliSenseFilterNamespaces / ReSharper_IntelliSenseFilterNamespacesInvert |
Classes | ReSharper_IntelliSenseFilterClasses / ReSharper_IntelliSenseFilterClassesInvert |
Interfaces | ReSharper_IntelliSenseFilterInterfaces / ReSharper_IntelliSenseFilterInterfacesInvert |
Structs | ReSharper_IntelliSenseFilterStructs / ReSharper_IntelliSenseFilterStructsInvert |
Enums | ReSharper_IntelliSenseFilterEnums / ReSharper_IntelliSenseFilterEnumsInvert |
Delegates | ReSharper_IntelliSenseFilterDelegates / ReSharper_IntelliSenseFilterDelegatesInvert |
Events | ReSharper_IntelliSenseFilterEvents / ReSharper_IntelliSenseFilterEventsInvert |
Methods | ReSharper_IntelliSenseFilterMethods / ReSharper_IntelliSenseFilterMethodsInvert |
Fields | ReSharper_IntelliSenseFilterFields / ReSharper_IntelliSenseFilterFieldsInvert |
Properties | ReSharper_IntelliSenseFilterProperties / ReSharper_IntelliSenseFilterPropertiesInvert |
Parameters | ReSharper_IntelliSenseFilterParameters / ReSharper_IntelliSenseFilterParametersInvert |
Local Variables | ReSharper_IntelliSenseFilterLocalVariables / ReSharper_IntelliSenseFilterLocalVariablesInvert |
Public members | ReSharper_IntelliSenseFilterPublic / ReSharper_IntelliSenseFilterPublicInvert |
Internal members | ReSharper_IntelliSenseFilterInternal / ReSharper_IntelliSenseFilterInternalInvert |
Protected members | ReSharper_IntelliSenseFilterProtected / ReSharper_IntelliSenseFilterProtectedInvert |
Private members | ReSharper_IntelliSenseFilterPrivate / ReSharper_IntelliSenseFilterPrivateInvert |
Dynamic properties | ReSharper_IntelliSenseFilterDynamicProperties / ReSharper_IntelliSenseFilterDynamicPropertiesInvert |
Extension methods | ReSharper_IntelliSenseFilterExtensionMethods / ReSharper_IntelliSenseFilterExtensionMethodsInvert |
Keywords | ReSharper_IntelliSenseFilterKeyword / ReSharper_IntelliSenseFilterKeywordInvert |
Custom filters | ReSharper_IntelliSenseFilterAggregate / ReSharper_IntelliSenseFilterAggregateInvert |
Custom filters
ReSharper allows you to define custom filters that you can use to exclude items by their assembly, namespace, and other parameters from completion suggestions.To define a custom completion filter
- Open the page of ReSharper options.
- Make sure that the Enable Filters check box is ticked.
- Click Add on the bottom of the page and choose CLR Symbols Filter
- In the Custom Filter Configuration dialog that opens specify filter details:
- Specify one or more masks for the symbol.
- Optionally, select a kind of symbols to be matched.
- Choose whether to match types with or without type parameters.
- Click OK to add the filter and close the dialog. The new filter appears in the Custom Filters area. If necessary, you can modify the filter later.
- Click Save to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see managing and sharing resharper settings.
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.