Created
September 24, 2016 11:17
-
-
Save saboyutaka/a97d763b03ce47793e6d5a3f5e8ced7f to your computer and use it in GitHub Desktop.
Swap semicolon & colon with keyhac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import os | |
import datetime | |
import subprocess | |
from keyhac import * | |
def configure(keymap): | |
# Global keymap which affects any windows | |
keymap_global = keymap.defineWindowKeymap() | |
keymap_global[ "Shift-Semicolon" ] = 'Colon' | |
keymap_global[ "Semicolon" ] = 'Shift-Semicolon' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment