diff options
author | James Booth <boothj5@gmail.com> | 2012-10-28 02:58:12 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-10-28 02:58:12 +0000 |
commit | cd56134ebb8f0789c776477a1a1b6e337e6d0e70 (patch) | |
tree | cdb62f23780e14c53bcd4f74dcbbacdf0602e4ad /src | |
parent | 6318cd91ba0fee532490672a3995567b18b58599 (diff) | |
download | profani-tty-cd56134ebb8f0789c776477a1a1b6e337e6d0e70.tar.gz |
Added offline to /who autocomplete
Diffstat (limited to 'src')
-rw-r--r-- | src/command.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c index 0fd093bb..e9f40409 100644 --- a/src/command.c +++ b/src/command.c @@ -442,6 +442,8 @@ cmd_init(void) p_autocomplete_add(who_ac, (gchar *)strdup(pcmd->cmd+1)); } + p_autocomplete_add(who_ac, "offline"); + history_init(); } |