]> git.gir.st - VimFx.git/blob - extension/lib/defaults.coffee
Let `<space>` scroll a bit less than a full page
[VimFx.git] / extension / lib / defaults.coffee
1 ###
2 # Copyright Simon Lydell 2015.
3 #
4 # This file is part of VimFx.
5 #
6 # VimFx is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # VimFx is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with VimFx. If not, see <http://www.gnu.org/licenses/>.
18 ###
19
20 # This file defines all VimFx’s options in an easy-to-read way.
21
22 shortcuts =
23 'normal':
24 'location':
25 'o': 'focus_location_bar'
26 'O': 'focus_search_bar'
27 'p': 'paste_and_go'
28 'P': 'paste_and_go_in_tab'
29 'yy': 'copy_current_url'
30 'gu': 'go_up_path'
31 'gU': 'go_to_root'
32 'gh': 'go_home'
33 'H': 'history_back'
34 'L': 'history_forward'
35 'gH': 'history_list'
36 'r': 'reload'
37 'R': 'reload_force'
38 'ar': 'reload_all'
39 'aR': 'reload_all_force'
40 's': 'stop'
41 'as': 'stop_all'
42
43 'scrolling':
44 'h': 'scroll_left'
45 'l': 'scroll_right'
46 'j': 'scroll_down'
47 'k': 'scroll_up'
48 '<space>': 'scroll_page_down'
49 '<s-space>': 'scroll_page_up'
50 'd': 'scroll_half_page_down'
51 'u': 'scroll_half_page_up'
52 'gg': 'scroll_to_top'
53 'G': 'scroll_to_bottom'
54 '0 ^': 'scroll_to_left'
55 '$': 'scroll_to_right'
56 'm': 'mark_scroll_position'
57 '`': 'scroll_to_mark'
58
59 'tabs':
60 't': 'tab_new'
61 'yt': 'tab_duplicate'
62 'J gT': 'tab_select_previous'
63 'K gt': 'tab_select_next'
64 'gJ': 'tab_move_backward'
65 'gK': 'tab_move_forward'
66 'gw': 'tab_move_to_window'
67 'g0': 'tab_select_first'
68 'g^': 'tab_select_first_non_pinned'
69 'g$': 'tab_select_last'
70 'gp': 'tab_toggle_pinned'
71 'x': 'tab_close'
72 'X': 'tab_restore'
73 'gX': 'tab_restore_list'
74 'gx$': 'tab_close_to_end'
75 'gxa': 'tab_close_other'
76
77 'browsing':
78 'f': 'follow'
79 'F': 'follow_in_tab'
80 'gf': 'follow_in_focused_tab'
81 'gF': 'follow_in_window'
82 'af': 'follow_multiple'
83 'yf': 'follow_copy'
84 'zf': 'follow_focus'
85 '[': 'follow_previous'
86 ']': 'follow_next'
87 'gi': 'focus_text_input'
88
89 'find':
90 '/': 'find'
91 'a/': 'find_highlight_all'
92 'g/': 'find_links_only'
93 'n': 'find_next'
94 'N': 'find_previous'
95
96 'misc':
97 'w': 'window_new'
98 'W': 'window_new_private'
99 'i': 'enter_mode_ignore'
100 'gr': 'enter_reader_view'
101 'I': 'quote'
102 '?': 'help'
103 ':': 'dev'
104 '<force><escape>': 'esc'
105
106 'hints':
107 '':
108 '<escape>': 'exit'
109 '<space>': 'rotate_markers_forward'
110 '<s-space>': 'rotate_markers_backward'
111 '<backspace>': 'delete_hint_char'
112 '<enter>': 'increase_count'
113
114 'ignore':
115 '':
116 '<s-escape>': 'exit'
117 '<s-f1>': 'unquote'
118
119 'find':
120 '':
121 '<escape> <enter>': 'exit'
122
123 options =
124 'hint_chars': 'fjdkslaghrueiwovncm'
125 'prev_patterns': 'prev previous ‹ « ◀ ← << < back newer'
126 'next_patterns': 'next › » ▶ → >> > more older'
127 'black_list': ''
128 'prevent_autofocus': false
129 'ignore_keyboard_layout': false
130 'timeout': 2000
131
132 advanced_options =
133 'notifications_enabled': true
134 'prevent_target_blank': true
135 'ignore_ctrl_alt': (Services.appinfo.OS == 'WINNT')
136 'prevent_autofocus_modes': 'normal'
137 'hints_timeout': 200
138 'smoothScroll.lines.spring-constant': '1000'
139 'smoothScroll.pages.spring-constant': '2500'
140 'smoothScroll.other.spring-constant': '2500'
141 'scroll.full_page_adjustment': 40
142 'scroll.half_page_adjustment': 20
143 'scroll.last_position_mark': '`'
144 'pattern_selector': 'a, button'
145 'pattern_attrs': 'rel role data-tooltip aria-label'
146 'hints_toggle_in_tab': '<c-'
147 'hints_toggle_in_background': '<a-'
148 'activatable_element_keys': '<enter>'
149 'adjustable_element_keys': '<arrowup> <arrowdown> <arrowleft>
150 <arrowright> <space> <enter>'
151 'focus_previous_key': '<s-tab>'
152 'focus_next_key': '<tab>'
153 'options.key.quote': '<c-q>'
154 'options.key.insert_default': '<c-d>'
155 'options.key.reset_default': '<c-r>'
156
157 parsed_options =
158 'translations': {}
159 'categories': {} # Will be filled in below.
160
161
162
163 # The above easy-to-read data is transformed in to easy-to-consume (for
164 # computers) formats below.
165
166 translate = require('./l10n')
167 utils = require('./utils')
168
169 addCategory = (category, order) ->
170 uncategorized = (category == '')
171 categoryName =
172 if uncategorized
173 -> ''
174 else
175 translate.bind(null, "category.#{category}")
176 parsed_options.categories[category] = {
177 name: categoryName
178 order: if uncategorized then 0 else order
179 }
180
181 shortcut_prefs = {}
182 categoryMap = {}
183 mode_order = {}
184 command_order = {}
185
186 createCounter = -> new utils.Counter({step: 100})
187 modeCounter = createCounter()
188 categoryCounter = createCounter()
189
190 for modeName, modeCategories of shortcuts
191 mode_order[modeName] = modeCounter.tick()
192 for categoryName, modeShortcuts of modeCategories
193 addCategory(categoryName, categoryCounter.tick())
194 commandIndex = createCounter()
195 for shortcut, commandName of modeShortcuts
196 pref = "mode.#{modeName}.#{commandName}"
197 shortcut_prefs[pref] = shortcut
198 command_order[pref] = commandIndex.tick()
199 categoryMap[pref] = categoryName
200
201 # All options, excluding shortcut customizations.
202 all_options = Object.assign({}, options, advanced_options, parsed_options)
203 # All things that are saved in Firefox’s prefs system.
204 all_prefs = Object.assign({}, options, advanced_options, shortcut_prefs)
205
206 module.exports = {
207 options
208 advanced_options
209 parsed_options
210 all_options
211 shortcut_prefs
212 all_prefs
213 categoryMap
214 mode_order
215 command_order
216 BRANCH: 'extensions.VimFx.'
217 }
Imprint / Impressum