Browse Source

Remove mention of --margins from readme

Still supported for now, but mostly useless clutter in the readme and
usage, since you can set it from the menu/prefs and conf file.
master
cancel 5 years ago
parent
commit
de9a7b2e16
  1. 2
      README.md
  2. 4
      tui_main.c

2
README.md

@ -102,8 +102,6 @@ The `make` wrapper will enable `--portmidi` by default. If you run the `tool` bu
Usage: orca [options] [file]
General options:
--margins <nxn> Set cosmetic margins.
Default: 2x1
--undo-limit <number> Set the maximum number of undo steps.
If you plan to work with large files,
set this to a low number.

4
tui_main.c

@ -28,8 +28,6 @@ static void usage(void) {
fprintf(stderr,
"Usage: orca [options] [file]\n\n"
"General options:\n"
" --margins <nxn> Set cosmetic margins.\n"
" Default: 2x1\n"
" --undo-limit <number> Set the maximum number of undo steps.\n"
" If you plan to work with large files,\n"
" set this to a low number.\n"
@ -2650,7 +2648,7 @@ void print_loading_message(char const *s) {
//
enum {
Argopt_margins = UCHAR_MAX + 1,
Argopt_margins = UCHAR_MAX + 1, // TODO remove, use conf opts only
Argopt_hardmargins,
Argopt_undo_limit,
Argopt_init_grid_size,

Loading…
Cancel
Save