diff options
| author | David Kaufmann <astra@fsinf.at> | 2011-12-03 04:44:09 +0100 |
|---|---|---|
| committer | David Kaufmann <astra@fsinf.at> | 2011-12-03 04:44:09 +0100 |
| commit | c6768bd75bc9162951f3c6f81d3164d76b5d8d7c (patch) | |
| tree | fc46e6c5044ede1463b581ea7325c67c3e9225a2 /skel | |
| parent | dda59f59ee9fd9a9585aecf6c306354a2746b710 (diff) | |
| download | config-c6768bd75bc9162951f3c6f81d3164d76b5d8d7c.tar.gz | |
add .pythonrc
Diffstat (limited to 'skel')
| -rw-r--r-- | skel/.pythonrc | 10 |
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") + |
