...
Having Intellisense means that the editor will try to guide you completing the current line of code, as shown above where I’ve written CMS_, and because the Editor knows of the functions in advance, it is able to assist me by showing all functions starting with ‘CMS_’.
...
After having selected the function that I wanted, I can now have parameters shown on ‘mouse over’
This all happens because I have notified the VS Code of the CiScripting module, by explicitly importing it, in the terminal window. If you do not have a terminal window in the bottom of the editor, you can get it in the ‘Terminal’ menu;
...
Then you can import the CISscripting module by writing ‘import-module CIScripting’ and hitting ‘Enter’
If you do not get the Intellisense functionality right away, you may need to restart VS Code.