shithub: orca

Download patch

ref: f8987917d80f0b46d9f1848c23e4469a16f8b74c
parent: c704b808d2d7e12725e9dfb54e7607ec00807583
author: cancel <cancel@cancel.fm>
date: Tue Dec 4 06:55:44 EST 2018

Change default margins to 2

--- a/tui_main.c
+++ b/tui_main.c
@@ -16,7 +16,7 @@
       "Usage: tui [options] [file]\n\n"
       "Options:\n"
       "    --margins <number> Add cosmetic margins.\n"
-      "                       Default: 0\n"
+      "                       Default: 2\n"
       "    -h or --help       Print this message and exit.\n"
       );
   // clang-format on
@@ -360,7 +360,7 @@
       {"help", no_argument, 0, 'h'},
       {NULL, 0, NULL, 0}};
   char* input_file = NULL;
-  int margin_thickness = true;
+  int margin_thickness = 2;
   for (;;) {
     int c = getopt_long(argc, argv, "h", tui_options, NULL);
     if (c == -1)