about summary refs log tree commit diff stats
path: root/src/command/cmd_ac.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-03-25 12:54:25 +0100
committerMichael Vetter <jubalh@iodoru.org>2020-03-25 12:54:25 +0100
commit4fc938d80425f647a7db34ff2f23b05780552d49 (patch)
treefdc4574dcb5af58565834c770449f5cb254c4baa /src/command/cmd_ac.c
parent4f19ea264218fc93f4bca00b1f5a901c0ddc1b44 (diff)
downloadprofani-tty-4fc938d80425f647a7db34ff2f23b05780552d49.tar.gz
Add setting to not colorize own nick according to xep-0392
Some users might want there nick to always stay white (etc) for easier
recognition.

Now we can do `/color own off` to not generate the color based on
xep-0392. The `me=` color (etc) from the theme will then be used.

Once we run this command `theme_load()` is called again.
And the theme looks totally wrong.
We encountered this at other times already and I think it's nothing
wrong with this new code here now but that there seems to be a missing
closing attr for the color when drawing.

Should be investigated seperately.

Fix https://github.com/profanity-im/profanity/issues/1288
Diffstat (limited to 'src/command/cmd_ac.c')
-rw-r--r--src/command/cmd_ac.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/command/cmd_ac.c b/src/command/cmd_ac.c
index 652b9b16..43b2f9f2 100644
--- a/src/command/cmd_ac.c
+++ b/src/command/cmd_ac.c
@@ -958,6 +958,7 @@ cmd_ac_init(void)
     autocomplete_add(color_ac, "off");
     autocomplete_add(color_ac, "redgreen");
     autocomplete_add(color_ac, "blue");
+    autocomplete_add(color_ac, "own");
 
     correction_ac = autocomplete_new();
     autocomplete_add(correction_ac, "on");
@@ -3758,6 +3759,11 @@ _color_autocomplete(ProfWin *window, const char *const input, gboolean previous)
 {
     char *result = NULL;
 
+    result = autocomplete_param_with_func(input, "/color own", prefs_autocomplete_boolean_choice, previous, NULL);
+    if (result) {
+        return result;
+    }
+
     result = autocomplete_param_with_ac(input, "/color", color_ac, TRUE, previous);
     if (result) {
         return result;