kcl-lang / kcl

KCL Programming Language (CNCF Sandbox Project). https://kcl-lang.io
https://kcl-lang.io
Apache License 2.0
1.42k stars 110 forks source link

[Enhancement] Add completion item for the string union types. #1391

Closed Peefy closed 3 weeks ago

Peefy commented 1 month ago
schema Config:
    containerRuntime?:  "runc" | "rund"

n = Config {
    containerRuntime = "runc".<cursor> # Note we should add completion items for the string union types.
}
shruti2522 commented 1 month ago

Can I take up this issue, @Peefy