vala-lang / vala-language-server

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

Fix indentation style of formatter #302

Open lw64 opened 6 months ago

lw64 commented 6 months ago

Currently:

var animation_timed = new Adw.TimedAnimation (
                                              progress_bar, // Widget
                                              0, 1, // Initial value, final value
                                              1500, // Duration (in milliseconds)
                                              target_timed // Animation target
    ) {
    easing = EASE_IN_OUT_CUBIC
};

But it should rather be:

var animation_timed = new Adw.TimedAnimation (
    progress_bar, // Widget
    0, 1, // Initial value, final value
    1500, // Duration (in milliseconds)
    target_timed // Animation target
) {
    easing = EASE_IN_OUT_CUBIC
};