diff --git a/build-doc.bat b/build-doc.bat index 2ed1b25..054632c 100644 --- a/build-doc.bat +++ b/build-doc.bat @@ -1,4 +1,4 @@ -SET VERSION=1.6.1 +SET VERSION=1.6.2 python setup.py build_sphinx python setup.py build_sphinx -b latex diff --git a/pyreadline/rlmain.py b/pyreadline/rlmain.py index 5fe8e84..7841433 100644 --- a/pyreadline/rlmain.py +++ b/pyreadline/rlmain.py @@ -329,6 +329,9 @@ class BaseReadline(object): def completer_delims(delims): self.mode.completer_delims = delims + def enable_ipython_paste_for_paths(boolean): + self.mode.enable_ipython_paste_for_paths = boolean + def debug_output(on, filename=u"pyreadline_debug_log.txt"): #Not implemented yet if on in [u"on", u"on_nologfile"]: self.debug=True @@ -378,6 +381,7 @@ class BaseReadline(object): u"allow_ctrl_c":allow_ctrl_c, u"ctrl_c_tap_time_interval":ctrl_c_tap_time_interval, u"kill_ring_to_clipboard":setkill_ring_to_clipboard, + u"enable_ipython_paste_for_paths":enable_ipython_paste_for_paths, } if os.path.isfile(inputrcpath): try: