view python/.pythonstartup @ 16:b8049010198a

Changes to .vimrc after reading Practical Vim.
author Brian Neal <bgneal@gmail.com>
date Sun, 29 Dec 2013 18:22:38 -0600
parents 357906c82c1f
children
line wrap: on
line source
# python startup file
try:
   import readline
except ImportError:
   pass
else:
   import atexit
   import os
   import rlcompleter

   # tab completion
   readline.parse_and_bind('tab: complete')

   # history file
   histfile = os.path.join(os.environ['HOME'], '.pythonhistory')
   try:
       readline.read_history_file(histfile)
   except IOError:
       pass
   readline.set_history_length(1024)

   atexit.register(readline.write_history_file, histfile)
   del os, histfile, readline, rlcompleter