summaryrefslogtreecommitdiffstats
path: root/scripts/intercept.pl
diff options
context:
space:
mode:
authorJari Matilainen2015-11-25 14:54:47 +0100
committerJari Matilainen2015-11-25 14:54:47 +0100
commit3788aa4479ae8290b8bc6302c762aa95183e7bfe (patch)
tree65247a06b7a88a50050a81dd31d8a82ebeca8bfd /scripts/intercept.pl
parentfb9a795a93d464d1780b578769cd409a7f9f17c7 (diff)
downloadscripts.irssi.org-3788aa4479ae8290b8bc6302c762aa95183e7bfe.tar.bz2
Added documentation
Diffstat (limited to 'scripts/intercept.pl')
-rw-r--r--scripts/intercept.pl13
1 files changed, 12 insertions, 1 deletions
diff --git a/scripts/intercept.pl b/scripts/intercept.pl
index b798950..afb8b01 100644
--- a/scripts/intercept.pl
+++ b/scripts/intercept.pl
@@ -1,4 +1,15 @@
# Some elements borrowed from ideas developed by shabble@freenode(https://github.com/shabble/irssi-docs/wiki )
+#
+# You can change what intercept.pl considers a linestart by setting
+# /set intercept_linestart to a regular expression that fits your needs.
+# For most, a simple whitespace or . pattern will stop most accidental
+# inputs.
+#
+# You can also tell which patterns should be ignored, for example
+# /set intercept_exceptions s/\w+/[\w\s\d]+/ wouldn't consider
+# s/word a mistyped command if it is followed by a slash, string of
+# valid characters and a final slash.
+# You can enter several patterns separated by a space.
use strict;
use warnings;
@@ -8,7 +19,7 @@ use Irssi;
use vars qw($VERSION %IRSSI);
-$VERSION = "0.1";
+$VERSION = "0.2";
%IRSSI = (
authors => "Jari Matilainen",
contact => 'vague!#irssi@freenode on irc',