Prevent CodeLens CSS selector name from being invalid by x24git · Pull Request #95005 · microsoft/vscode

This PR fixes #94958

In the codelensController, there is an issue when the class name for the codeLens span element gets generated on line 70.

this._styleClassName = hash(this._editor.getId()).toString(16); 

Adding an underscore in front of the hashed editor ID should allow any id value to accepted as a valid CSS selector (since underscores are always allowed to start CSS selectors).