Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>PSL RecommendationNew to Visual Studio Code? Get it now.
PSL Recommendation

PSL Recommendation

NgocNK ManhTV

|
2 installs
| (2) | Free
Snippets, hints and hover instructions for functions in the new language.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

PSL Language Support for VS Code

Version License

PSL Language Support is an extension that accelerates development speed and documentation lookup when working with the PSL (Profile Script Language) language. This extension provides convenient code snippets and detailed hover information features.

✨ Main Features

1. Code Snippets

Automatically suggests and inserts common PSL code structures, helping you type code faster and with fewer errors.

  • Supports basic control flow blocks (loops, conditions).
  • Standard PSL function and variable definitions.

2. Hover Information

Hover over any PSL keyword, function, or variable to instantly view the documentation.

  • View syntax.
  • View functional descriptions and usage examples.

3. Click routines (Ctrl+Click on functions/routines)

Use the Ctrl + Right Click combination to jump to the target function/routine.

  • Forward to functions/routines. The first search will be cached to disk. Instructions on toggling Project/Workspace scope are at the bottom. Changing the scope will reset the cache.

🚀 Installation

  1. Open Visual Studio Code.
  2. Search for "PSL Recommendation" on the Extension Marketplace and click Install.
  3. Restart VS Code if necessary.

📖 User Guide

Using Snippets

Simply type a part of the keyword, and the suggestion list will appear. Press Tab or Enter to insert the code. demo Example:

  • Type table -> Generates a table definition template (.TBL).
  • Type column -> Generates a column definition template (.COL).

Using Hover

Move your mouse cursor over a keyword (e.g., getRecord(), next(), select()). A small tooltip window will appear explaining what that keyword does. Demo

📋 Snippets List (Cheat Sheet)

Below is the list of supported abbreviations (prefixes):

| Prefix | Description | Output (Example) | | :--- | :--- | :--- | // some template examples | fu | Function | Demo | | table | Table | Demo | | column | Column | Demo | // some statement examples | t | Basic | type | | tr | Basic | true | | S | Basic | String | | N | Basic | Number | | D | Basic | Date / Db / DbSet | | R | Basic | Record / ResultSet / Runtime | | f | Loop | for (condition) do {} | | c | Catch declaration | catch error {} | | i | Conditional statement | if {} | | e | Conditional statement | else if {} | | w | Loop | while (condition) do {} | // keyword examples | % | Keyword | %SystemDate / %Identifier / %UserID | // method examples | Db. | Method | currVal(${1:table}, ${2:accessKeys}) / getRecord(${1:table}, ${2:accessKeys}, ${3:classNew}) | // variable examples type ResultSet abc | abc. | Method | next() / .getCol(${1:columnNumber} | Demo And so on

Click routines (Ctrl+Click on functions/routines)

Click on any function regardless of whether it is in the same file or a different file; if it does not exist, it will not jump to another location.

⚙️ Extension Configuration

This extension works out of the box without requiring complex configuration. However, you can customize the following settings in your settings.json: Demo

{
  "psl.hover.enable": true, // Enable/Disable Hover feature
  "psl.snippets.enable": true, // Enable/Disable Snippets feature
  "psl.scope.enable": true // If enabled, only scans definition files within the current project folder. If disabled, scans the entire workspace. Toggling this will reset the search routines cache!
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft