Implement basic AddFile command in project panel

This commit is contained in:
Max Brunsfeld 2022-04-29 16:27:45 -07:00
parent d4492086b3
commit a217e2e64b
4 changed files with 465 additions and 77 deletions

View file

@ -8,6 +8,7 @@ path = "src/project_panel.rs"
doctest = false
[dependencies]
editor = { path = "../editor" }
gpui = { path = "../gpui" }
project = { path = "../project" }
settings = { path = "../settings" }
@ -17,6 +18,7 @@ workspace = { path = "../workspace" }
unicase = "2.6"
[dev-dependencies]
editor = { path = "../editor", feature = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
workspace = { path = "../workspace", features = ["test-support"] }
serde_json = { version = "1.0.64", features = ["preserve_order"] }