General
-
to fix the input field bug (mnemonics) on lion 10.7.2
since the last update on my mac book air i cannot use mnemonics anymore. when opening the input dialog the following message appears:
Uh oh
NSInvalidArgumentException: Unlocking Focus on wrong view ((null)), expected <NSComboBox: 0x4012bbc00>thanks in advance
20 votes -
port this application to Windows 7
It would be great to port the application for use in Windows 7/
4 votes -
Dvorak Keyboard Compatibility
I use the Dvorak keyboard layout, and Keymando doesn't trigger the keys properly.
For example, in my keymando.rb file, I set up:
map "<Ctrl-j>" do
alert('hi')
endI press the "J" key on my Dvorak layout (corresponds to the QWERTY "C" key) , and nothing happens. I was really confused about this... until I tried pressing the "H" key (which corresponds to the QWERTY "J" key), and I get my alert box.
But I'd really like to be able to press "J" on my Dvorak layout and have this command execute...
I can work around this by essentially pre-processing the… more
4 votes -
API Doc
I'm a ruby dev and love the idea of really running crazy with ruby config. But at the moment there doesn't seem to be enough doc to really get too creative without trial and error.
I'd love to see some more formal documentation on what can be done.
9 votes -
Documentation - Show a begin / rescue example to help debug
I found writing code with errors and having keymondo just quit was frustrating. The below gave alert feedback to the problems. Might be helpful to example something like this.
map "<Alt- >" do
begin
# new unstable code
rescue Exception => e
alert("There was a problem, #{$!}")
end
end2 votes -
rubygems
How can I install gems to be used in my plugins?
1 vote