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