You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expect: VSCode detects the two file names are actually the same file, and only opens one file instead.
This is especially annoying when dealing with MSVC project, when click the build error message and a new window is opened.
Create a C++ project. The file name contains mixed upper and lower case. Open the file d:\git\Test\Main.cpp in editor
Create a task.json and use msbuild to build the project
Build. Assume there is an syntax error like the following. Notice that cl.exe converts filename to lower case
d:\git\test\main.cpp(10): error C2144: syntax error: 'int' should be preceded by ';' [d:\git\Test\Test.vcxproj]
Click the status "Problem" icon. Select the error message from the panel. The main.cpp is opened in editor, right next to Main.cpp
The text was updated successfully, but these errors were encountered:
Steps to Reproduce:
Create a file named LICENSE.txt
Run "Code --reuse-window LICENSE.txt"
Run "Code --reuse-window license.txt"
Observe that VSCode opens 2 editor windows.
Expect: VSCode detects the two file names are actually the same file, and only opens one file instead.
This is especially annoying when dealing with MSVC project, when click the build error message and a new window is opened.
d:\git\test\main.cpp(10): error C2144: syntax error: 'int' should be preceded by ';' [d:\git\Test\Test.vcxproj]
The text was updated successfully, but these errors were encountered: