diff options
author | Timo Sirainen <cras@irssi.org> | 2001-02-17 10:30:06 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-02-17 10:30:06 +0000 |
commit | 85ff24a7f7bd09dc820871bdbf2b59d44b462b7d (patch) | |
tree | ed69b2f96f1693fc180cc37139ccbd69f20eb3ad /docs | |
parent | 2517c4099ab7b23f3e45b0391ed9a6c3e87f9895 (diff) | |
download | irssi-85ff24a7f7bd09dc820871bdbf2b59d44b462b7d.zip |
added
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1224 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs')
-rw-r--r-- | docs/help/in/bind.in | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/docs/help/in/bind.in b/docs/help/in/bind.in new file mode 100644 index 00000000..c6785e99 --- /dev/null +++ b/docs/help/in/bind.in @@ -0,0 +1,86 @@ + +@SYNTAX:bind@ + +Bind some action to specified keystroke. + +Keystroke can have modifiers: + + ctrl-x + alt-x + alt-shift-x + +Where x being either a single character, or one of the special keys: + + Backspace Delete + Home End Prior Next + Up Down Left Right + Insert Return Tab + +(these key specifications will some day change to be more epic-like +when I have time to implement it) + +Command can be one of: + + command - Run any IRC command (you could use /command directly without + specifying this) + +(Cursor movement) + backward_character + forward_character + backward_word + forward_word + beginning_of_line + end_of_line + +(Scrollback movement) + scroll_backward - Previous page + scroll_forward - Next page + scroll_start - Beginning of the window + scroll_end - End of the window + +(Switching windows) + change_window + previous_window + next_window + upper_window + lower_window + active_window - Go to next window with the highest activity + next_window_item - Next channel/query. In empty windows change + to next server + previous_window_item - Previous channel/query. In empty windows change + to previous server + +(History) + backward_history + forward_history + +(Deleting text) + backspace + delete_character + delete_character + delete_next_word + delete_previous_word + delete_to_previous_space + erase_line + erase_to_beg_of_line + erase_to_end_of_line + +(Word completion) + word_completion + check_replaces - Check word replaces + +(Misc) + refresh_screen + yank_from_cutbuffer - "Undelete" line + transpose_characters - Swap current and previous character + special_char - Insert special character, data specifies the character. + This is used mostly for setting bold, underline, color, etc. + +Examples: + +Clear screen: + /BIND Alt-C /CLEAR + +People with qwertz layout probably want to swap Alt-Y and Alt-Z: + /BIND Alt-Z change_window 16 + /BIND -delete Alt-Y |