File: zoom.js

package info (click to toggle)
conkeror 0.9.2%2Bgit100804-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,680 kB
  • ctags: 1,182
  • sloc: sh: 547; ansic: 272; xml: 107; makefile: 79
file content (29 lines) | stat: -rw-r--r-- 1,237 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
 *
 * Use, modification, and distribution are subject to the terms specified in the
 * COPYING file.
**/

define_key(content_buffer_normal_keymap, "+", "zoom-in-text");
define_key(content_buffer_normal_keymap, "=", "zoom-reset-text");
define_key(content_buffer_normal_keymap, "-", "zoom-out-text");

define_key(content_buffer_normal_keymap, "C-+", "zoom-in-full");
define_key(content_buffer_normal_keymap, "C-=", "zoom-reset-full");
define_key(content_buffer_normal_keymap, "C--", "zoom-out-full");



define_key(content_buffer_normal_keymap, "z i", "zoom-in-text");
define_key(content_buffer_normal_keymap, "z m", "zoom-in-text-more");
define_key(content_buffer_normal_keymap, "z z", "zoom-reset-text");
define_key(content_buffer_normal_keymap, "z o", "zoom-out-text");
define_key(content_buffer_normal_keymap, "z r", "zoom-out-text-more");


define_key(content_buffer_normal_keymap, "z I", "zoom-in-full");
define_key(content_buffer_normal_keymap, "z M", "zoom-in-full-more");
define_key(content_buffer_normal_keymap, "z Z", "zoom-reset-full");
define_key(content_buffer_normal_keymap, "z O", "zoom-out-full");
define_key(content_buffer_normal_keymap, "z R", "zoom-out-full-more");