Skip to content
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

Path containing spaces cause tab-completion issues on windows #9302

Closed
few opened this issue Dec 10, 2014 · 2 comments
Closed

Path containing spaces cause tab-completion issues on windows #9302

few opened this issue Dec 10, 2014 · 2 comments

Comments

@few
Copy link
Contributor

few commented Dec 10, 2014

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

@dhoegh
Copy link
Contributor

dhoegh commented Dec 10, 2014

@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\\)

@few
Copy link
Contributor Author

few commented Dec 10, 2014

Very nice. Feel free to close this issue then.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants