diff options
author | Tom Feist <shabble@cowu.be> | 2010-08-21 17:55:22 +0000 |
---|---|---|
committer | Tom Feist <shabble@cowu.be> | 2010-08-21 17:55:22 +0000 |
commit | 26dfa6b3287ed2e2fc461ccffcb2e30ad5e66b6b (patch) | |
tree | bb73f220692f3cc9d5f00ec81db6dd6799c227e5 /test | |
parent | some stuff with colour popups (diff) | |
download | irssi-scripts-26dfa6b3287ed2e2fc461ccffcb2e30ad5e66b6b.tar.gz irssi-scripts-26dfa6b3287ed2e2fc461ccffcb2e30ad5e66b6b.zip |
added first attempt at a patch for creating bindings accessor. Currently lives in the Irssi::UI::bindings() to avoid poking makefiles too hard
Diffstat (limited to '')
-rw-r--r-- | test/irssi/config | 6 | ||||
-rwxr-xr-x | test/run_irssi.sh | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/test/irssi/config b/test/irssi/config index 1e0d97c..620c7e3 100644 --- a/test/irssi/config +++ b/test/irssi/config @@ -153,6 +153,9 @@ aliases = { funcs_for = "/dump [map *\\$_{NAME}, grep ref(\\$_) eq 'GLOB' && *\\$_{CODE} && *\\$_{PACKAGE} eq 'Irssi::UI::Window', values \\%Irssi::UI::Window::]"; et = "/script unload expando_test.pl; /script load expando_test"; se = "script exec"; + detach = "eval exec - screen -X detach"; + xxx = "/dump Irssi::UI::bindings()"; + showbind = "/script exec \\%foo = Irssi::UI::bindings()\\; print \\$foo{\"\\\\$0\"}\\;"; }; statusbar = { @@ -266,8 +269,9 @@ settings = { real_name = "shabble"; user_name = "tomfeist"; nick = "tomfeist"; + timestamp_format = "%+"; }; - "fe-text" = { actlist_sort = "refnum"; }; + "fe-text" = { actlist_sort = "refnum"; indent = "1"; }; "perl/core/scripts" = { autoinstall_custom_prompt = "yes"; }; "fe-common/core" = { bell_beeps = "yes"; }; }; diff --git a/test/run_irssi.sh b/test/run_irssi.sh index 9b73b49..b3f47a4 100755 --- a/test/run_irssi.sh +++ b/test/run_irssi.sh @@ -1,2 +1,3 @@ #!/usr/bin/env bash -/opt/stow/repo/irssi/bin/irssi --home=irssi/ +export PERL5LIB=${PERL5LIB}:/opt/stow/repo/irssi/lib/perl5/5.10.1/darwin-2level +screen /opt/stow/repo/irssi/bin/irssi --home=irssi/ |