slynch8 / 10x

10x IDE/Editor
188 stars 33 forks source link

Richer auto-complete pop-up #1541

Open forrestthewoods opened 1 year ago

forrestthewoods commented 1 year ago

The auto-complete pop-up in 10x is amazing because it actually works. However it could present more information.

10x: image

Visual Studio: image

VS Code (from one of my Rust projects because it fails to parse Unreal): image

10x knows the full function signature. It shows on both mouse hover and when typing args. But it doesn't doesn't show upfront.

Hover: image

Auto-complete: image

10x does NOT appear to have any path that shows the function comment. That can be really useful. FWIW here is how they're written in Unreal which Visual Studio is able to parse. image

I think it's also nice to have some type of visual indicator to differentiate between methods and member variables. Visual Studio does this with little icons. Any which way is fine.

forrestthewoods commented 1 year ago

Oh, 10x also could use a way to cycle through overloads. Visual Studio handles that nicely.