This extension adds support for the PL/SQL (Oracle) language to Visual Studio Code.
Full syntax highlight for PL/SQL files based on oracle-textmate-bundle
Get competion items for procedures/functions/constants of packages
Navigate to methods (procedures and functions) inside a package file
Navigate to methods (procedures and functions) with some limitations :
- Go to a method in the same file
- Go to a method in another file whose name includes the package or method name.
e.g.: MY_PACKAGE.myFunction()
Generate detailed documentation automatically for procedures and functions based on PlDoc.
Use Ctrl+Space (like others snippets) when the caret is on an empty line, above a function or a procedure declaration, a 'special' snippet is generated. (with prefix pldoc by default)
For this extension works with .sql files you must change your settings (user or workspace) like this:
"files.associations": {
"*.pks": "plsql"
"*.pkb": "plsql"
"*.typ": "plsql"
"*.tyb": "plsql"
}