Forrest logo
back to the code tool

code:tldr:ce1b2

code: Print installed extensions with their versions.
$ code --list-extensions --show-versions
try on your machine

This command is used to list all the installed extensions in Visual Studio Code along with their versions.

  • code: This is the command to launch the Visual Studio Code editor.
  • --list-extensions: This flag is used to specify that we want to list the installed extensions.
  • --show-versions: This flag is used to display the versions of the installed extensions alongside their names and IDs.

When you execute this command, Visual Studio Code will provide a list of all the installed extensions with their respective versions. This can be useful when you need to check the versions of the extensions you have installed or share the list with others for reference.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the code tool