mirror of
https://github.com/helix-editor/helix
synced 2024-11-10 10:34:45 +01:00
Fix 1.60 lints
This commit is contained in:
parent
9712bbb23b
commit
b935fac957
@ -165,7 +165,7 @@ impl Completion {
|
||||
if let Some(additional_edits) = item
|
||||
.additional_text_edits
|
||||
.as_ref()
|
||||
.or_else(|| resolved_additional_text_edits.as_ref())
|
||||
.or(resolved_additional_text_edits.as_ref())
|
||||
{
|
||||
if !additional_edits.is_empty() {
|
||||
let transaction = util::generate_transaction_from_edits(
|
||||
|
@ -490,7 +490,7 @@ mod test {
|
||||
assert_eq!(word_wrapper, vec!["AAAAAAAAAAAAAAA", "AAAA\u{00a0}AAA",]);
|
||||
|
||||
// Ensure that if the character was a regular space, it would be wrapped differently.
|
||||
let text_space = text.replace("\u{00a0}", " ");
|
||||
let text_space = text.replace('\u{00a0}', " ");
|
||||
let (word_wrapper_space, _) =
|
||||
run_composer(Composer::WordWrapper { trim: true }, &text_space, width);
|
||||
assert_eq!(word_wrapper_space, vec!["AAAAAAAAAAAAAAA AAAA", "AAA",]);
|
||||
|
Loading…
Reference in New Issue
Block a user