diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-03 22:57:43 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-08-03 22:57:43 +0200 |
commit | fd8a4c6761d351f168d1f87e87cd32c7609520ca (patch) | |
tree | e9b6ed83b8104a62fbb52168a5476714ae247699 /doc/de | |
parent | 8137c2cf9af986d1da1ed2c2e767668236f9cb6e (diff) | |
download | weechat-fd8a4c6761d351f168d1f87e87cd32c7609520ca.zip |
doc: add mouse questions in FAQ
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/weechat_faq.de.txt | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/de/weechat_faq.de.txt b/doc/de/weechat_faq.de.txt index 3d50d58cc..6f030b6f5 100644 --- a/doc/de/weechat_faq.de.txt +++ b/doc/de/weechat_faq.de.txt @@ -446,6 +446,54 @@ Die Tasten "meta2-A" und "meta2-B" können nach dem jeweils genutzten Terminal v korrekten Tasten zu finden sollte man @k(A-)@k(k) und dann (Up- oder die Down-Taste) drücken. +// TRANSLATION MISSING +[[mouse]] +Mouse +----- + + +// TRANSLATION MISSING +[[mouse_not_working]] +Mouse is not working at all, what can I do? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +First try to enable mouse: + +---------------------------------------- +/mouse enable +---------------------------------------- + +If mouse is still not working, check the TERM variable in your shell (look at +output of `echo $TERM` in your terminal). +According to terminfo used, mouse may not be supported. + +You can test mouse support in terminal: + +---------------------------------------- +$ printf '\033[?1002h' +---------------------------------------- + +And then click on first char of terminal (upper left). You should see " !!#!!". + +To disable mouse in terminal: + +---------------------------------------- +$ printf '\033[?1002l' +---------------------------------------- + + +// TRANSLATION MISSING +[[mouse_coords]] +Mouse does nothing for X or Y greater than 94, why? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Some terminals are sending only ISO chars for mouse coordinates, so it does not +work for X/Y greater than 94. + +You should use a terminal that supports UTF-8 coordinates for mouse, like +rxvt-unicode. + + [[irc]] IRC --- |