]> git.gir.st - VimFx.git/blob - extension/lib/modes.coffee
Merge branch 'master' into develop
[VimFx.git] / extension / lib / modes.coffee
1 ###
2 # Copyright Anton Khodakivskiy 2013, 2014.
3 # Copyright Simon Lydell 2013, 2014, 2015, 2016.
4 # Copyright Wang Zhuochun 2014.
5 #
6 # This file is part of VimFx.
7 #
8 # VimFx is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # VimFx is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with VimFx. If not, see <http://www.gnu.org/licenses/>.
20 ###
21
22 # This file defines VimFx’s modes, and their respective commands. The Normal
23 # mode commands are defined in commands.coffee, though.
24
25 {commands, findStorage} = require('./commands')
26 defaults = require('./defaults')
27 help = require('./help')
28 hints = require('./hints')
29 translate = require('./l10n')
30 {rotateOverlappingMarkers} = require('./marker')
31 utils = require('./utils')
32
33 # Helper to create modes in a DRY way.
34 mode = (modeName, obj, commands = null) ->
35 obj.name = translate("mode.#{modeName}")
36 obj.order = defaults.mode_order[modeName]
37 obj.commands = {}
38 for commandName, fn of commands
39 pref = "mode.#{modeName}.#{commandName}"
40 obj.commands[commandName] = {
41 pref: defaults.BRANCH + pref
42 run: fn
43 category: defaults.categoryMap[pref]
44 description: translate(pref)
45 order: defaults.command_order[pref]
46 }
47 exports[modeName] = obj
48
49
50
51 mode('normal', {
52 onEnter: ({vim, storage}, options = {}) ->
53 if options.returnTo
54 storage.returnTo = options.returnTo
55 else if storage.returnTo
56 vim.enterMode(storage.returnTo)
57 storage.returnTo = null
58
59 onLeave: ({vim}) ->
60 vim._run('clear_inputs')
61
62 onInput: (args, match) ->
63 {vim, storage, uiEvent} = args
64 {keyStr} = match
65
66 if match.type == 'none' or
67 (match.likelyConflict and not match.specialKeys['<force>'])
68 match.discard()
69 if storage.returnTo
70 vim.enterMode(storage.returnTo)
71 storage.returnTo = null
72 # If you press `aa` (and `a` is a prefix key, but there’s no `aa`
73 # shortcut), don’t pass the second `a` to the page.
74 return not match.toplevel
75
76 if match.type == 'full'
77 match.command.run(args)
78
79 # If the command changed the mode, wait until coming back from that mode
80 # before switching to `storage.returnTo` if any (see `onEnter` above).
81 if storage.returnTo and vim.mode == 'normal'
82 vim.enterMode(storage.returnTo)
83 storage.returnTo = null
84
85 # At this point the match is either full, partial or part of a count. Then
86 # we always want to suppress, except for one case: The Escape key.
87 return true unless keyStr == '<escape>'
88
89 # Passing Escape through allows for stopping the loading of the page and
90 # closing many custom dialogs (and perhaps other things; Escape is a very
91 # commonly used key).
92 if uiEvent
93 # In browser UI the biggest reasons are allowing to reset the location bar
94 # when blurring it, and closing dialogs such as the “bookmark this page”
95 # dialog (<c-d>). However, an exception is made for the devtools (<c-K>).
96 # There, trying to unfocus the devtools using Escape would annoyingly
97 # open the split console.
98 return uiEvent.originalTarget.ownerGlobal.DevTools?
99 else
100 # In web pages content, an exception is made if an element that VimFx
101 # cares about is focused. That allows for blurring an input in a custom
102 # dialog without closing the dialog too.
103 return vim.focusType != 'none'
104
105 # Note that this special handling of Escape is only used in Normal mode.
106 # There are two reasons we might suppress it in other modes. If some custom
107 # dialog of a website is open, we should be able to cancel hint markers on
108 # it without closing it. Secondly, otherwise cancelling hint markers on
109 # Google causes its search bar to be focused.
110
111 }, commands)
112
113
114
115 mode('hints', {
116 onEnter: ({vim, storage}, markers, callback, count = 1, sleep = -1) ->
117 storage.markers = markers
118 storage.markerMap = null
119 storage.callback = callback
120 storage.count = count
121 storage.numEnteredChars = 0
122
123 if sleep >= 0
124 storage.clearInterval = utils.interval(vim.window, sleep, (next) ->
125 unless storage.markerMap
126 next()
127 return
128 vim._send('getMarkableElementsMovements', null, (diffs) ->
129 for {dx, dy}, index in diffs when not (dx == 0 and dy == 0)
130 storage.markerMap[index].updatePosition(dx, dy)
131 next()
132 )
133 )
134
135 # Expose the storage so asynchronously computed markers can be set
136 # retroactively.
137 return storage
138
139 onLeave: ({vim, storage}) ->
140 vim.window.setTimeout((-> hints.removeHints(vim.window)),
141 vim.options.hints_timeout)
142 storage.clearInterval?()
143 for key of storage
144 storage[key] = null
145 return
146
147 onInput: (args, match) ->
148 {vim, storage} = args
149 {markers, callback} = storage
150
151 if match.type == 'full'
152 match.command.run(args)
153 else if match.unmodifiedKey in vim.options.hint_chars and markers.length > 0
154 matchedMarkers = []
155
156 for marker in markers when marker.hintIndex == storage.numEnteredChars
157 matched = marker.matchHintChar(match.unmodifiedKey)
158 marker.hide() unless matched
159 if marker.isMatched()
160 marker.markMatched(true)
161 matchedMarkers.push(marker)
162
163 if matchedMarkers.length > 0
164 again = callback(matchedMarkers[0], storage.count, match.keyStr)
165 storage.count -= 1
166 if again
167 vim.window.setTimeout((->
168 marker.markMatched(false) for marker in matchedMarkers
169 return
170 ), vim.options.hints_timeout)
171 marker.reset() for marker in markers
172 storage.numEnteredChars = 0
173 else
174 vim.enterMode('normal')
175 else
176 storage.numEnteredChars += 1
177
178 return true
179
180 }, {
181 exit: ({vim, storage}) ->
182 # The hints are removed automatically when leaving the mode, but after a
183 # timeout. When aborting the mode we should remove the hints immediately.
184 hints.removeHints(vim.window)
185 vim.enterMode('normal')
186
187 rotate_markers_forward: ({storage}) ->
188 rotateOverlappingMarkers(storage.markers, true)
189
190 rotate_markers_backward: ({storage}) ->
191 rotateOverlappingMarkers(storage.markers, false)
192
193 delete_hint_char: ({storage}) ->
194 for marker in storage.markers
195 switch marker.hintIndex - storage.numEnteredChars
196 when 0
197 marker.deleteHintChar()
198 when -1
199 marker.show()
200 storage.numEnteredChars -= 1 unless storage.numEnteredChars == 0
201
202 increase_count: ({storage}) -> storage.count += 1
203 })
204
205
206
207 mode('ignore', {
208 onEnter: ({vim, storage}, {count = null, type = null} = {}) ->
209 storage.count = count
210
211 # Keep last `.type` if no type was given. This is useful when returning to
212 # Ignore mode after runnning the `unquote` command.
213 if type
214 storage.type = type
215 else
216 storage.type ?= 'explicit'
217
218 onLeave: ({vim, storage}) ->
219 unless storage.count? or storage.type == 'focusType'
220 vim._run('blur_active_element')
221
222 onInput: (args, match) ->
223 {vim, storage} = args
224 switch storage.count
225 when null
226 if match.type == 'full'
227 match.command.run(args)
228 return true
229 when 1
230 vim.enterMode('normal')
231 else
232 storage.count -= 1
233 return false
234
235 }, {
236 exit: ({vim, storage}) ->
237 storage.type = null
238 vim.enterMode('normal')
239 unquote: ({vim}) ->
240 vim.enterMode('normal', {returnTo: 'ignore'})
241 })
242
243
244
245 mode('find', {
246 onEnter: ->
247
248 onLeave: ({vim}) ->
249 findBar = vim.window.gBrowser.getFindBar()
250 findStorage.lastSearchString = findBar._findField.value
251
252 onInput: (args, match) ->
253 args.findBar = args.vim.window.gBrowser.getFindBar()
254 if match.type == 'full'
255 match.command.run(args)
256 return true
257 return false
258
259 }, {
260 exit: ({findBar}) -> findBar.close()
261 })
262
263
264
265 mode('marks', {
266 onEnter: ({storage}, callback) ->
267 storage.callback = callback
268
269 onLeave: ({storage}) ->
270 storage.callback = null
271
272 onInput: (args, match) ->
273 {vim, storage} = args
274 storage.callback(match.keyStr)
275 vim.enterMode('normal')
276 return true
277 })
Imprint / Impressum