Remove stray println (#4568)

* Default config improvements

* Finish cleanup

* Add some comments

* remove println
This commit is contained in:
JT
2022-02-20 09:41:16 -05:00
committed by GitHub
parent 56aacc4852
commit 6024a17a5b

View File

@ -215,7 +215,6 @@ impl NuCompleter {
let mut named = vec![0; short.len_utf8()]; let mut named = vec![0; short.len_utf8()];
short.encode_utf8(&mut named); short.encode_utf8(&mut named);
named.insert(0, b'-'); named.insert(0, b'-');
println!("{:?}", named);
if named.starts_with(&prefix) { if named.starts_with(&prefix) {
output.push(( output.push((
reedline::Span { reedline::Span {