blob: d0b26a3bd61f4c9bea386729fb02614ff51f9daf [file] [log] [blame]
Skip Montanaro510ca1d2000-07-06 03:25:26 +00001\section{\module{readline} ---
Fred Drake3c62d9e2000-07-06 04:51:04 +00002 GNU readline interface}
Skip Montanaro510ca1d2000-07-06 03:25:26 +00003
4\declaremodule{builtin}{readline}
Fred Drake3c62d9e2000-07-06 04:51:04 +00005 \platform{Unix}
Skip Montanaro510ca1d2000-07-06 03:25:26 +00006\sectionauthor{Skip Montanaro}{skip@mojam.com}
Fred Drakef8ca7d82000-10-10 17:03:45 +00007\modulesynopsis{GNU readline support for Python.}
Skip Montanaro510ca1d2000-07-06 03:25:26 +00008
Skip Montanaro510ca1d2000-07-06 03:25:26 +00009
10The \module{readline} module defines a number of functions used either
Fred Drake3c62d9e2000-07-06 04:51:04 +000011directly or from the \refmodule{rlcompleter} module to facilitate
12completion and history file read and write from the Python
13interpreter.
Skip Montanaro510ca1d2000-07-06 03:25:26 +000014
15The \module{readline} module defines the following functions:
16
Fred Drake3c62d9e2000-07-06 04:51:04 +000017
Skip Montanaro510ca1d2000-07-06 03:25:26 +000018\begin{funcdesc}{parse_and_bind}{string}
19Parse and execute single line of a readline init file.
20\end{funcdesc}
21
22\begin{funcdesc}{get_line_buffer}{}
23Return the current contents of the line buffer.
24\end{funcdesc}
25
26\begin{funcdesc}{insert_text}{string}
27Insert text into the command line.
28\end{funcdesc}
29
30\begin{funcdesc}{read_init_file}{\optional{filename}}
31Parse a readline initialization file.
32The default filename is the last filename used.
33\end{funcdesc}
34
35\begin{funcdesc}{read_history_file}{\optional{filename}}
36Load a readline history file.
Fred Drake3c62d9e2000-07-06 04:51:04 +000037The default filename is \file{\~{}/.history}.
Skip Montanaro510ca1d2000-07-06 03:25:26 +000038\end{funcdesc}
39
40\begin{funcdesc}{write_history_file}{\optional{filename}}
41Save a readline history file.
Fred Drake3c62d9e2000-07-06 04:51:04 +000042The default filename is \file{\~{}/.history}.
Skip Montanaro510ca1d2000-07-06 03:25:26 +000043\end{funcdesc}
44
Martin v. Löwise7a97962003-09-20 16:08:33 +000045\begin{funcdesc}{clear_history}{}
46Clear the current history. (Note: this function is not available if
47the installed version of GNU readline doesn't support it.)
48\versionadded{2.4}
49\end{funcdesc}
50
Skip Montanaro7cb15242000-07-19 16:56:26 +000051\begin{funcdesc}{get_history_length}{}
52Return the desired length of the history file. Negative values imply
53unlimited history file size.
54\end{funcdesc}
55
56\begin{funcdesc}{set_history_length}{length}
57Set the number of lines to save in the history file.
Fred Drake3fe9a982000-08-09 14:37:05 +000058\function{write_history_file()} uses this value to truncate the
59history file when saving. Negative values imply unlimited history
60file size.
Skip Montanaro7cb15242000-07-19 16:56:26 +000061\end{funcdesc}
62
Phillip J. Eby5068c872004-05-04 19:20:22 +000063\begin{funcdesc}{get_current_history_length}{}
64Return the number of lines currently in the history. (This is different
65from \function{get_history_length()}, which returns the maximum number of
66lines that will be written to a history file.) \versionadded{2.3}
67\end{funcdesc}
68
69\begin{funcdesc}{get_history_item}{index}
70Return the current contents of history item at \var{index}.
71\versionadded{2.3}
72\end{funcdesc}
73
74\begin{funcdesc}{redisplay}{}
75Change what's displayed on the screen to reflect the current contents
76of the line buffer. \versionadded{2.3}
77\end{funcdesc}
78
Martin v. Löwis0daad592001-09-30 21:09:59 +000079\begin{funcdesc}{set_startup_hook}{\optional{function}}
80Set or remove the startup_hook function. If \var{function} is specified,
81it will be used as the new startup_hook function; if omitted or
82\code{None}, any hook function already installed is removed. The
83startup_hook function is called with no arguments just
84before readline prints the first prompt.
85\end{funcdesc}
86
87\begin{funcdesc}{set_pre_input_hook}{\optional{function}}
88Set or remove the pre_input_hook function. If \var{function} is specified,
89it will be used as the new pre_input_hook function; if omitted or
90\code{None}, any hook function already installed is removed. The
91pre_input_hook function is called with no arguments after the first prompt
92has been printed and just before readline starts reading input characters.
93\end{funcdesc}
94
Skip Montanaro510ca1d2000-07-06 03:25:26 +000095\begin{funcdesc}{set_completer}{\optional{function}}
Fred Drake905dc552001-08-01 21:42:45 +000096Set or remove the completer function. If \var{function} is specified,
97it will be used as the new completer function; if omitted or
98\code{None}, any completer function already installed is removed. The
99completer function is called as \code{\var{function}(\var{text},
100\var{state})}, for \var{state} in \code{0}, \code{1}, \code{2}, ...,
101until it returns a non-string value. It should return the next
102possible completion starting with \var{text}.
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000103\end{funcdesc}
104
Neal Norwitzb7d1d3c2003-02-21 18:57:05 +0000105\begin{funcdesc}{get_completer}{}
Michael W. Hudsonf5dd7532003-02-21 20:11:09 +0000106Get the completer function, or \code{None} if no completer function
107has been set. \versionadded{2.3}
Neal Norwitzb7d1d3c2003-02-21 18:57:05 +0000108\end{funcdesc}
109
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000110\begin{funcdesc}{get_begidx}{}
111Get the beginning index of the readline tab-completion scope.
112\end{funcdesc}
113
114\begin{funcdesc}{get_endidx}{}
115Get the ending index of the readline tab-completion scope.
116\end{funcdesc}
117
118\begin{funcdesc}{set_completer_delims}{string}
119Set the readline word delimiters for tab-completion.
120\end{funcdesc}
121
122\begin{funcdesc}{get_completer_delims}{}
123Get the readline word delimiters for tab-completion.
124\end{funcdesc}
125
Guido van Rossumb6c1d522001-10-19 01:18:43 +0000126\begin{funcdesc}{add_history}{line}
127Append a line to the history buffer, as if it was the last line typed.
128\end{funcdesc}
129
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000130
131\begin{seealso}
Fred Drake3c62d9e2000-07-06 04:51:04 +0000132 \seemodule{rlcompleter}{Completion of Python identifiers at the
133 interactive prompt.}
Skip Montanaro510ca1d2000-07-06 03:25:26 +0000134\end{seealso}
Fred Drake3c62d9e2000-07-06 04:51:04 +0000135
136
137\subsection{Example \label{readline-example}}
138
139The following example demonstrates how to use the
140\module{readline} module's history reading and writing functions to
141automatically load and save a history file named \file{.pyhist} from
142the user's home directory. The code below would normally be executed
143automatically during interactive sessions from the user's
144\envvar{PYTHONSTARTUP} file.
145
146\begin{verbatim}
147import os
148histfile = os.path.join(os.environ["HOME"], ".pyhist")
149try:
150 readline.read_history_file(histfile)
151except IOError:
152 pass
153import atexit
154atexit.register(readline.write_history_file, histfile)
155del os, histfile
156\end{verbatim}
Skip Montanaro0dc23102004-05-23 17:46:50 +0000157
Skip Montanarob98a8ba2004-05-23 19:06:41 +0000158The following example extends the \class{code.InteractiveConsole} class to
Skip Montanaro79cddc52004-05-24 14:20:16 +0000159support history save/restore.
Skip Montanarob98a8ba2004-05-23 19:06:41 +0000160
161\begin{verbatim}
162import code
163import readline
164import atexit
165import os
166
167class HistoryConsole(code.InteractiveConsole):
168 def __init__(self, locals=None, filename="<console>",
169 histfile=os.path.expanduser("~/.console-history")):
170 code.InteractiveConsole.__init__(self)
171 self.init_history(histfile)
172
173 def init_history(self, histfile):
174 readline.parse_and_bind("tab: complete")
175 if hasattr(readline, "read_history_file"):
176 try:
177 readline.read_history_file(histfile)
178 except IOError:
179 pass
180 atexit.register(self.save_history, histfile)
181
Skip Montanarob98a8ba2004-05-23 19:06:41 +0000182 def save_history(self, histfile):
183 readline.write_history_file(histfile)
184\end{verbatim}