diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-11-15 12:35:36 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-11-15 12:35:36 +0100 |
commit | 10f0873beeb2244679d5b323c2735d1b8b7f2ef1 (patch) | |
tree | 6fa5cc28230e04f27e336da0256b63e032c1b6f2 /doc/en | |
parent | 410537508d8b08c37af4dc1a01cb94680f2b4829 (diff) | |
download | weechat-10f0873beeb2244679d5b323c2735d1b8b7f2ef1.zip |
doc: change key bindings examples in docs
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_quickstart.en.asciidoc | 8 | ||||
-rw-r--r-- | doc/en/weechat_user.en.asciidoc | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/en/weechat_quickstart.en.asciidoc b/doc/en/weechat_quickstart.en.asciidoc index 7aba646e2..0da5c51fc 100644 --- a/doc/en/weechat_quickstart.en.asciidoc +++ b/doc/en/weechat_quickstart.en.asciidoc @@ -284,22 +284,22 @@ According to your keyboard and/or your needs, you can rebind any key to a command with `/key` command. A useful key is key[alt-k] to find key codes. -For example, to bind key[alt-y] to command `/buffer close`: +For example, to bind key[alt-!] to command `/buffer close`: ---- -/key bind (press alt-k) (press alt-y) /buffer close +/key bind (press alt-k) (press alt-!) /buffer close ---- You'll have a command line like: ---- -/key bind meta-y /buffer close +/key bind meta-! /buffer close ---- To remove key: ---- -/key unbind meta-y +/key unbind meta-! ---- [[plugins_scripts]] diff --git a/doc/en/weechat_user.en.asciidoc b/doc/en/weechat_user.en.asciidoc index f9d8981a6..c4ae00228 100644 --- a/doc/en/weechat_user.en.asciidoc +++ b/doc/en/weechat_user.en.asciidoc @@ -1289,10 +1289,10 @@ To enable mouse now, press key[alt-m] or do following command: ---- It is possible to temporarily disable mouse, and bind that on a key. For example -key key[alt-x] to disable mouse for 10 seconds: +key key[alt-%] to disable mouse for 10 seconds: ---- -/key bind meta-x /mouse toggle 10 +/key bind meta-% /mouse toggle 10 ---- [IMPORTANT] |