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
The current implementation of canonicalize_path relies on system APIs
(std::filesystem::canonical or realpath). This works well, but I want to
customize how canonicalization works in order to support finding config
files for LSP documents not saved on disk. In particular, I want
something like std::filesystem::weakly_canonical, but there is no
equivalent in glibc (Linux) or libSystem (macOS).
Implement our own version of canonicalize_path from mostly first
principles. This will let us tweak the behavior in the future.
0 commit comments