VSCode extension for filtering items in suggestions by their kind.
intellisensefilter.toggle
- toggles chosen item kindsintellisensefilter.singleOut
- disables all kinds except the chosen onesintellisensefilter.enableAll
- enables all kinds
The only command available in the Command Palette is the Quick Pick, however
you can define keyboard shortcuts for the actions in your keybindings.json
file, for example:
{
"key": "cmd+' cmd+f",
"command": "intellisensefilter.singleOut",
"args": ["Function", "Method"]
},
{
"key": "cmd+' cmd+s",
"command": "intellisensefilter.toggle",
"args": ["Snippet"]
},
{
"key": "cmd+' cmd+a",
"command": "intellisensefilter.enableAll",
},
{
"key": "cmd+' cmd+'",
"command": "intellisensefilter.pick",
}
- The extension works by changing the settings which triggers
settings.json
update, so the filter change takes effect after ~1-2 seconds