Results 33 comments of Daniil

@adrianescat, try to split debug into build+exec(`tasks.json`+`launch.json`) like [here](https://github.com/microsoft/vscode-go/issues/1166#issuecomment-330080011), to keep working eviroment for debugging program in _project root_ dir. `laucn.json`: ``` json // https://code.visualstudio.com/docs/editor/debugging#_launchjson-attributes { "version": "0.2.0", "configurations": [...

Same thing with filepaths without `:` and `#` at the end, only workaround is to append `:0` or `:1` to the filepath like: `// LINK readme.md:0`

> Stumbled upon this on my latest GitHub search: https://github.com/jcace/commentlinks Good finding @michael-hawker, but there even better solution for VSCode: https://github.com/StarlaneStudios/vscode-comment-anchors. Not totally sure, but seems that it is possible...

One more: https://marketplace.visualstudio.com/items?itemName=Fr43nk.seito-openfile No underline highlight but an ability to open any (existing) files

Still cannot find how to move/created maximized + decorated window onto second monitor. GLFW - 🤬

It took whole 10 minutes to fix this without any realization of what am I doing. Actually anybody could do this, shame on you, @cvengler 🙃

Looks like we need `CMAKE__SIMULATE_ID` and/or `CMAKE__COMPILER_FRONTEND_VARIANT` to detect `clang-cl` (`MSVC`) and not to pass `-Wno-unused-command-line-argument` https://discourse.cmake.org/t/how-to-determine-if-clang-or-clang-cl-is-used-on-windows/4129 ```cmake elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND (NOT (CMAKE_CXX_SIMULATE_ID STREQUAL "MSVC"))) ``` But why `/quiet`...

maybe `set(BOOST_CONTEXT_ASSEMBLER "${_default_asm}"..` should be used then!?

> but i dont like your logic, your check cxx compiler, but set options for asm files ```cmake elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") set_property(SOURCE ${ASM_SOURCES} APPEND PROPERTY COMPILE_OPTIONS "-Wno-unused-command-line-argument") ``` was added...

Managed to setup `Clang-CL` in VS Code and reproduce the issue, will fix soonely. @marakew how did you setup your clang-cl? `vcvarsall.bat` does not setup `mt.exe` path so it fails...