comment
[conkeror.git] / modules / bindings / default / content-buffer / zoom.js
blob81dd4b029530d78d7824a9b71ae961954d3d328e
1 /**
2  * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
3  *
4  * Use, modification, and distribution are subject to the terms specified in the
5  * COPYING file.
6 **/
8 define_key(content_buffer_normal_keymap, "+", "zoom-in-text");
9 define_key(content_buffer_normal_keymap, "=", "zoom-reset-text");
10 define_key(content_buffer_normal_keymap, "-", "zoom-out-text");
12 define_key(content_buffer_normal_keymap, "C-+", "zoom-in-full");
13 define_key(content_buffer_normal_keymap, "C-=", "zoom-reset-full");
14 define_key(content_buffer_normal_keymap, "C--", "zoom-out-full");
18 define_key(content_buffer_normal_keymap, "z i", "zoom-in-text");
19 define_key(content_buffer_normal_keymap, "z m", "zoom-in-text-more");
20 define_key(content_buffer_normal_keymap, "z z", "zoom-reset-text");
21 define_key(content_buffer_normal_keymap, "z o", "zoom-out-text");
22 define_key(content_buffer_normal_keymap, "z r", "zoom-out-text-more");
25 define_key(content_buffer_normal_keymap, "z I", "zoom-in-full");
26 define_key(content_buffer_normal_keymap, "z M", "zoom-in-full-more");
27 define_key(content_buffer_normal_keymap, "z Z", "zoom-reset-full");
28 define_key(content_buffer_normal_keymap, "z O", "zoom-out-full");
29 define_key(content_buffer_normal_keymap, "z R", "zoom-out-full-more");