mjolnirapp / mjolnir

Lightweight automation and productivity app for OS X
5.2k stars 129 forks source link

Add ability to set bindings as keycodes #550

Closed githaff closed 9 years ago

githaff commented 9 years ago

This helps overcome issue which appears when config contains binding for key symbol which is absent from active keyboard layout so config load fails.

To check out real keycodes next commands in mjolnir console may be used: local keycodes = require "mjolnir.keycodes.internal" for k,v in pairs (keycodes.map) do print(k, v) end

thesoftwarephilosopher commented 9 years ago

Not a bad idea :)