vala-lang / vala-language-server

Code Intelligence for Vala & Genie
GNU Lesser General Public License v2.1
287 stars 41 forks source link

Add support for autocomplete for object initialization fields #257

Closed colinkiama closed 1 year ago

colinkiama commented 1 year ago

For example, while writing this code block:

var label = new Gtk.Label () {
    text = "Hello World"
};

Gtk.Label field suggestions should be displayed while writing the line for the text field.

Prince781 commented 1 year ago

This should hopefully be less complicated to achieve now that Vala.MemberInitializer is a Vala.Expression (wasn't true the last time I checked).

colinkiama commented 1 year ago

I'm sorry, this is a duplicate of #242. I just noticed now