From c6768bd75bc9162951f3c6f81d3164d76b5d8d7c Mon Sep 17 00:00:00 2001 From: David Kaufmann Date: Sat, 3 Dec 2011 04:44:09 +0100 Subject: add .pythonrc --- skel/.pythonrc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 skel/.pythonrc (limited to 'skel') diff --git a/skel/.pythonrc b/skel/.pythonrc new file mode 100644 index 0000000..b1226d8 --- /dev/null +++ b/skel/.pythonrc @@ -0,0 +1,10 @@ +# ~/.pythonrc +# enable syntax completion +try: + import readline +except ImportError: + print ("Module readline not available.") +else: + import rlcompleter + readline.parse_and_bind("tab: complete") + -- cgit v1.2.3