Skip to content

Instantly share code, notes, and snippets.

@valacar
Created April 14, 2015 01:19
Show Gist options
  • Save valacar/ae31ddb3f9659a891086 to your computer and use it in GitHub Desktop.
Save valacar/ae31ddb3f9659a891086 to your computer and use it in GitHub Desktop.
Sublime Text - disable menu keyboard shortcuts
// Place this in your Packages/User/ folder.
// Prevents Alt + f, i, v, g, t, p, n, and h key binds from opening the main menu.
[
{
"caption": "File",
"mnemonic": "",
"id": "file",
"children":
[
]
},
{
"caption": "Edit",
"mnemonic": "",
"id": "edit",
"children":
[
]
},
{
"caption": "Selection",
"mnemonic": "",
"id": "selection",
"children":
[
]
},
{
"caption": "Find",
"mnemonic": "",
"id": "find",
"children":
[
]
},
{
"caption": "View",
"mnemonic": "",
"id": "view",
"children":
[
]
},
{
"caption": "Goto",
"mnemonic": "",
"id": "goto",
"children":
[
]
},
{
"caption": "Tools",
"mnemonic": "",
"id": "tools",
"children":
[
]
},
{
"caption": "Project",
"mnemonic": "",
"id": "project",
"children":
[
]
},
{
"caption": "Preferences",
"mnemonic": "",
"id": "preferences",
"children":
[
]
},
{
"caption": "Help",
"mnemonic": "",
"id": "help",
"children":
[
]
}
]
@felixcatto
Copy link

Big thanks 🔥 🥰

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment