Created
March 1, 2012 13:42
-
-
Save simenbrekken/1949895 to your computer and use it in GitHub Desktop.
Make Norwegian/Swedish keyboards better for coding
This file contains 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
This simply maps ⌘+8 and ⌘+9 to { and } for increased coding comfort. DefaultKeyBinding.dict controls Cocoa based input. | |
- Place DefaultKeyBinding.dict in ~/Library/KeyBindings | |
- Insert the contents of Default (OSX).sublime-keymap in Sublime Text 2 | Preferences | Key Bindings - User |
This file contains 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
Show hidden characters
{ "keys": ["super+8"], "command": "insert", "args": {"characters": "{"} }, | |
{ "keys": ["super+9"], "command": "insert", "args": {"characters": "}"} } |
This file contains 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
{ | |
"~ " = ("insertText:", " "); /* Insert a regular space when pressing Option + Space */ | |
"@8" = ("insertText:", "{"); | |
"@9" = ("insertText:", "}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment