summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kaufmann <astra@fsinf.at>2011-12-03 04:44:09 +0100
committerDavid Kaufmann <astra@fsinf.at>2011-12-03 04:44:09 +0100
commitc6768bd75bc9162951f3c6f81d3164d76b5d8d7c (patch)
treefc46e6c5044ede1463b581ea7325c67c3e9225a2
parentdda59f59ee9fd9a9585aecf6c306354a2746b710 (diff)
downloadconfig-c6768bd75bc9162951f3c6f81d3164d76b5d8d7c.tar.gz
add .pythonrc
-rw-r--r--skel/.pythonrc10
1 files changed, 10 insertions, 0 deletions
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")
+