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
Platform Arch Linux Terminal software Konsole with nushell
Completion results can be shifted when a file/folder contains accents or emojis in nushell.
"file0a".into(), "file0b".into(), "file0é".into(), "file1a".into(), "file1é".into(), "file2a".into(), "file2éééééééé".into(), "file3a".into(),
cargo run --example completions
f[TAB]
touch file0a file0b file0é file1a file1📁 file2a file2📁📁📁📁📁 file3a
./[TAB]
ls [TAB]
Changing .len() to .width() fix this
.len()
.width()
reedline/src/menu/columnar_menu.rs
Line 657 in a580ea5
Other .len() call could be replaced by .width() in this file:
The text was updated successfully, but these errors were encountered:
295f16f
Successfully merging a pull request may close this issue.
Platform Arch Linux
Terminal software Konsole with nushell
Completion results can be shifted when a file/folder contains accents or emojis in nushell.
Steps to reproduce
With reedline
cargo run --example completions
f[TAB]
With nushell
touch file0a file0b file0é file1a file1📁 file2a file2📁📁📁📁📁 file3a
./[TAB]
(if it doesn't work, usels [TAB]
or similar)Screenshots/Screencaptures
Additional context
Changing
.len()
to.width()
fix thisreedline/src/menu/columnar_menu.rs
Line 657 in a580ea5
Other
.len()
call could be replaced by.width()
in this file:The text was updated successfully, but these errors were encountered: