summary refs log tree commit diff
path: root/tag.c
diff options
context:
space:
mode:
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/tag.c b/tag.c
index 6cc5d41..e9b098b 100644
--- a/tag.c
+++ b/tag.c
@@ -21,19 +21,19 @@
 
 #include "chat.h"
 
-#define NONE    ""
-#define STATUS  "~status"
-#define VERBOSE "~irc"
+#define NONE   "-none-"
+#define STATUS "-status-"
+#define RAW    "-raw-"
 
-const struct Tag TagNone    = { 0, NONE };
-const struct Tag TagStatus  = { 1, STATUS };
-const struct Tag TagVerbose = { 2, VERBOSE };
+const struct Tag TagNone   = { 0, NONE };
+const struct Tag TagStatus = { 1, STATUS };
+const struct Tag TagRaw    = { 2, RAW };
 
 static struct {
 	char *name[TagsLen];
 	size_t len;
 } tags = {
-	.name = { NONE, STATUS, VERBOSE },
+	.name = { NONE, STATUS, RAW },
 	.len = 3,
 };
 
tr>2016-07-30Color PreProc DarkGreenJune McEnroe 2016-07-29Color Structure and Typedef in grayJune McEnroe 2016-07-27Color comments DarkBlue and LightBlueJune McEnroe 2016-07-27Color macros in yellowJune McEnroe 2016-07-26Colorscheme colors and schemesJune McEnroe 2016-07-26Add ''subtle'' colorschemeJune McEnroe 2016-07-26Add htoprcJune McEnroe 2016-07-24Add may and refactor ssh configJune McEnroe 2016-07-18Disable cursorlineJune McEnroe 2016-07-18Use hard constrast gruvbox darkJune McEnroe 2016-07-15Remove vim configurationJune McEnroe 2016-07-15Add readline to README configurations listJune McEnroe 2016-07-15Add vendor script to READMEJune McEnroe 2016-07-15Pull latest pathogen and gruvboxJune McEnroe