forked from pyreadline/pyreadline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
========== | ||
pyreadline | ||
========== | ||
|
||
|
||
The pyreadline package is a python implementation of GNU readline functionality | ||
it is based on the ctypes based UNC readline package by Gary Bishop. | ||
It is not complete. It has been tested for use with windows 2000 and windows xp. | ||
|
||
Version 2.0 runs on Python 2.6, 2.7, and >3.2 using the same code. | ||
|
||
Features: | ||
* keyboard text selection and copy/paste | ||
* Shift-arrowkeys for text selection | ||
* Control-c can be used for copy activate with allow_ctrl_c(True) in config file | ||
* Double tapping ctrl-c will raise a KeyboardInterrupt, use ctrl_c_tap_time_interval(x) | ||
where x is your preferred tap time window, default 0.3 s. | ||
* paste pastes first line of content on clipboard. | ||
* ipython_paste, pastes tab-separated data as list of lists or numpy array if all data is numeric | ||
* paste_mulitline_code pastes multi line code, removing any empty lines. | ||
|
||
|
||
The latest development version is always available at the IPython git | ||
repository_. | ||
|
||
.. _repository: https://github.com/pyreadline/pyreadline.git |