{"id":136144,"date":"2019-02-24T08:16:44","date_gmt":"2019-02-24T00:16:44","guid":{"rendered":"https:\/\/lrxjmw.cn\/?p=136144"},"modified":"2019-02-18T14:18:20","modified_gmt":"2019-02-18T06:18:20","slug":"python-auto-tab","status":"publish","type":"post","link":"https:\/\/lrxjmw.cn\/python-auto-tab.html","title":{"rendered":"python\u4ea4\u4e92\u6a21\u5f0f\u4e0b\u5b9e\u73b0tab\u81ea\u52a8\u8865\u5168\u529f\u80fd"},"content":{"rendered":"
\u5efa\u7acb.pythonstartup\u6587\u4ef6<\/strong><\/span><\/div>\n
\r\n$ cat .pythonstartup\r\n\r\n# cat ~\/.pythonstartup\r\n\r\n# python startup file\r\n\r\n#!\/usr\/bin\/env python\r\nimport sys\r\nimport readline\r\nimport rlcompleter\r\nimport atexit\r\nimport os\r\n\r\n# tab completion\r\nreadline.parse_and_bind('tab: complete')\r\n<\/pre>\n
\r\n# history file\r\nhistfile = os.path.join(os.environ['HOME'], '.pythonhistory')\r\ntry:\r\n  readline.read_history_file(histfile)\r\nexcept IOError:\r\n  pass\r\natexit.register(readline.write_history_file, histfile)\r\ndel os, histfile, readline, rlcompleter\r\n<\/pre>\n
\u5b9a\u4e49\u53d8\u91cf\u5230~\/.bash_profile<\/strong><\/span><\/div>\n
\r\n$ echo 'export PYTHONSTARTUP=~\/.pythonstartup' >> ~\/.bash_profile\r\n<\/pre>\n
\u6700\u540e\u91cd\u65b0\u767b\u9646shell\uff0c\u8f93\u5165python\u547d\u4ee4\u8fdb\u5165\u4ea4\u4e92\u6a21\u5f0f\uff0c\u5c31\u53ef\u4ee5\u7528Tab\u952e\u8fdb\u884c\u8865\u5168<\/strong><\/span><\/div>\n

\"\"<\/p>\n","protected":false},"excerpt":{"rendered":"

$ cat .pythonstartup # cat ~\/.pythonstartup # python st […]<\/p>\n","protected":false},"author":1479,"featured_media":31962,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[55],"tags":[],"class_list":["post-136144","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-thread"],"acf":[],"_links":{"self":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/136144","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/users\/1479"}],"replies":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/comments?post=136144"}],"version-history":[{"count":5,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/136144\/revisions"}],"predecessor-version":[{"id":136605,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/136144\/revisions\/136605"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/media\/31962"}],"wp:attachment":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/media?parent=136144"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/categories?post=136144"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/tags?post=136144"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}