15 linhas
435 B
CoffeeScript
15 linhas
435 B
CoffeeScript
module.exports =
|
|
activateCallCount: 0
|
|
activationCommandCallCount: 0
|
|
legacyActivationCommandCallCount: 0
|
|
|
|
activate: ->
|
|
@activateCallCount++
|
|
|
|
atom.commands.add 'atom-workspace', 'activation-command', =>
|
|
@activationCommandCallCount++
|
|
|
|
editorView = atom.views.getView(atom.workspace.getActiveTextEditor())?.__spacePenView
|
|
editorView?.command 'activation-command', =>
|
|
@legacyActivationCommandCallCount++
|