diff options
author | Ryan Kavanagh <ryanakca@kubuntu.org> | 2011-08-18 19:45:51 -0400 |
---|---|---|
committer | Ryan Kavanagh <ryanakca@kubuntu.org> | 2011-08-25 07:43:09 -0400 |
commit | 7e3898ec496eb619a7b3a94562df2416d72ffe16 (patch) | |
tree | 4dc94f7d5781bfbde8b6d27fdcf9f0ee353eeea5 | |
parent | Added .msmtprc (diff) |
Added .pythonrc.py
-rw-r--r-- | .pythonrc.py | 8 | ||||
-rwxr-xr-x | dm | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.pythonrc.py b/.pythonrc.py new file mode 100644 index 0000000..29373d4 --- /dev/null +++ b/.pythonrc.py @@ -0,0 +1,8 @@ +# ~/.pythonrc +# enable syntax completion +try: + import rlcompleter + rlcompleter.readline.parse_and_bind("tab: complete") +except: + import readline + readline.parse_and_bind("tab: complete") @@ -27,6 +27,7 @@ GLOBAL_FILES = \ .mutt/ \ .muttrc \ .notmuch-config \ + .pythonrc.py \ .quiltrc-dpkg \ .screenrc \ .screenlayout/ \ |