This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # VSCode-specific PowerShell profile | |
| # This profile is loaded when PowerShell runs inside VS Code. | |
| # | |
| # It automatically discovers PowerShell files from two sources: | |
| # 1. Recursive scan of the workspace directory | |
| # 2. ALL open .ps1 editor tabs across ALL VS Code windows (via state.vscdb) | |
| # | |
| # All discovered functions (with their comment-based help blocks) are loaded | |
| # into the session so that IntelliSense hover tooltips and Get-Help work. | |
| # |