summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-03-17 08:28:41 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-03-17 08:28:41 +0100
commit30e6acb00dc42afbeb8993ee766199b830335c04 (patch)
treefe825435d5bbc2a190959d569d304a14bb69e4ef /doc/en
parente1e3109da3ecf6b81cb6c725f500c8c6e93192f4 (diff)
downloadweechat-30e6acb00dc42afbeb8993ee766199b830335c04.zip
core: add support of multiple layouts (task #11274)
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/autogen/plugin_api/completions.txt2
-rw-r--r--doc/en/autogen/user/weechat_commands.txt16
2 files changed, 13 insertions, 5 deletions
diff --git a/doc/en/autogen/plugin_api/completions.txt b/doc/en/autogen/plugin_api/completions.txt
index 1fc9dcb1a..4336b2a1d 100644
--- a/doc/en/autogen/plugin_api/completions.txt
+++ b/doc/en/autogen/plugin_api/completions.txt
@@ -106,6 +106,8 @@
| weechat | keys_contexts | key contexts
+| weechat | layouts_names | names of layouts
+
| weechat | nicks | nicks in nicklist of current buffer
| weechat | palette_colors | palette colors
diff --git a/doc/en/autogen/user/weechat_commands.txt b/doc/en/autogen/user/weechat_commands.txt
index a73743205..c155cf0e7 100644
--- a/doc/en/autogen/user/weechat_commands.txt
+++ b/doc/en/autogen/user/weechat_commands.txt
@@ -447,17 +447,23 @@ Examples:
[[command_weechat_layout]]
[command]*`layout`* save/apply/reset layout for buffers and windows::
........................................
-/layout save [buffers|windows]
- apply [buffers|windows]
- reset [buffers|windows]
+/layout save [<name>] [buffers|windows]
+ apply [<name>] [buffers|windows]
+ leave
+ reset [<name>] [buffers|windows]
+ rename <name> <new_name>
save: save current layout
apply: apply saved layout
- reset: remove saved layout
+ leave: leave current layout (does not update any layout)
+ reset: reset buffers and/or windows in a saved layout
+ (if both buffers and windows are reset, the layout is removed)
+ rename: rename a layout
+ name: name for saved layout (default is "default")
buffers: save/apply only buffers (order of buffers)
windows: save/apply only windows (buffer displayed by each window)
-Without argument, this command displays saved layout.
+Without argument, this command displays saved layouts.
........................................
[[command_weechat_mouse]]