Skip to content

Instantly share code, notes, and snippets.

@JackNicholas
Last active December 4, 2021 11:57
Show Gist options
  • Save JackNicholas/5652813 to your computer and use it in GitHub Desktop.
Save JackNicholas/5652813 to your computer and use it in GitHub Desktop.
setting keyboard shortcut to open specific file in sublime text
create a keyboard shortcut in sublime text for a specific file
Open the command palette, search for "Preferences: Key bindings - User", open it and add this code to it:
{
{ "keys": ["ctrl+alt+0"], "command": "open_file", "args": {"file": "/path/to/your/file.txt"} }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment