We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a problem with the derivation of RgRootDir() in Windows.
In RgMakePath - the top (root) directory is drive:/, e.g. c:/. I did a dirty little fix and changed RgMakePath to:
fun! s:RgMakePath(dirs, dir) let l:root = has("win32") ? '' : '/' return l:root.join(a:dirs[0:index(a:dirs, a:dir)], '/') endfun
...but this doesn't work for UNC paths, e.g. //computer/share/folder, so there is room for a better solution.
The text was updated successfully, but these errors were encountered:
Thanks, I'll look into it when I get some time.
Sorry, something went wrong.
Same issue here.. @fraxen solution worked as long as I have 'shellslash' set. Otherwise we need to account for the slashes in RgRootDir() too.
No branches or pull requests
There is a problem with the derivation of RgRootDir() in Windows.
In RgMakePath - the top (root) directory is drive:/, e.g. c:/. I did a dirty little fix and changed RgMakePath to:
...but this doesn't work for UNC paths, e.g. //computer/share/folder, so there is room for a better solution.
The text was updated successfully, but these errors were encountered: