]> git.phdru.name Git - dotfiles.git/commitdiff
init.py: Read and save history from/to the current virtualenv
authorOleg Broytman <phd@phdru.name>
Mon, 22 Apr 2019 19:35:14 +0000 (22:35 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 22 Apr 2019 19:35:14 +0000 (22:35 +0300)
Commented out for now.

lib/python/init.py

index 71526b9198f4a4e8d1ce5d44b9860b0abaa899f2..1a91f049395ecceb52dee640983f53d3b18cedd2 100644 (file)
@@ -36,16 +36,22 @@ def init():
                 or os.path.expanduser('~/.inputrc')
             readline.read_init_file(initfile)
 
-            histfile = os.path.expanduser('~/.python_history')
-            try:
-                readline.read_history_file(histfile)
-            except IOError:
-                pass  # No such file
             # if 'libedit' in readline.__doc__:
             #     readline.parse_and_bind("bind ^I rl_complete")
             # else:
             #     readline.parse_and_bind("tab: complete")
 
+            histfiles = ['~/.python_history']
+            # if 'VIRTUAL_ENV' in os.environ:
+            #     histfiles.append('$VIRTUAL_ENV/.python_history')
+            for histfile in histfiles:
+                try:
+                    histfile = os.path.expandvars(histfile)
+                    histfile = os.path.expanduser(histfile)
+                    readline.read_history_file(histfile)
+                except IOError:
+                    pass  # No such file
+
             def savehist():
                 histsize = os.environ.get('HISTSIZE')
                 if histsize:
@@ -55,6 +61,9 @@ def init():
                         pass
                     else:
                         readline.set_history_length(histsize)
+                histfile = histfiles[-1]
+                histfile = os.path.expandvars(histfile)
+                histfile = os.path.expanduser(histfile)
                 readline.write_history_file(histfile)
 
             import atexit