Skip to content

Instantly share code, notes, and snippets.

Custom:
Command + Num 1: Terminal
Command + Num 2: Switch projects
Command + Num 3: ?
Command + Num 4: Commit
Command + Num 5: Git log
Command + Num 6: Branches
function FindProxyForURL(url, host) {
// Bypass proxy for local addresses
if (shExpMatch(host, "*.local")) {
return "DIRECT";
}
// Use proxy for all other requests
return "PROXY proxy.example.com:8080";
}