8 lines
190 B
CoffeeScript
8 lines
190 B
CoffeeScript
|
EventEmitter = require('events').EventEmitter
|
||
|
bindings = process.atomBinding 'shortcut'
|
||
|
|
||
|
Shortcut = bindings.Shortcut
|
||
|
Shortcut::__proto__ = EventEmitter.prototype
|
||
|
|
||
|
module.exports = Shortcut
|