]> git.rmz.io Git - dotfiles.git/blob - qutebrowser/proxy.pac
alias: return error when no arguments given to vim within VIM_TERMINAL
[dotfiles.git] / qutebrowser / proxy.pac
1 function FindProxyForURL(url, host) {
2 if (shExpMatch(host, "*slack*")) {
3 return "DIRECT";
4 }
5 if (shExpMatch(host, "*focalpointpositioning*"))
6 {
7 return "SOCKS5 localhost:1080";
8 }
9
10 return "DIRECT";
11 }