or CTRL+SHIFT+P
type "Extensions: Install from VSIX..."
select the .vsix file you created
publish
Update the version number in package.json
Run vsce package to create the .vsix file
Run vsce publish to publish the new version to the marketplace
features
SQL goto definition. When the cursor is on a procedure name in a "call" statement, vscode will open the .sql file of the sql procedure.
PHP function definition provider. Press F12 with the cursor located in the name of a function call. The extension search for the PHP function declare code and instruct vscode to position the cursor at the function definition.
Javascript action definition provider. When the positioned at source line containst the pattern: action:'action_name', search the PHP files for $action == 'action_name'. If found, instruct vscode to position the cursor at the found PHP code.
DSPF semantic token provider. Provides syntax highlighting for IBM i DSPF source files based on semantic tokens.
HTML inline completion provider. For now, type and the extension will suggest an alert div block.
HTML VUE defintion provider. Press F12 within index.html to find the definition of variable or event handler in the app.mjs file.