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
Expected behavior:
When b/test.h is selected, and I press ALT+O, b/test.c should be opened.
When a/test.h is selected, and I press ALT+O, a/test.c should be opened.
Configuration and Logs
No c_cpp_properties.json, and "C/C++: Log Diagnostics" is not a valid command.
The issue is still reproducible after disabling all extensions except ms-vscode.cpptools
Additional context
While this can be a problem for projects that have files with the same name in the current project, it can also present a problem when your source files conflict with a file found in an external SDK provided by a configuration manager like CMake.
For example, if I am using a project that imports the Zephyr SDK via CMake tools, the Zephyr sources are not in the workspace itself, but can be found outside of the workspace.
I propose that if there are multiple files in the Intellisense DB matching the current file, it should show a list of all files. Ideally the first "preferred option" has the longest shared path with the current file. The pseudo code for the scoring algorithm could be written like this:
file_match_score(viewer_file_name, idb_file_name)
{
base_idb_file_name = basename(idb_file_name); // idb_file_name without the extension
base_viewer_file_name = basename(viewer_file_name); // viewer_file_name without the extension
score = 0;
score += num_matching_left_chars(viewer_file_name, base_idb_file_name);
score += num_matching_right_chars(base_viewer_file_name, base_idb_file_name);
return score
}
file_match_score("C:/test/a/test.c", "C:/test/a/test.h") == 14 left + 14 right == 28
file_match_score("C:/test/a/test.c", "C:/test/b/test.h") == 8 left + 4 right = 12
file_match_score("C:/test/a/test.c", "C:/external_sdk/some_path/test.h") == 3 left + 4 right = 7
So you can see this will attempt to prioritize files for matching based on higher score:
In the current directory
In the same project directory and a matching component folder path
In the same project directory and a non-matching component folder path
Files from an external SDK
The text was updated successfully, but these errors were encountered:
Thank you for letting us know. These are known limitations within our implementation of Switch Header/Source and will be addressed in the future. Please follow this issue: #2635 to stay up to date with our progress.
This current issue will be closed as a duplicate unless there are further concerns.
Environment
Bug Summary and Steps to Reproduce
Bug Summary:
Switching header/source will frequently find the wrong file.
Steps to reproduce:
Expected behavior:
When b/test.h is selected, and I press ALT+O, b/test.c should be opened.
When a/test.h is selected, and I press ALT+O, a/test.c should be opened.
Configuration and Logs
No c_cpp_properties.json, and "C/C++: Log Diagnostics" is not a valid command.
Other Extensions
Installed extensions:
The issue is still reproducible after disabling all extensions except ms-vscode.cpptools
Additional context
While this can be a problem for projects that have files with the same name in the current project, it can also present a problem when your source files conflict with a file found in an external SDK provided by a configuration manager like CMake.
For example, if I am using a project that imports the Zephyr SDK via CMake tools, the Zephyr sources are not in the workspace itself, but can be found outside of the workspace.
I propose that if there are multiple files in the Intellisense DB matching the current file, it should show a list of all files. Ideally the first "preferred option" has the longest shared path with the current file. The pseudo code for the scoring algorithm could be written like this:
So you can see this will attempt to prioritize files for matching based on higher score:
The text was updated successfully, but these errors were encountered: