Last active
December 14, 2015 01:19
-
-
Save yonchu/5005758 to your computer and use it in GitHub Desktop.
httpstatusコマンド用zsh補完関数
This file contains 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
#compdef httpstatus | |
# | |
# httpstatus コマンド用zsh補完関数 | |
# | |
# このファイルfpathの通ったディレクトリに置きzshを再起動して下さい。 | |
# その際ファイル名を必ず _httpstatus として下さい。 | |
# | |
# $ cp _httpstatus /usr/local/share/zsh/site-functions | |
# $ exec zsh | |
# | |
# 代表的なfpathの通ったディレクトリ: | |
# | |
# /usr/share/zsh/site-functions/ | |
# /usr/local/share/zsh/site-functions/ | |
# | |
# fpathの調べ方: | |
# | |
# $ echo $fpath | tr " " "\n" | |
# | |
# 他のコマンドでこの補完関数を使用する場合は、以下の設定を .zshrc などに追加して下さい: | |
# | |
# compdef _httpstatus <command> | |
# | |
function _httpstatus() { | |
local httpstatus | |
httpstatus="\ | |
100[Continue] | |
101[Switching Protocols] | |
102[Processing] | |
200[OK] | |
201[Created] | |
202[Accepted] | |
203[Non-Authoritative Information] | |
204[No Content] | |
205[Reset Content] | |
206[Partial Content] | |
207[Multi-Status] | |
208[Already Reported] | |
300[Multiple Choices] | |
301[Moved Permanently] | |
302[Found] | |
303[See Other] | |
304[Not Modified] | |
305[Use Proxy] | |
307[Temporary Redirect] | |
400[Bad Request] | |
401[Unauthorized] | |
402[Payment Required] | |
403[Forbidden] | |
404[Not Found] | |
405[Method Not Allowed] | |
406[Not Acceptable] | |
407[Proxy Authentication Required] | |
408[Request Timeout] | |
409[Conflict] | |
410[Gone] | |
411[Length Required] | |
412[Precondition Failed] | |
413[Request Entity Too Large] | |
414[Request-URI Too Large] | |
415[Unsupported Media Type] | |
416[Request Range Not Satisfiable] | |
417[Expectation Failed] | |
418[I'm a teapot] | |
422[Unprocessable Entity] | |
423[Locked] | |
424[Failed Dependency] | |
425[No code] | |
426[Upgrade Required] | |
428[Precondition Required] | |
429[Too Many Requests] | |
431[Request Header Fields Too Large] | |
449[Retry with] | |
500[Internal Server Error] | |
501[Not Implemented] | |
502[Bad Gateway] | |
503[Service Unavailable] | |
504[Gateway Timeout] | |
505[HTTP Version Not Supported] | |
506[Variant Also Negotiates] | |
507[Insufficient Storage] | |
509[Bandwidth Limit Exceeded] | |
510[Not Extended] | |
511[Network Authentication Required] | |
701[Meh] | |
702[Emacs] | |
703[Explosion] | |
710[PHP] | |
711[Convenience Store] | |
712[NoSQL] | |
719[I am not a teapot] | |
720[Unpossible] | |
721[Known Unknowns] | |
722[Unknown Unknowns] | |
723[Tricky] | |
724[This line should be unreachable] | |
725[It works on my machine] | |
726[It's a feature, not a bug] | |
727[32 bits is plenty] | |
731[Fucking Rubygems] | |
732[Fucking Unic💙de] | |
733[Fucking Deadlocks] | |
734[Fucking Deferreds] | |
735[Fucking IE] | |
736[Fucking Race Conditions] | |
737[FuckThreadsing] | |
738[Fucking Bundler] | |
739[Fucking Windows] | |
740[Computer says no] | |
741[Compiling] | |
742[A kitten dies] | |
743[I thought I knew regular expressions] | |
744[Y U NO write integration tests?] | |
745[I don't always test my code, but when I do I do it in production] | |
746[Missed Ballmer Peak] | |
747[Motherfucking Snakes on the Motherfucking Plane] | |
748[Confounded by Ponies] | |
749[Reserved for Chuck Norris] | |
750[Didn't bother to compile it] | |
753[Syntax Error] | |
754[Too many semi-colons] | |
755[Not enough semi-colons] | |
759[Unexpected T_PAAMAYIM_NEKUDOTAYIM] | |
761[Hungover] | |
762[Stoned] | |
763[Under-Caffeinated] | |
764[Over-Caffeinated] | |
765[Railscamp] | |
766[Sober] | |
767[Drunk] | |
768[Accidentally Took Sleeping Pills Instead Of Migraine Pills During Crunch Week] | |
769[Questionable Maturity Level] | |
771[Cached for too long] | |
772[Not cached long enough] | |
773[Not cached at all] | |
774[Why was this cached?] | |
776[Error on the Exception] | |
777[Coincidence] | |
778[Off By One Error] | |
779[Off By Too Many To Count Error] | |
780[Project owner not responding] | |
781[Operations] | |
782[QA] | |
783[It was a customer request, honestly] | |
784[Management, obviously] | |
785[TPS Cover Sheet not attached] | |
786[Try it now] | |
791[The Internet shut down due to copyright restrictions.] | |
792[Climate change driven catastrophic weather event] | |
793[Zombie Apocalypse] | |
794[Someone let PG near a REPL] | |
797[This is the last page of the Internet. Go back] | |
799[End of the world]" | |
local -a comp_list | |
comp_list=(${(f)httpstatus}) | |
_values 'http status' "$comp_list[@]" | |
} | |
_httpstatus "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment