]> git.gir.st - VimFx.git/blob - extension/lib/main.coffee
Merge branch 'develop' of github.com:akhodakivskiy/VimFx into develop
[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 { loadCss } = require('./utils')
22 { addEventListeners
23 , vimBucket } = require('./events')
24 { getPref
25 , setDefaultPrefs } = require('./prefs')
26 { setButtonInstallPosition
27 , addToolbarButton } = require('./button')
28 options = require('./options')
29 { watchWindows } = require('./window-utils')
30 test = try require('../test/index')
31
32 module.exports = (data, reason) ->
33 test?()
34
35 setDefaultPrefs()
36
37 if reason == ADDON_INSTALL
38 # Position the toolbar button right before the default Bookmarks button.
39 # If Bookmarks button is hidden the VimFx button will be appended to the
40 # toolbar.
41 setButtonInstallPosition('nav-bar', 'bookmarks-menu-button-container')
42
43 loadCss('style')
44
45 options.observe()
46
47 watchWindows(addEventListeners, 'navigator:browser')
48 watchWindows(addToolbarButton.bind(undefined, vimBucket), 'navigator:browser')
Imprint / Impressum