Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code Extension Not Showing "HELLO WORLD" Command in Debug Mode

I'm attempting to develop a VS Code extension, following the documentation provided here. After creating the extension, I ran it using the Debug (F5) mode.

Subsequently, in the opened window, I pressed Cmd + Shift + P and entered Hello World, expecting to see the related command. However, the command did not appear.

How can I effectively debug this issue with my VS Code extension? enter image description here

like image 690
Nori Avatar asked Oct 11 '25 16:10

Nori


1 Answers

Probably your VS Code version is lower than the version required in your extension. Try updating your VS Code to latest version and run the extension again.

like image 129
Vladan Avatar answered Oct 14 '25 11:10

Vladan