clang-format: use TypenameMacros
This commit removes line breaks and extra empty lines introduced in
commit fff3f79da9
.
This commit is contained in:
committed by
Orestis Floros
parent
83078a1e16
commit
e3a1c5b294
@ -29,23 +29,18 @@ typedef struct binding_t {
|
||||
char *command;
|
||||
bool release;
|
||||
|
||||
TAILQ_ENTRY(binding_t)
|
||||
bindings;
|
||||
TAILQ_ENTRY(binding_t) bindings;
|
||||
} binding_t;
|
||||
|
||||
typedef struct tray_output_t {
|
||||
char *output;
|
||||
|
||||
TAILQ_ENTRY(tray_output_t)
|
||||
tray_outputs;
|
||||
TAILQ_ENTRY(tray_output_t) tray_outputs;
|
||||
} tray_output_t;
|
||||
|
||||
typedef struct config_t {
|
||||
uint32_t modifier;
|
||||
|
||||
TAILQ_HEAD(bindings_head, binding_t)
|
||||
bindings;
|
||||
|
||||
TAILQ_HEAD(bindings_head, binding_t) bindings;
|
||||
position_t position;
|
||||
bool verbose;
|
||||
bool transparency;
|
||||
@ -59,10 +54,7 @@ typedef struct config_t {
|
||||
char *command;
|
||||
char *fontname;
|
||||
i3String *separator_symbol;
|
||||
|
||||
TAILQ_HEAD(tray_outputs_head, tray_output_t)
|
||||
tray_outputs;
|
||||
|
||||
TAILQ_HEAD(tray_outputs_head, tray_output_t) tray_outputs;
|
||||
int tray_padding;
|
||||
int num_outputs;
|
||||
char **outputs;
|
||||
|
Reference in New Issue
Block a user