From ebef15ec4036f9fdeb23011b561b1cd4c0852ae7 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Wed, 2 Nov 2011 20:21:09 +0100 Subject: Add configure and keys documentation, also edit some default configuration values. --- doc/en/keys.txt | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 doc/en/keys.txt (limited to 'doc/en/keys.txt') diff --git a/doc/en/keys.txt b/doc/en/keys.txt new file mode 100644 index 00000000..e4267cdf --- /dev/null +++ b/doc/en/keys.txt @@ -0,0 +1,60 @@ +Keys +==== + +This file describes the default keys of poezio and explains how to +configure them. + +By default, most keys manipulating the input (where you type your +messages and commands) behave like emacs does. + +Note that keys are case sensitive. Ctrl-X is not the same than Ctrl-x + +Key bindings listing +-------------------- +Some key bindings are available only in some tabs, others are global. + +Global keys +~~~~~~~~~~~ +These keys work in *any* tab. + +*Ctrl-n*:: Go to the next tab. + +*Ctrl-p*:: Go to the previous tab. + +*Alt-number*:: Go to tab number x. + +*Alt-j*:: Waits for you to type a two-digits number. Go to tab number xx. + +Input keys +~~~~~~~~~~ +These keys concern only the inputs. + +*Ctrl-a*:: Move the cursor to the beginning of line. + +*Ctrl-e*:: Move the cursor to the end of line. + +Chat tab input keys +~~~~~~~~~~~~~~~~~~~~~ +These keys work in any conversation tab (MultiUserChat, Private or Conversation tabs) + +*Key Up*:: Use the previous message from the message history. + +*Key Down*:: Use the next message from the message history. + +*Page Up*:: Scroll up in the conversation by x lines, where x is the height of the conversation window - 1. + +*Page Down*:: Likfe Page Up, but down. + +*Alt-/*:: Complete what you’re typing using the "recent" words from the current conversation, if any. + +Key configuration +----------------- +Bindings are keyboard shortcut aliases. You can use them +to define your own keys to replace the default ones. +where ^x means Control + x +and M-x means Alt + x +.Make +================== +zouzou +================== + -- cgit v1.2.3 From 027b2e2148eb79b314bb9b632c823b6d814e07f3 Mon Sep 17 00:00:00 2001 From: Florent Le Coz Date: Wed, 2 Nov 2011 20:24:23 +0100 Subject: Fix the key configuration example --- doc/en/keys.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'doc/en/keys.txt') diff --git a/doc/en/keys.txt b/doc/en/keys.txt index e4267cdf..eaae961d 100644 --- a/doc/en/keys.txt +++ b/doc/en/keys.txt @@ -53,8 +53,14 @@ Bindings are keyboard shortcut aliases. You can use them to define your own keys to replace the default ones. where ^x means Control + x and M-x means Alt + x -.Make + +To know exactly what the code of a key is, just run ================== -zouzou +python3 src/keyboard.py ================== +And enter any keys +.Turn Alt-i into a tab key (completion, etc) +================== +M-i = ^I +================== -- cgit v1.2.3