diff options
author | Tom Feist <shabble@metavore.org> | 2010-10-06 23:39:15 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2010-10-06 23:39:15 +0000 |
commit | 79db18ffd51b7469e0793f5878d3e5509f22e9da (patch) | |
tree | 928de70508d6dd29f9fab0687e5974325f6c0c9e /test/irssi | |
parent | back to stty parsing, with linux and osx cases. Falls back to 80x24 if it (diff) | |
download | irssi-scripts-79db18ffd51b7469e0793f5878d3e5509f22e9da.tar.gz irssi-scripts-79db18ffd51b7469e0793f5878d3e5509f22e9da.zip |
updated config with some handy aliases.
Diffstat (limited to '')
-rw-r--r-- | test/irssi/config | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/test/irssi/config b/test/irssi/config index 3fb5019..3b32ee9 100644 --- a/test/irssi/config +++ b/test/irssi/config @@ -166,7 +166,7 @@ aliases = { botaway = "/away auto-away [\002BX\002-MsgLog On] (Away since 1:43 am Mon Aug 24)"; vim = "script load vim_mode.pl"; unvim = "/script unload vim_mode"; - prompt = "script load prompt_replace.pl"; + pl = "script load prompt_replace.pl"; }; statusbar = { @@ -268,9 +268,10 @@ statusbar = { }; prompt = { items = { - new_prompt = { priority = "0"; }; + uberprompt = { priority = "-1"; }; input = { priority = "10"; }; }; + position = "100"; }; promptadd = { disabled = "yes"; }; }; @@ -288,6 +289,8 @@ settings = { mass_hilight_action = "/echo $nick"; mass_hilight_threshold = "0"; vim_mode_debug = "yes"; + superprompt_format = "%K[%W$tag%c/%K$cumode%n$*%K]%n "; + uberprompt_format = "[$*] "; }; "fe-common/core" = { bell_beeps = "yes"; }; "irc/core" = { ctcp_userinfo_reply = ""; }; @@ -304,5 +307,9 @@ keyboard = ( { key = "meta-h"; id = "command"; data = "echo moo /echo moo"; }, { key = "meta-q"; id = "command"; data = "echo bacons"; }, { key = "meta-c"; id = "command"; data = "echo moo ; /echo bar"; }, - { key = "meta-l"; id = "command"; data = "visual "; } + { key = "meta-l"; id = "command"; data = "visual "; }, + { key = "meta-m"; id = "command"; data = "redraw "; }, + { key = "^V"; id = "command"; data = "visual "; }, + { key = "^F"; id = "command"; data = "visual toggle"; }, + { key = "^G"; id = "command"; data = "visual clear"; } ); |