update reedline (#11589)

update to support the latest reedline changes from
https://github.com/nushell/reedline/pull/696
This commit is contained in:
maxomatic458 2024-01-20 15:39:20 +01:00 committed by GitHub
parent e7a4af14cd
commit 4458aae3d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

2
Cargo.lock generated
View File

@ -4517,7 +4517,7 @@ dependencies = [
[[package]] [[package]]
name = "reedline" name = "reedline"
version = "0.28.0" version = "0.28.0"
source = "git+https://github.com/nushell/reedline?branch=main#2f3eb3e82f30ce3b1bb3f2b826071ec8cc278687" source = "git+https://github.com/nushell/reedline?branch=main#31eaeeb231664b889c92595ff38ead4ccb570766"
dependencies = [ dependencies = [
"arboard", "arboard",
"chrono", "chrono",

View File

@ -731,4 +731,8 @@ impl Menu for DescriptionMenu {
) )
} }
} }
fn set_cursor_pos(&mut self, _pos: (u16, u16)) {
// The Description Menu does not need the cursor position
}
} }