forked from adobe/brackets
-
Notifications
You must be signed in to change notification settings - Fork 0
User Key Bindings
redmunds edited this page Oct 21, 2014
·
21 revisions
This page describes how user can override key bindings.
Use Debug > Open User Key Map to open the keymap.json in Brackets. If the file does not already exist, then it will be created.
The keymap.json file is located in the the user data folder. The user data folder is located at:
- Mac:
~/Library/Application Support/Brackets - Win XP:
C:\Documents and Settings\<username>\Application Data\Brackets-- (aka%appdata%\Brackets) - Win Vista/7/8:
C:\Users\<username>\AppData\Roaming\Brackets-- (aka%appdata%\Brackets) - Linux:
~/.config/brackets-- (aka$XDG_CONFIG_HOME/brackets)
The JSON dta format is:
{
"overrides": {
"<key>": "<command-id>"
[, "<key>": "<command-id>"]
}
}
Where <key> is ...