Skip to content

Commit

Permalink
Use crossterm fork with new function
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Nov 29, 2022
1 parent a413f01 commit 31064d7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion helix-term/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ which = "4.2"

tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["crossterm"] }
crossterm = { version = "0.25", features = ["event-stream"] }
# crossterm = { version = "0.25", features = ["event-stream"] }
crossterm = { git = "https://github.com/the-mikedavis/crossterm", branch = "md-query-keyboard-enhancement", features = ["event-stream"] }
signal-hook = "0.3"
tokio-stream = "0.1"
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
Expand Down
3 changes: 2 additions & 1 deletion helix-tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ default = ["crossterm"]
bitflags = "1.3"
cassowary = "0.3"
unicode-segmentation = "1.10"
crossterm = { version = "0.25", optional = true }
# crossterm = { version = "0.25", optional = true }
crossterm = { git = "https://github.com/the-mikedavis/crossterm", branch = "md-query-keyboard-enhancement", optional = true }
termini = "0.1"
serde = { version = "1", "optional" = true, features = ["derive"]}
helix-view = { version = "0.6", path = "../helix-view", features = ["term"] }
Expand Down
3 changes: 2 additions & 1 deletion helix-view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ helix-core = { version = "0.6", path = "../helix-core" }
helix-loader = { version = "0.6", path = "../helix-loader" }
helix-lsp = { version = "0.6", path = "../helix-lsp" }
helix-dap = { version = "0.6", path = "../helix-dap" }
crossterm = { version = "0.25", optional = true }
# crossterm = { version = "0.25", optional = true }
crossterm = { git = "https://github.com/the-mikedavis/crossterm", branch = "md-query-keyboard-enhancement", optional = true }

# Conversion traits
once_cell = "1.16"
Expand Down

0 comments on commit 31064d7

Please sign in to comment.