This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | |
} |
OlderNewer