Basics

Creating your first key map

Step 1 – Click “Edit Config” in the Keymando menu. This will open the keymandorc.rb file with your default text editor for ruby files.

Step 2 – Add the following snippet:

    map "<Cmd-o>" { alert("Hello from Keymando!") }

Step 3 – Now go up to the Keymando menu and click “Reload Config”

That’s it! You are now able to press and see the following dialog:

hello

Learn more about mapping in the Keymando documentation.

Restricting a key mapping to an application

    only "Safari" do
      map "<Cmd-p>" { alert("I'm in Safari!") }
    end

Learn more about filters in the Keymando documentation.

Also check out some real-world examples for more ideas of what you can do with Keymando!