-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Directory Paths not working for Cygwin #27
Comments
One question is how to identify a profile is Cygwin environment? |
Either by checken the Windows Terminal’s
Or you could also allow a user to set a flag, in case the go crazy and change cygwin names to something different: This project’s
I think the latter option is safest. |
These two way are good! I tried `wt.exe -p "Cygwin" -d /cygdrive/c/". But it did not worke. |
Same, it does not like the -d operation... hmm |
@rescenic Well, how does this solve anything regarding the issue (i.e., open a desired folder location using shell menu)? |
Same issue is happening for Git Bash. |
Cygwin maps Linux POSIX paths to Windows Path and prefixes the current path with
/cygdrive/
That means, assume you are in this folder:
C:\Users\Username\git\project
the corresponding cygwin path would be/cygdrive/c/Users/Username/git/project
Could you prepend the
/cygdrive/
if a users defines an id which containscygwin
in thecommandline
property. I’m not a Powershell scripter, so it woud take too much time for me.The text was updated successfully, but these errors were encountered: