diff options
author | C. McEnroe | 2021-01-16 14:04:53 -0500 |
---|---|---|
committer | C. McEnroe | 2021-01-16 14:15:00 -0500 |
commit | 063f2aaa0c578ee54209b1ce31b0f584af583488 (patch) | |
tree | fdfa23847d747b08f8aa0b52b32462f43e9adab9 /chat.c | |
parent | 5a490945ea221cc94b05e2ed6e872a2ecbefe175 (diff) |
Add -I highlight option and /highlight
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chat.c b/chat.c index cdea9a0..ebffe46 100644 --- a/chat.c +++ b/chat.c @@ -199,6 +199,7 @@ int main(int argc, char *argv[]) { { .val = '!', .name = "insecure", no_argument }, { .val = 'C', .name = "copy", required_argument }, { .val = 'H', .name = "hash", required_argument }, + { .val = 'I', .name = "highlight", required_argument }, { .val = 'N', .name = "notify", required_argument }, { .val = 'O', .name = "open", required_argument }, { .val = 'R', .name = "restrict", no_argument }, @@ -234,6 +235,7 @@ int main(int argc, char *argv[]) { break; case '!': insecure = true; break; case 'C': utilPush(&urlCopyUtil, optarg); break; case 'H': parseHash(optarg); + break; case 'I': filterAdd(Hot, optarg); break; case 'N': utilPush(&uiNotifyUtil, optarg); break; case 'O': utilPush(&urlOpenUtil, optarg); break; case 'R': self.restricted = true; |