diff --git a/zsh/functions.zsh b/zsh/functions.zsh index 15f37c5..509e321 100644 --- a/zsh/functions.zsh +++ b/zsh/functions.zsh @@ -35,19 +35,6 @@ function server() { python -c $'import SimpleHTTPServer;\nmap = SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_map;\nmap[""] = "text/plain";\nfor key, value in map.items():\n\tmap[key] = value + ";charset=UTF-8";\nSimpleHTTPServer.test();' "$port" } -# git log with per-commit cmd-clickable GitHub URLs (iTerm) -# function gf() { -# local remote="$(git remote -v | awk '/^origin.*\(push\)$/ {print $2}')" -# [[ "$remote" ]] || return -# local user_repo="$(echo "$remote" | perl -pe 's/.*://;s/\.git$//')" -# git log $* --name-status --color | awk "$(cat <