]> git.gir.st - VimFx.git/blob - extension/lib/defaults.coffee
Allow to disable counts
[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 'zF': 'click_browser_element'
86 '[': 'follow_previous'
87 ']': 'follow_next'
88 'gi': 'focus_text_input'
89
90 'find':
91 '/': 'find'
92 'a/': 'find_highlight_all'
93 'g/': 'find_links_only'
94 'n': 'find_next'
95 'N': 'find_previous'
96
97 'misc':
98 'w': 'window_new'
99 'W': 'window_new_private'
100 'i': 'enter_mode_ignore'
101 'I': 'quote'
102 'gr': 'enter_reader_view'
103 '?': 'help'
104 ':': 'dev'
105 '<force><escape>': 'esc'
106
107 'hints':
108 '':
109 '<escape>': 'exit'
110 '<space>': 'rotate_markers_forward'
111 '<s-space>': 'rotate_markers_backward'
112 '<backspace>': 'delete_hint_char'
113 '<enter>': 'increase_count'
114
115 'ignore':
116 '':
117 '<s-escape>': 'exit'
118 '<s-f1>': 'unquote'
119
120 'find':
121 '':
122 '<escape> <enter>': 'exit'
123
124 options =
125 'hint_chars': 'fjdkslaghrueiwovncm'
126 'prev_patterns': 'prev previous ‹ « ◀ ← << < back newer'
127 'next_patterns': 'next › » ▶ → >> > more older'
128 'black_list': ''
129 'prevent_autofocus': false
130 'ignore_keyboard_layout': false
131 'timeout': 2000
132
133 advanced_options =
134 'notifications_enabled': true
135 'notify_entered_keys': true
136 'prevent_target_blank': true
137 'counts_enabled': true
138 'ignore_ctrl_alt': (Services.appinfo.OS == 'WINNT')
139 'prevent_autofocus_modes': 'normal'
140 'hints_timeout': 200
141 'smoothScroll.lines.spring-constant': '1000'
142 'smoothScroll.pages.spring-constant': '2500'
143 'smoothScroll.other.spring-constant': '2500'
144 'scroll.full_page_adjustment': 40
145 'scroll.half_page_adjustment': 20
146 'scroll.last_position_mark': '`'
147 'pattern_selector': 'a, button'
148 'pattern_attrs': 'rel role data-tooltip aria-label'
149 'hints_toggle_in_tab': '<c-'
150 'hints_toggle_in_background': '<a-'
151 'activatable_element_keys': '<enter>'
152 'adjustable_element_keys': '<arrowup> <arrowdown> <arrowleft>
153 <arrowright> <space> <enter>'
154 'focus_previous_key': '<s-tab>'
155 'focus_next_key': '<tab>'
156 'options.key.quote': '<c-q>'
157 'options.key.insert_default': '<c-d>'
158 'options.key.reset_default': '<c-r>'
159
160 parsed_options =
161 'translations': {}
162 'categories': {} # Will be filled in below.
163
164
165
166 # The above easy-to-read data is transformed in to easy-to-consume (for
167 # computers) formats below.
168
169 translate = require('./l10n')
170 utils = require('./utils')
171
172 addCategory = (category, order) ->
173 uncategorized = (category == '')
174 categoryName =
175 if uncategorized
176 -> ''
177 else
178 translate.bind(null, "category.#{category}")
179 parsed_options.categories[category] = {
180 name: categoryName
181 order: if uncategorized then 0 else order
182 }
183
184 shortcut_prefs = {}
185 categoryMap = {}
186 mode_order = {}
187 command_order = {}
188
189 createCounter = -> new utils.Counter({step: 100})
190 modeCounter = createCounter()
191 categoryCounter = createCounter()
192
193 for modeName, modeCategories of shortcuts
194 mode_order[modeName] = modeCounter.tick()
195 for categoryName, modeShortcuts of modeCategories
196 addCategory(categoryName, categoryCounter.tick())
197 commandIndex = createCounter()
198 for shortcut, commandName of modeShortcuts
199 pref = "mode.#{modeName}.#{commandName}"
200 shortcut_prefs[pref] = shortcut
201 command_order[pref] = commandIndex.tick()
202 categoryMap[pref] = categoryName
203
204 # All options, excluding shortcut customizations.
205 all_options = Object.assign({}, options, advanced_options, parsed_options)
206 # All things that are saved in Firefox’s prefs system.
207 all_prefs = Object.assign({}, options, advanced_options, shortcut_prefs)
208
209 module.exports = {
210 options
211 advanced_options
212 parsed_options
213 all_options
214 shortcut_prefs
215 all_prefs
216 categoryMap
217 mode_order
218 command_order
219 BRANCH: 'extensions.VimFx.'
220 }
Imprint / Impressum