Fix tabbing

This commit is contained in:
Nate Symer 2018-05-26 13:37:08 -04:00
parent 81a456d68d
commit 02599f6402
5 changed files with 149 additions and 150 deletions

View file

@ -23,6 +23,5 @@ struct cmd_results *cmd_smart_gaps(int argc, char **argv) {
return cmd_results_new(CMD_INVALID, "smart_gaps", return cmd_results_new(CMD_INVALID, "smart_gaps",
"Expected 'smart_gaps <on|off>' "); "Expected 'smart_gaps <on|off>' ");
} }
return cmd_results_new(CMD_SUCCESS, NULL, NULL); return cmd_results_new(CMD_SUCCESS, NULL, NULL);
} }

View file

@ -193,8 +193,8 @@ static void config_defaults(struct sway_config *config) {
config->edge_gaps = true; config->edge_gaps = true;
config->smart_gaps = false; config->smart_gaps = false;
config->gaps_inner = 20;//0; config->gaps_inner = 0;
config->gaps_outer = 20;//0; config->gaps_outer = 0;
if (!(config->active_bar_modifiers = create_list())) goto cleanup; if (!(config->active_bar_modifiers = create_list())) goto cleanup;