]> git.gir.st - VimFx.git/blob - extension/lib/vim.coffee
Remove alt-shift-v shortcut to toggle VimFx
[VimFx.git] / extension / lib / vim.coffee
1 ###
2 # Copyright Anton Khodakivskiy 2012, 2013.
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 utils = require('./utils')
22 modes = require('./modes')
23
24 module.exports = class Vim
25 constructor: (@window) ->
26 @rootWindow = utils.getRootWindow(@window) # For convenience.
27 @storage = {}
28 @lastInteraction = null
29 @lastAutofocusPrevention = null
30 @enterMode('normal')
31
32 enterMode: (mode, args...) ->
33 # `args` is an array of arguments to be passed to the mode's `onEnter`
34 # method.
35
36 if mode not of modes
37 throw new Error("Not a valid VimFx mode to enter: #{ mode }")
38
39 if @mode != mode
40 if @mode of modes
41 @call('onLeave')
42
43 @mode = mode
44
45 @call('onEnter', args...)
46
47 onInput: (keyStr, event) ->
48 suppress = @call('onInput', keyStr, event)
49 return suppress
50
51 call: (method, args...) ->
52 currentMode = modes[@mode]
53 currentMode?[method].call(currentMode, this, @storage[@mode] ?= {}, args...)
Imprint / Impressum