Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filtered intellisense in Visual Studio Code

I usually code with Visual Studio 2017, but when I program in Java or python I use Visual Studio Code.

In Visual Studio 2017 the intellisense have filters that allow you to see only the parameters, methods, snippets... making the job alot easier.

enter image description here

Visual Studio Code has intellisense but no filters, is there a way to activate them? or haven't been implemented yet?

enter image description here

like image 701
DomCR Avatar asked Mar 18 '26 20:03

DomCR


1 Answers

There's currently an issue for this: https://github.com/microsoft/vscode/issues/50291

That said, you can remove categories across the board in settings.json:

    "editor.suggest.filteredTypes": {
        "class": false
    },

(I'm filtering class because my React code was getting completion suggestions from lots of auto-generated CSS classes)

like image 108
Ed Brannin Avatar answered Mar 20 '26 08:03

Ed Brannin