Improved describe-bindings display
[conkeror.git] / modules / bindings / default / content-buffer / zoom.js
blob4b8cdb9f36d1e3c68777cdc51ff408d646ec4dc7
2 require("bindings/default/content-buffer/normal.js");
4 define_key(content_buffer_normal_keymap, "S-equals", "zoom-in-text", $category = "Zoom (text)");
5 define_key(content_buffer_normal_keymap, "equals", "zoom-reset-text", $category = "Zoom (text)");
6 define_key(content_buffer_normal_keymap, "subtract", "zoom-out-text", $category = "Zoom (text)");
8 define_key(content_buffer_normal_keymap, "C-S-equals", "zoom-in-full", $category = "Zoom (full)");
9 define_key(content_buffer_normal_keymap, "C-equals", "zoom-reset-full", $category = "Zoom (full)");
10 define_key(content_buffer_normal_keymap, "C-subtract", "zoom-out-full", $category = "Zoom (full)");
14 define_key(content_buffer_normal_keymap, "z i", "zoom-in-text", $category = "Zoom (text)");
15 define_key(content_buffer_normal_keymap, "z m", "zoom-in-text-more", $category = "Zoom (text)");
16 define_key(content_buffer_normal_keymap, "z z", "zoom-reset-text", $category = "Zoom (text)");
17 define_key(content_buffer_normal_keymap, "z o", "zoom-out-text", $category = "Zoom (text)");
18 define_key(content_buffer_normal_keymap, "z r", "zoom-out-text-more", $category = "Zoom (text)");
21 define_key(content_buffer_normal_keymap, "z I", "zoom-in-full", $category = "Zoom (full)");
22 define_key(content_buffer_normal_keymap, "z M", "zoom-in-full-more", $category = "Zoom (full)");
23 define_key(content_buffer_normal_keymap, "z Z", "zoom-reset-full", $category = "Zoom (full)");
24 define_key(content_buffer_normal_keymap, "z O", "zoom-out-full", $category = "Zoom (full)");
25 define_key(content_buffer_normal_keymap, "z R", "zoom-out-full-more", $category = "Zoom (full)");