Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@ScriptCoded extension or settings ?
like i'm looking for a ddl dead center like in visual studio, quick nav. i don't see one anywhere on my screen :( -
kamen69253yAren't dropdowns a bit counterproductive if you're using a keyboard?
IntelliSense should work fine without needing dropdowns - if it has the information it needs of course. -
@ScriptCoded no. in visual studio there is a dropdown when you're in a text editor that lets you select a member and then navigates you too it
-
@AvatarOfKaine Well, you have the outline on the left hand side, below the file tree. Then you can also CTRL-click a name to get to the declaration
-
kamen69253y@ScriptCoded I'm not sure if that shows up by default (it might be an extension's contribution). Still, there's always `workbench.action.gotoSymbol` that shows a menu with all symbols in the current editor (I've bound this to Alt+D).
you should be able to use a dropdown to select functions and member names like in visual studio in vs code while editing javascript :*(
random