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
$ fish --version fish, version 3.0.2-948-g4ddfd730
Repro:
$ touch foo foo[bar] $ ls foo[<TAB> $ ls foo[bar\]
This should have completed to either foo[bar] or foo\[bar\], but not foo[bar\]:
foo[bar]
foo\[bar\]
foo[bar\]
The text was updated successfully, but these errors were encountered:
escape unclosed brackets in a token before completing it
7bb1901
fixes fish-shell#5831
escape unclosed brackets in an argument before completing it
88f5218
escape square brackets in an argument before completing it
b56aa27
fish-shell/fish-shell@bc3dde9
I like the new approach better too! Merged as bc3dde9 . Thank you!!
Sorry, something went wrong.
No branches or pull requests
Repro:
This should have completed to either
foo[bar]
orfoo\[bar\]
, but notfoo[bar\]
:The text was updated successfully, but these errors were encountered: