]> git.gir.st - VimFx.git/blob - extension/lib/defaults.coffee
Add a special mark for returning to the last position
[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 'r': 'reload'
36 'R': 'reload_force'
37 'ar': 'reload_all'
38 'aR': 'reload_all_force'
39 's': 'stop'
40 'as': 'stop_all'
41
42 'scrolling':
43 'h': 'scroll_left'
44 'l': 'scroll_right'
45 'j': 'scroll_down'
46 'k': 'scroll_up'
47 '<space>': 'scroll_page_down'
48 '<s-space>': 'scroll_page_up'
49 'd': 'scroll_half_page_down'
50 'u': 'scroll_half_page_up'
51 'gg': 'scroll_to_top'
52 'G': 'scroll_to_bottom'
53 '0 ^': 'scroll_to_left'
54 '$': 'scroll_to_right'
55 'm': 'mark_scroll_position'
56 '`': 'scroll_to_mark'
57
58 'tabs':
59 't': 'tab_new'
60 'yt': 'tab_duplicate'
61 'J gT': 'tab_select_previous'
62 'K gt': 'tab_select_next'
63 'gJ': 'tab_move_backward'
64 'gK': 'tab_move_forward'
65 'g0': 'tab_select_first'
66 'g^': 'tab_select_first_non_pinned'
67 'g$': 'tab_select_last'
68 'gp': 'tab_toggle_pinned'
69 'x': 'tab_close'
70 'X': 'tab_restore'
71 'gx$': 'tab_close_to_end'
72 'gxa': 'tab_close_other'
73
74 'browsing':
75 'f': 'follow'
76 'F': 'follow_in_tab'
77 'gf': 'follow_in_focused_tab'
78 'af': 'follow_multiple'
79 'yf': 'follow_copy'
80 'zf': 'follow_focus'
81 '[': 'follow_previous'
82 ']': 'follow_next'
83 'gi': 'focus_text_input'
84
85 'find':
86 '/': 'find'
87 'a/': 'find_highlight_all'
88 'n': 'find_next'
89 'N': 'find_previous'
90
91 'misc':
92 'i': 'enter_mode_ignore'
93 'I': 'quote'
94 '?': 'help'
95 ':': 'dev'
96 '<force><escape>': 'esc'
97
98 'hints':
99 '':
100 '<escape>': 'exit'
101 '<space>': 'rotate_markers_forward'
102 '<s-space>': 'rotate_markers_backward'
103 '<backspace>': 'delete_hint_char'
104 '<enter>': 'increase_count'
105
106 'ignore':
107 '':
108 '<s-escape>': 'exit'
109 '<s-f1>': 'unquote'
110
111 'find':
112 '':
113 '<escape> <enter>': 'exit'
114
115 options =
116 'hint_chars': 'fjdkslaghrueiwovncm'
117 'prev_patterns': 'prev previous ‹ « ◀ ← << < back newer'
118 'next_patterns': 'next › » ▶ → >> > more older'
119 'black_list': ''
120 'prevent_autofocus': false
121 'ignore_keyboard_layout': false
122 'timeout': 2000
123
124 advanced_options =
125 'notifications_enabled': true
126 'prevent_target_blank': true
127 'prevent_autofocus_modes': 'normal'
128 'hints_timeout': 200
129 'smoothScroll.lines.spring-constant': '1000'
130 'smoothScroll.pages.spring-constant': '2500'
131 'smoothScroll.other.spring-constant': '2500'
132 'pattern_selector': 'a, button'
133 'pattern_attrs': 'rel role data-tooltip aria-label'
134 'last_scroll_position_mark': '`'
135 'hints_toggle_in_tab': '<c-'
136 'hints_toggle_in_background': '<a-'
137 'activatable_element_keys': '<enter>'
138 'adjustable_element_keys': '<arrowup> <arrowdown> <arrowleft>
139 <arrowright> <space> <enter>'
140 'focus_previous_key': '<s-tab>'
141 'focus_next_key': '<tab>'
142 'options.key.quote': '<c-q>'
143 'options.key.insert_default': '<c-d>'
144 'options.key.reset_default': '<c-r>'
145
146 parsed_options =
147 'translations': {}
148 'categories': {} # Will be filled in below.
149
150
151
152 # The above easy-to-read data is transformed in to easy-to-consume (for
153 # computers) formats below.
154
155 translate = require('./l10n')
156 utils = require('./utils')
157
158 addCategory = (category, order) ->
159 uncategorized = (category == '')
160 categoryName =
161 if uncategorized
162 -> ''
163 else
164 translate.bind(null, "category.#{category}")
165 parsed_options.categories[category] = {
166 name: categoryName
167 order: if uncategorized then 0 else order
168 }
169
170 shortcut_prefs = {}
171 categoryMap = {}
172 mode_order = {}
173 command_order = {}
174
175 createCounter = -> new utils.Counter({step: 100})
176 modeCounter = createCounter()
177 categoryCounter = createCounter()
178
179 for modeName, modeCategories of shortcuts
180 mode_order[modeName] = modeCounter.tick()
181 for categoryName, modeShortcuts of modeCategories
182 addCategory(categoryName, categoryCounter.tick())
183 commandIndex = createCounter()
184 for shortcut, commandName of modeShortcuts
185 pref = "mode.#{modeName}.#{commandName}"
186 shortcut_prefs[pref] = shortcut
187 command_order[pref] = commandIndex.tick()
188 categoryMap[pref] = categoryName
189
190 # All options, excluding shortcut customizations.
191 all_options = Object.assign({}, options, advanced_options, parsed_options)
192 # All things that are saved in Firefox’s prefs system.
193 all_prefs = Object.assign({}, options, advanced_options, shortcut_prefs)
194
195 module.exports = {
196 options
197 advanced_options
198 parsed_options
199 all_options
200 shortcut_prefs
201 all_prefs
202 categoryMap
203 mode_order
204 command_order
205 BRANCH: 'extensions.VimFx.'
206 }
Imprint / Impressum