Introduce a new language picker that displays available languages
Right now this panics when trying to select a language, so that's what we're going to implement next. Co-Authored-By: Julia Risley <julia@zed.dev>
This commit is contained in:
parent
d39c761de5
commit
b402f27d50
6 changed files with 235 additions and 0 deletions
20
crates/language_selector/Cargo.toml
Normal file
20
crates/language_selector/Cargo.toml
Normal file
|
@ -0,0 +1,20 @@
|
|||
[package]
|
||||
name = "language_selector"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[lib]
|
||||
path = "src/language_selector.rs"
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
editor = { path = "../editor" }
|
||||
fuzzy = { path = "../fuzzy" }
|
||||
language = { path = "../language" }
|
||||
gpui = { path = "../gpui" }
|
||||
picker = { path = "../picker" }
|
||||
project = { path = "../project" }
|
||||
theme = { path = "../theme" }
|
||||
settings = { path = "../settings" }
|
||||
workspace = { path = "../workspace" }
|
Loading…
Add table
Add a link
Reference in a new issue