kcl-lang / kcl

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

[Enhancement] Add hover information when input the function argument #1398

Closed Peefy closed 2 months ago

Peefy commented 3 months ago

Enhancement

Like Rust

image

When developers type the function parameters in the code.

func = lambda x, y, z {
    x + y + z
}
res = func(x, <cursor>) # Show the function type hover information and the parameter location.
EraKin575 commented 3 months ago

I would like to work on this issue