Add command palette action events

This commit is contained in:
Joseph T. Lyons 2024-01-15 20:22:47 -05:00
parent deac172e39
commit 268d156fad
4 changed files with 41 additions and 5 deletions

View file

@ -9,6 +9,7 @@ path = "src/command_palette.rs"
doctest = false
[dependencies]
client = { path = "../client" }
collections = { path = "../collections" }
editor = { path = "../editor" }
fuzzy = { path = "../fuzzy" }
@ -16,9 +17,9 @@ gpui = { path = "../gpui" }
picker = { path = "../picker" }
project = { path = "../project" }
settings = { path = "../settings" }
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
theme = { path = "../theme" }
workspace = { path = "../workspace" }
zed_actions = { path = "../zed_actions" }
anyhow.workspace = true