-
-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Uncrustify.cfg for formatting #71
base: main
Are you sure you want to change the base?
Conversation
error where if both input and output tab sizes are differents, formatting multiple times files with conditional expressions, will add several tabs
I assume you haven't update the showcases, I'm getting different results, so I'll just refer to files by name
widget.destroy.connect(() => {
remove_provider(widget);
});
Bus.own_name(
BusType.SESSION,
application_id,
BusNameOwnerFlags.NONE,
(conn) => {
try {
this.conn = conn;
conn.register_object("/io/Astal/Application", this);
} catch (Error err) {
critical(err.message);
}
},
() => {},
() => {}
);
public async void login(
string username,
string password,
string cmd
) throws GLib.Error {
yield login_with_env(username, password, cmd, {});
}
shuffle_status = shuffle_status == Shuffle.ON
? Shuffle.OFF
: Shuffle.ON; We should also stay with spaces instead of tabs |
…on closing parens
I can't find a single solution for this behaviour. The required rule for it is
This can be fixed by setting activate.connect(() => {
var display = Gdk.Display.get_default();
display.monitor_added.connect((mon) => {
monitor_added(mon);
notify_property("monitors");
});
display.monitor_removed.connect((mon) => {
monitor_removed(mon);
notify_property("monitors");
});
});
It was fixed by setting Bus.own_name(
BusType.SESSION,
application_id,
BusNameOwnerFlags.NONE,
(conn) => {
try {
this.conn = conn;
conn.register_object("/io/Astal/Application", this);
} catch (Error err) {
critical(err.message);
}
},
() => {},
() => {}
); public async void login(
string username,
string password,
string cmd
) throws GLib.Error {
yield login_with_env(username, password, cmd, {});
}
After setting public void shuffle() {
if (shuffle_status == Shuffle.UNSUPPORTED) {
critical(@"shuffle is unsupported by $bus_name");
return;
}
shuffle_status = shuffle_status == Shuffle.ON
? Shuffle.OFF
: Shuffle.ON;
}
Now it uses spaces |
…ndentation to class" This reverts commit dc40ef5.
… the style desired by the programmer
Warning
There is a bug with uncrustify in
lib/apps/application.vala
line 59 (after formatting), that deletes the;
, adding it back after formatting the file will work as expected and no more issues should arise.Add uncrustify for consistent formatting rules across
Vala
andC
files. Vala example result:lib/apps/fuzzy.vala
from
to
Summary
if
,else
,catch
, etc will have space before parens.A full showcase of all formatted files can be seen at https://github.com/ARKye03/astal/tree/refactor-style
Note
I ran
fd -e c -e h -e vala . | xargs uncrustify -c uncrustify.cfg --no-backup
for it