mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
17 lines
361 B
CoffeeScript
17 lines
361 B
CoffeeScript
$ = require 'jquery'
|
|
_ = require 'underscore'
|
|
|
|
window.atom = new (require 'app')
|
|
|
|
window.keydown = (pattern) ->
|
|
keys = pattern.split '+'
|
|
event = $.Event "keydown",
|
|
ctrlKey: 'ctrl' in keys
|
|
altKey: 'alt' in keys
|
|
shiftKey: 'shift' in keys
|
|
metaKey: 'meta' in keys
|
|
which: _.last(keys).toUpperCase().charCodeAt 0
|
|
|
|
$(document).trigger event
|
|
|