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
This is useful in cases where initial path contains special characters.
For example, path containing "c++" needs to be properly decoded, otherwise Acme will try to open file containing %2B%2B, which is wrong.
Issue 9fans#60 on GitHub.
Here's an example.
On my machine, C++'s std::deque is located at this path:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/deque
I tried doing "L def" on std::deque.
Since the path contains ++ ("c++"), when it got to Acme, it was interpreted as this filename:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c%2B%2B/v1/deque
Notice percent encoded %2B%2B.
Since this file doesn't exist, this error is printed:
can't open /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c%2B%2B/v1/deque: No such file or directory
The text was updated successfully, but these errors were encountered: