summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorrummik2017-04-06 16:28:24 -0400
committerrummik2017-04-06 16:28:24 -0400
commit9c30041b625943fdbc6f126bb37faf9ec455b579 (patch)
tree07a0f4fd79b4b827bab67bb70a7e8c214ef5a72e /scripts
parent131dd44aa39c76cbcf3118c262c969ce8f224519 (diff)
downloadscripts.irssi.org-9c30041b625943fdbc6f126bb37faf9ec455b579.tar.bz2
[hilightwin] Default to not showing network name
Diffstat (limited to 'scripts')
-rw-r--r--scripts/hilightwin.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/hilightwin.pl b/scripts/hilightwin.pl
index 70e31e4..3bb2863 100644
--- a/scripts/hilightwin.pl
+++ b/scripts/hilightwin.pl
@@ -5,8 +5,8 @@
# Modded a tiny bit by znx to stop private messages entering the hilighted
# window (can be toggled) and to put up a timestamp.
#
-# Changed a little by rummik to optionally show network name. Disable with
-# `/set hilightwin_shownetwork off`
+# Changed a little by rummik to optionally show network name. Enable with
+# `/set hilightwin_shownetwork on`
#
use strict;
@@ -78,7 +78,7 @@ Irssi::print("Create a window named 'hilight'") if (!$window);
Irssi::settings_add_bool('hilightwin','hilightwin_showprivmsg',1);
Irssi::settings_add_str('hilightwin', 'hilightwin_ignore_targets', '');
-Irssi::settings_add_bool('hilightwin','hilightwin_show_network', 1);
+Irssi::settings_add_bool('hilightwin','hilightwin_show_network', 0);
Irssi::signal_add('print text', 'sig_printtext');