Brightscript Comment prints a function definition for the highlighted function name
Creates a block comment above a function/sub declaration with all, params and outputs (including default values if available) Example:
''''''''
' OpenView:
'
' @param {String} viewId=""
' @param {Object} content
' @returns String
''''''''
Function OpenView(viewId = "" as String,content as Object) as String
- Highlight the whole line with the function definition you wish to comment
- Bring up command pallet with Command + Shift + P
- Select 'Brightscript Function Comment' or
- Highlight the whole line with the function definition you wish to comment
- Use the keyboard shortcut - Default shortcut is Alt-Ctrl-C (Alt-Cmd-C for Mac).
Comment will appear as above. If the function is not formatted correctly the comment will fail or be deformed.
Credit to https://github.com/microsoft/vscode-comment for the base code used in this project
The extension registers keyboard shortcut brightscriptcomment.brightScriptAddComment to execute checking immediately. Default shortcut is Alt-Ctrl-C (Alt-Cmd-C for Mac).
If you have found a bug or you want to suggest some improvements or new functionality, create a pull request or an issue on GitHub.