diff options
| -rw-r--r-- | vis.1 | 3 | ||||
| -rw-r--r-- | vis.c | 6 |
2 files changed, 8 insertions, 1 deletions
@@ -13,5 +13,8 @@ is a highly efficient vim like text editor. .SH OPTIONS .B \-v Print version information to standard output and exit. + +.B \-\- +Denotes the end of the options. Arguments after this will be handled as a file name. This can be used to edit a filename that starts with a '-'. .SH AUTHOR vis is written by Marc André Tanner <mat at brain-dump.org> @@ -2026,9 +2026,13 @@ int main(int argc, char *argv[]) { die("Could not load syntax highlighting definitions\n"); char *cmd = NULL; + bool end_of_options = false; for (int i = 1; i < argc; i++) { - if (argv[i][0] == '-') { + if (argv[i][0] == '-' && !end_of_options) { switch (argv[i][1]) { + case '-': + end_of_options = true; + break; case 'v': die("vis %s, compiled " __DATE__ " " __TIME__ "\n", VERSION); break; |
