Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created March 1, 2012 13:42
Show Gist options
  • Save simenbrekken/1949895 to your computer and use it in GitHub Desktop.
Save simenbrekken/1949895 to your computer and use it in GitHub Desktop.
Make Norwegian/Swedish keyboards better for coding
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
{ "keys": ["super+8"], "command": "insert", "args": {"characters": "{"} },
{ "keys": ["super+9"], "command": "insert", "args": {"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