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
Suppose you are in a folder with two sub folders called "x x" and "xxx". Now type cd("x
result on linux: x\ x/ xxx/ result on windows (note the missing backslash): x x\ xxx\
Now enter: "\ " (without the "", note the white space) result on linux (as expected): x\ x/ result on windows:
julia> versioninfo() Julia Version 0.3.3 Commit b24213b (2014-11-23 20:19 UTC) Platform Info: System: Windows (i686-w64-mingw32) CPU: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz WORD_SIZE: 32 BLAS: libopenblas (DYNAMIC_ARCH NO_AFFINITY Nehalem) LAPACK: libopenblas LIBM: libopenlibm LLVM: libLLVM-3.3
The text was updated successfully, but these errors were encountered:
@few I have recently changed this behaviour in pull request #8838 to be correct and it will be included in 0.3.4. The behaviour is now:
julia> cd("x x\ x\\ xxx\\ julia> cd("x\ <tab> julia> cd("x\ x\\)
Sorry, something went wrong.
Very nice. Feel free to close this issue then.
No branches or pull requests
Suppose you are in a folder with two sub folders called "x x" and "xxx". Now type
cd("x
result on linux:
x\ x/ xxx/
result on windows (note the missing backslash):
x x\ xxx\
Now enter: "\ " (without the "", note the white space)
result on linux (as expected):
x\ x/
result on windows:
julia> versioninfo()
Julia Version 0.3.3
Commit b24213b (2014-11-23 20:19 UTC)
Platform Info:
System: Windows (i686-w64-mingw32)
CPU: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
WORD_SIZE: 32
BLAS: libopenblas (DYNAMIC_ARCH NO_AFFINITY Nehalem)
LAPACK: libopenblas
LIBM: libopenlibm
LLVM: libLLVM-3.3
The text was updated successfully, but these errors were encountered: