dgileadi / vscode-java-decompiler

Decompiler extension for Java in Visual Studio Code
Eclipse Public License 2.0
51 stars 20 forks source link

Support searching class to decompile in dependency from command palet #9

Closed Merichbier closed 4 years ago

Merichbier commented 4 years ago

Hi,

It would be really use useful to allow searching for a class to decompile (even class from dependencies) from the command pallet. Like the search do in Intellij.

I guess this one is a though one, but just wanted to through the idea here :)

Thanks for your work !

Cheers

dgileadi commented 4 years ago

Visual Studio Code supports opening any class in the classpath via Ctrl+T (⌘T on Mac). If the class doesn't have source code then the decompiler will kick in. I use this all the time.

Merichbier commented 4 years ago

Damn how could I missed that! Thanks!