summaryrefslogtreecommitdiff
path: root/doc/en/autogen
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2011-07-29 19:46:02 +0200
committerSebastien Helleu <flashcode@flashtux.org>2011-07-29 19:46:02 +0200
commit54a6f42de539e176517be5cce0c6792b5530c459 (patch)
tree2b61929928cefb576b2f4cb2d83d794f6f108ce3 /doc/en/autogen
parentdfd7ed5457cc4df7c75e9f9e61efeaea50b26a75 (diff)
downloadweechat-54a6f42de539e176517be5cce0c6792b5530c459.zip
core: add number in windows, improve mouse/cursor actions when screen is split
Diffstat (limited to 'doc/en/autogen')
-rw-r--r--doc/en/autogen/plugin_api/completions.txt2
-rw-r--r--doc/en/autogen/plugin_api/hdata.txt1
-rw-r--r--doc/en/autogen/user/weechat_commands.txt28
3 files changed, 19 insertions, 12 deletions
diff --git a/doc/en/autogen/plugin_api/completions.txt b/doc/en/autogen/plugin_api/completions.txt
index 1e909099c..45626fdcc 100644
--- a/doc/en/autogen/plugin_api/completions.txt
+++ b/doc/en/autogen/plugin_api/completions.txt
@@ -108,6 +108,8 @@
| weechat | weechat_commands | weechat commands
+| weechat | windows_numbers | numbers of windows
+
| xfer | nick | nicks of DCC chat
|========================================
diff --git a/doc/en/autogen/plugin_api/hdata.txt b/doc/en/autogen/plugin_api/hdata.txt
index b4c46732c..61bd9ff35 100644
--- a/doc/en/autogen/plugin_api/hdata.txt
+++ b/doc/en/autogen/plugin_api/hdata.txt
@@ -500,6 +500,7 @@
'weechat_plugins'
| weechat | window | window |
+ 'number' (integer) +
'win_x' (integer) +
'win_y' (integer) +
'win_width' (integer) +
diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt
index 04e6f595a..9ecda1c33 100644
--- a/doc/en/autogen/user/weechat_commands.txt
+++ b/doc/en/autogen/user/weechat_commands.txt
@@ -14,7 +14,7 @@ message: message for away (if no message is given, away status is removed)
del <name>|-all
set <name> <option> <value>
hide|show|toggle <name>
- scroll <name> <buffer> <scroll_value>
+ scroll <name> <window> <scroll_value>
list: list all bars
listfull: list all bars (verbose)
@@ -41,7 +41,7 @@ message: message for away (if no message is given, away status is removed)
show: show an hidden bar
toggle: hide/show a bar
scroll: scroll bar
- buffer: name of buffer to scroll ('*' means current buffer, you should use '*' for root bars)
+ window: window number (use '*' for current window or for root bars)
scroll_value: value for scroll: 'x' or 'y' (optional), followed by '+', '-', 'b' (beginning) or 'e' (end), value (for +/-), and optional % (to scroll by % of width/height, otherwise value is number of chars)
Examples:
@@ -589,18 +589,19 @@ Examples:
[command]*`window`* manage windows::
........................................
/window list
- -1|+1|b#|up|down|left|right
- splith|splitv [<pct>]
- resize [+/-]<pct>
+ -1|+1|b#|up|down|left|right [-window <number>]
+ <number>
+ splith|splitv [-window <number>] [<pct>]
+ resize [-window <number>] [+/-]<pct>
balance
- merge [all]
- page_up|page_down
+ merge [-window <number>] [all]
+ page_up|page_down [-window <number>]
refresh
- scroll [+/-]<value>[s|m|h|d|M|y]
- scroll_horiz [+/-]<value>[%]
- scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_previous_highlight|scroll_next_highlight
- swap [up|down|left|right]
- zoom
+ scroll [-window <number>] [+/-]<value>[s|m|h|d|M|y]
+ scroll_horiz [-window <number>] [+/-]<value>[%]
+ scroll_up|scroll_down|scroll_top|scroll_bottom|scroll_previous_highlight|scroll_next_highlight [-window <number>]
+ swap [-window <number>] [up|down|left|right]
+ zoom[-window <number>]
list: list opened windows (without argument, this list is displayed)
-1: jump to previous window
@@ -610,6 +611,7 @@ Examples:
down: switch to window below current one
left: switch to window on the left
right: switch to window on the right
+ number: window number (see /window list)
splith: split current window horizontally
splitv: split current window vertically
resize: resize window size, new size is <pct> percentage of parent window
@@ -640,5 +642,7 @@ Examples:
/window scroll -2d
scroll to beginning of current day:
/window scroll -d
+ zoom on window #2:
+ /window zoom -window 2
........................................