SCG82

Results 18 comments of SCG82

Here's how I prepend `[ YYYY/MM/DD - HH:mm:ss ]` to all debug output lines: ```javascript var moment = require('moment'); var debug = require('debug'); debug.formatArgs = formatArgs; function formatArgs(args) { let...

> @SCG82 can your code snippet be used to apply to _all_ instances of debug throughout the application? > > For example, I would run that code once in my...

> /needsMoreInfo > > Is it plain TS file or as embedded language e.g. in Vue file? Is it reproducible with all extensions disabled? You can try this with F1...

Disabling **Editor › Bracket Pair Colorization** ``` "editor.bracketPairColorization.enabled": false ``` removes the red color from the `>` symbols.

Could this be caused by https://github.com/microsoft/vscode/pull/151705?

> ``` const getRecommendationPercentage = (recommendation: number) => { if (recommendation < 0.02) { return 100 } else if (recommendation > 0.1) { return 90 } else if (recommendation >...

As mentioned in https://github.com/johnsoncodehk/volar/issues/1677#issuecomment-1208228192, adding the following to `settings.json` can be used as a temporary workaround: ```json "editor.language.colorizedBracketPairs": [ ["{", "}"], ["[", "]"], ["(", ")"] ] ```

> So I'm going to give up on using `macdyllibbundler` to try and address the problem, and just live with doing separate builds on macOS 11 and macOS 12, and...

How did you end up with `search_path` without a trailing slash? If I'm not mistaken, every path added to `Settings::searchPath` is checked for a missing trailing slash prior to the...