]> git.gir.st - VimFx.git/blob - extension/lib/main.coffee
Improve error reporting in test runner
[VimFx.git] / extension / lib / main.coffee
1 ###
2 # Copyright Anton Khodakivskiy 2012, 2013, 2014.
3 # Copyright Simon Lydell 2013, 2014.
4 #
5 # This file is part of VimFx.
6 #
7 # VimFx is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # VimFx is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with VimFx. If not, see <http://www.gnu.org/licenses/>.
19 ###
20
21 VimFx = require('./vimfx')
22 modes = require('./modes')
23 { loadCss } = require('./utils')
24 { addEventListeners } = require('./events')
25 { setButtonInstallPosition
26 , addToolbarButton } = require('./button')
27 options = require('./options')
28 { watchWindows } = require('./window-utils')
29 test = try require('../test/index')
30
31 module.exports = (data, reason) ->
32 test?()
33
34 vimfx = new VimFx(modes, data)
35
36 if reason == ADDON_INSTALL
37 # Position the toolbar button right before the default Bookmarks button.
38 # If Bookmarks button is hidden the VimFx button will be appended to the
39 # toolbar.
40 setButtonInstallPosition('nav-bar', 'bookmarks-menu-button-container')
41
42 loadCss('style')
43
44 options.observe(vimfx)
45
46 watchWindows(addEventListeners.bind(undefined, vimfx), 'navigator:browser')
47 watchWindows(addToolbarButton.bind(undefined, vimfx), 'navigator:browser')
Imprint / Impressum