Here are some mappings I use everyday for navigating applications.
Notice the use of the ‘;’ leader key.
1 2 3 4 5 6 7 | |
Here are some mappings I use everyday for navigating applications.
Notice the use of the ‘;’ leader key.
1 2 3 4 5 6 7 | |
In this screencast I walk you through the awesome (and yet still not very well known) feature of being able to have Keymando highlight elements that you want to act on (typically by left clicking, double clicking etc) in a user interface and then trigger them by typing in the identifier.
If you have ever used Pentadactyl or Vimperator, you are already familiar with the feature. In Pentadactyl, when a web page is being displayed, if you press the ‘f’ key, it will highlight all of the clickable links on the page. To click a link, you just have to type in the digits/letters that correspond to the link. As you can imagine, this feature can save quite a lot of time!!
Well, Keymando supports the same style of feture, except you can use it in any OSX based app that supports OSX Accessibility.
In the screencast I show you a sample usage scenario of this awesome feature!
Go here to get the latest version of Keymando, and get busy automating your way through OSX!
We’re going to start trying to post more examples of how to use different features of Keymando.
Todays example shows how to use the accessibility layer to access menu items and take action. Specifically we’re just going to map a key to simply reload a page in Google Chrome.
Obviously we could simply map our trigger,
1
| |
But as a demonstration, let’s do the same thing through the Accessibility Gateway.
1 2 3 4 5 | |
From this we can see we’re simply get the application by name, Google Chrome, then doing a search to find the menu item we want, “Reload This Page”. In a later post we’ll show you how to get all the menu items of an application using Keymando’s accessibility layer, but for this post we’ll assume you just found the menu item name via Chome’s menu bar. After that we just “press” the menu item.
For more information about using the accessibility features of Keymando, visit the ever-updating docs at
http://updates.keymando.com/releases/current/doc/
Feel free to ask send questions to contact@keymando.com and we’ll try our best to answer them. We’ll do our best to post answers here to blog if we think they’d be helpful to other users.
Like several other applications recently, we’ve also made the decision to move Keymando out the App Store.
This is due to two main reasons:
This is unfortunate, but rest assure we’re committed to the development of Keymando and want to make sure all of you who bought Keymando from the App Store continue to receive the latest updates.
Please email us at contact@keymando.com with your name, order number or receipt email and we’ll send you a new license right away.
Thanks, The Keymando Team
Are you an existing Keymando user, or are you curious about what it can actually do for the keyboard ninja in you?
A lot of existing Keymando users are barely scratching the surface of what can be done with the product. This is due to mostly 2 things:
Please join in on a webinar that will help open the doors a little on what is possible with the tool and more importantly, your creativity and imagination!!
The presentation will take place tomorrow at 12PM MST.
Register here.
In this video we show you how to automate a typical repetitive tmux dev workflow!!
Between working full time jobs and lots of other responsibilities, Kevin and I are putting the final touches on the next release of Keymando!!
For a long time, we have observed that a large majority of Keymando users are using the tool for just basic shortcut remapping. Since we both use this tool all the time, it is now time to show off some of things it can do, and believe me when I say, that using it for jusk key remapping is a big waste of its potential.
Over the course of the next couple of weeks, I am going to be giving presentations to existing, and hopefully some new users, to show them what they can do with this tool, and the infinite customizations that are now possible with a bit of Ruby magic!!
If you take a look at my current Keymando Configuration Scripts you can see how “basic” my regular shortcut mapping is:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
The 2 biggest new changes to the Keymando internal engine is that almost everything is modelled as commands. This allows for history, replaying and a host of other features. And the 2nd biggest new feature is the addition of an automation layer we are dubbing the Keymando Automation Engine. To see this engine in action, take a look at my script to manipulate iTunes:
1 2 3 4 5 6 7 | |
This is code in one of my configuration scripts under my plugins folder. It will setup one command for each iTunes function. Here is the code for the itunes_command_for_button method (written in the same plugin script):
1 2 3 4 5 6 7 | |
Notice the use of the simple dsl for registering a command. This is one of 2 dsl’s for registering commands. At the completion of the dsl block, a new command with the name provided in the description will be place in the set of available commands to run. And finally, the itunes_button method, shows the use of the Keymando Automation Engine to find the actual button:
1 2 3 4 | |
I will be doing more posts on the Automation Engine over the next little while. In the meantime, looking through the scripts in my GitHub repository should give you an idea of what some of the capabilities are.
The net result of registering all of those commands is that when I press Cmd-y (which is my mapping to run a registered command), it will pop up a list of all of the registered commands based on my settings:
Keymando version 1.0.3 is out, and we have opened up a long awaited trial mode so that people can give it a whirl. We understand that a $20 price tag for most developers is not spent lightly, so we want to make sure that people get time to play with it. For anyone who knows me and know what a keyboard freak I am, I can literally say, that I can’t even use a machine that does not have this program on it anymore!! I am going to create some small 1-2 minute screen casts that will demonstrate some of the worflows that I use on a day to day basis.
There are many constructs, algorithms and patterns that go into making this thing sing. Kevin and I are hard at work adding new features, and for now we are going to keep the lid closed on 2 awesome features that are coming down the pipe. I can say with complete confidence that it will revolutionize the way you use osx with the keyboard!!
It is also beneficial to know that we have a small, but growing, community of plugin developers who are writing freely available plugins and making them available through the official keymando plugin repository. 2 that I use quite often are the:
What more OSX power users and developers need to realize, is that there is so much you can do for customization if you know how to code ruby. For regular users we are keeping the barrier to entry as low as possible and keeping the dsl as “simple” for the 80/20 rule. For developers who know ruby, well, you are really only limited by your imagination.
We are going to be adding more capabilities to the core pipeline that will be exposed to plugin developers, or just simple config scripts. So hold onto your hats!! For now we are also not focusing on any fancy user interfaces, as we are currently focusing on growing the core engine. The pretty UI’s for some of the features will come in time!!
For now, I’ll leave you with a large section of code from my current .keymandorc.rb file (the main configuration script). Keep in mind that some of the code in this file is based on the main line of development!! Hopefully most of it will be self descriptive enough for me to not need to include comments.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
Happy keyboarding!!
In this video you are given a whirlwind introduction to the basic features of keymando.