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