I'm getting really tired of these programs and their shortcuts...
- some programs don't have shortcuts at all
- some programs have some shortcuts, but you can't customize them
- some programs have their own shortcuts, but they're so un-standard that almost nobody uses them
- finally some programs have their own shortcuts and they allow you to customize them
With every new program, I need to learn a new set of shortcuts. The problem comes when the shortcut is to some activity that can apply to several programs, like:
- find, find next
- close tab, move to next tab
- save, save all
- rename
What I want is this:
- be able to use my shortcuts
- whenever I set a shortcut, I want that to be available throughout all my programs
- be able to save all my shortcuts, and restore them (for instance, after a Windows re-install)
What the programmers should do...
It's too bad most programmers don't realize what the shortcuts are for. They are to benefit the user, not the programmer. This means that points 1-3 are perfectly reasonable.
Program-wise, this also means that:
- shortcuts are not to be internal to the program
- when you load a shortcut, you should be asking a system API function, not assign it some value you came up with, or load it from some crazy file, or from the registry
Sadly, there's no system API function to call, to load a shortcut. But if there were, here's how it should look like:
string get_shortcut(string shortcut_name);
os_representation shortcut_to_os(string shortcut);
That's it! The shortcut name needs to be made standard, like:
- "find" - for find command
- "save" - for save
- "save_all" - for Save All
- etc.
Then, based on your OS, the 2nd function, converts that string to the OS's internal representation.
So, you programmers out there - how 'bout we make some cool library to handle this? The implementation shouldn't take too long, but the benefits would be enormous...
2 comments:
Have you seen Humanized's 'Enso'?
http://humanized.com/
Hi,
I just went there - that's quite cool, I must say ;)
Right now I'm using Launchy (www.launchy.net), and I'm quite satisfied with it.
What I really like about Enso (I've just read through the site) is that I can maximize, minimize, unmaximize windows - which was quite hard before. So I"ll give it a try. Thanks!
Best,
John
Post a Comment