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