Daniil
Daniil
@meganrogge, can you help this issue to receive an `assignee`? Thanks!
@sean-mcmanus, you should be the right person who knows how to put this issue on track 🙏
@sean-mcmanus interesting point, but... I've checked `Visual Studio 22` variables display in debugger, `utf-8` strings are showing properly (with no flaws). Since `MIEngine` is mutual (as it seems) for both...
UPD: noticed that `vscode-cpptools`/`debugger` shows `utf-8` strings only if they are presented via `char` ptr/std::string. So I assume that C++20 addition of `char(8/16/32)_t` self-sustaining types is just not reflected in...
Full confirmation of @kjohnsen statement. https://github.github.com/gfm/#soft-line-breaks > 6.13 Soft line breaks A regular line break (not in a code span or HTML tag) `that is not preceded by two or...
@shd101wyy, Hi! Are you going to address this? p.s.: 1.2K issues ☠️
@ricky9075, did you create proper **anchor** in your `Readme.md` exactly as: `// ANCHOR[id=my_anchor]`? Maybe you are thinking that extension can pick markdown headlines, but it can't
This kind of all-consuming glob pattern helped me: ```json "files.associations": { "**/Microsoft Visual Studio/**/MSVC/**/include/**": "cpp" } ```
@newren, Is it still impossible to apply `--replace-text` on particular _files_ and _dirs/_? ``` git filter-repo --dry-run --refs main --path '.editorconfig' --replace-text
### Solution `git filter-branch --tree-filter "find . -path './src/*' -regextype egrep -regex '.*\.(hpp|cpp)' -exec perl -0777 -pe 's{\n\n\n+}{\n\n}g' -i {} \;" ` Was replacing ">1 blank lines" with single one