blob: 64c61a27501c75a850a660536a9155d18afd4c09 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`readline` --- GNU readline interface
2==========================================
3
4.. module:: readline
5 :platform: Unix
6 :synopsis: GNU readline support for Python.
Skip Montanaro54662462007-12-08 15:26:16 +00007.. sectionauthor:: Skip Montanaro <skip@pobox.com>
Georg Brandl8ec7f652007-08-15 14:28:01 +00008
9
10The :mod:`readline` module defines a number of functions to facilitate
11completion and reading/writing of history files from the Python interpreter.
12This module can be used directly or via the :mod:`rlcompleter` module. Settings
13made using this module affect the behaviour of both the interpreter's
14interactive prompt and the prompts offered by the :func:`raw_input` and
15:func:`input` built-in functions.
16
Ezio Melotti81982562010-01-04 09:00:11 +000017.. note::
Ronald Oussoren9f20d9d2009-09-20 14:18:15 +000018
19 On MacOS X the :mod:`readline` module can be implemented using
20 the ``libedit`` library instead of GNU readline.
21
22 The configuration file for ``libedit`` is different from that
Georg Brandl09302282010-10-06 09:32:48 +000023 of GNU readline. If you programmatically load configuration strings
Ronald Oussoren9f20d9d2009-09-20 14:18:15 +000024 you can check for the text "libedit" in :const:`readline.__doc__`
25 to differentiate between GNU readline and libedit.
26
27
Georg Brandl8ec7f652007-08-15 14:28:01 +000028The :mod:`readline` module defines the following functions:
29
30
31.. function:: parse_and_bind(string)
32
33 Parse and execute single line of a readline init file.
34
35
36.. function:: get_line_buffer()
37
38 Return the current contents of the line buffer.
39
40
41.. function:: insert_text(string)
42
43 Insert text into the command line.
44
45
46.. function:: read_init_file([filename])
47
48 Parse a readline initialization file. The default filename is the last filename
49 used.
50
51
52.. function:: read_history_file([filename])
53
54 Load a readline history file. The default filename is :file:`~/.history`.
55
56
57.. function:: write_history_file([filename])
58
59 Save a readline history file. The default filename is :file:`~/.history`.
60
61
62.. function:: clear_history()
63
64 Clear the current history. (Note: this function is not available if the
65 installed version of GNU readline doesn't support it.)
66
67 .. versionadded:: 2.4
68
69
70.. function:: get_history_length()
71
72 Return the desired length of the history file. Negative values imply unlimited
73 history file size.
74
75
76.. function:: set_history_length(length)
77
78 Set the number of lines to save in the history file. :func:`write_history_file`
79 uses this value to truncate the history file when saving. Negative values imply
80 unlimited history file size.
81
82
83.. function:: get_current_history_length()
84
85 Return the number of lines currently in the history. (This is different from
86 :func:`get_history_length`, which returns the maximum number of lines that will
87 be written to a history file.)
88
89 .. versionadded:: 2.3
90
91
92.. function:: get_history_item(index)
93
94 Return the current contents of history item at *index*.
95
96 .. versionadded:: 2.3
97
98
99.. function:: remove_history_item(pos)
100
101 Remove history item specified by its position from the history.
102
103 .. versionadded:: 2.4
104
105
106.. function:: replace_history_item(pos, line)
107
108 Replace history item specified by its position with the given line.
109
110 .. versionadded:: 2.4
111
112
113.. function:: redisplay()
114
115 Change what's displayed on the screen to reflect the current contents of the
116 line buffer.
117
118 .. versionadded:: 2.3
119
120
121.. function:: set_startup_hook([function])
122
123 Set or remove the startup_hook function. If *function* is specified, it will be
124 used as the new startup_hook function; if omitted or ``None``, any hook function
125 already installed is removed. The startup_hook function is called with no
126 arguments just before readline prints the first prompt.
127
128
129.. function:: set_pre_input_hook([function])
130
131 Set or remove the pre_input_hook function. If *function* is specified, it will
132 be used as the new pre_input_hook function; if omitted or ``None``, any hook
133 function already installed is removed. The pre_input_hook function is called
134 with no arguments after the first prompt has been printed and just before
135 readline starts reading input characters.
136
137
138.. function:: set_completer([function])
139
140 Set or remove the completer function. If *function* is specified, it will be
141 used as the new completer function; if omitted or ``None``, any completer
142 function already installed is removed. The completer function is called as
143 ``function(text, state)``, for *state* in ``0``, ``1``, ``2``, ..., until it
144 returns a non-string value. It should return the next possible completion
145 starting with *text*.
146
147
148.. function:: get_completer()
149
150 Get the completer function, or ``None`` if no completer function has been set.
151
152 .. versionadded:: 2.3
153
154
Martin v. Löwis58bd49f2007-09-04 13:13:14 +0000155.. function:: get_completion_type()
156
157 Get the type of completion being attempted.
158
159 .. versionadded:: 2.6
160
Georg Brandl8ec7f652007-08-15 14:28:01 +0000161.. function:: get_begidx()
162
163 Get the beginning index of the readline tab-completion scope.
164
165
166.. function:: get_endidx()
167
168 Get the ending index of the readline tab-completion scope.
169
170
171.. function:: set_completer_delims(string)
172
173 Set the readline word delimiters for tab-completion.
174
175
176.. function:: get_completer_delims()
177
178 Get the readline word delimiters for tab-completion.
179
Martin v. Löwis58bd49f2007-09-04 13:13:14 +0000180.. function:: set_completion_display_matches_hook([function])
181
182 Set or remove the completion display function. If *function* is
183 specified, it will be used as the new completion display function;
184 if omitted or ``None``, any completion display function already
185 installed is removed. The completion display function is called as
186 ``function(substitution, [matches], longest_match_length)`` once
187 each time matches need to be displayed.
188
189 .. versionadded:: 2.6
Georg Brandl8ec7f652007-08-15 14:28:01 +0000190
191.. function:: add_history(line)
192
193 Append a line to the history buffer, as if it was the last line typed.
194
Georg Brandl8ec7f652007-08-15 14:28:01 +0000195.. seealso::
196
197 Module :mod:`rlcompleter`
198 Completion of Python identifiers at the interactive prompt.
199
200
201.. _readline-example:
202
203Example
204-------
205
206The following example demonstrates how to use the :mod:`readline` module's
207history reading and writing functions to automatically load and save a history
208file named :file:`.pyhist` from the user's home directory. The code below would
209normally be executed automatically during interactive sessions from the user's
210:envvar:`PYTHONSTARTUP` file. ::
211
212 import os
Georg Brandldb235c12010-10-06 09:33:55 +0000213 import readline
Éric Araujo8bea9a52011-03-26 01:24:47 +0100214 histfile = os.path.join(os.path.expanduser("~"), ".pyhist")
Georg Brandl8ec7f652007-08-15 14:28:01 +0000215 try:
216 readline.read_history_file(histfile)
217 except IOError:
218 pass
219 import atexit
220 atexit.register(readline.write_history_file, histfile)
221 del os, histfile
222
223The following example extends the :class:`code.InteractiveConsole` class to
224support history save/restore. ::
225
226 import code
227 import readline
228 import atexit
229 import os
230
231 class HistoryConsole(code.InteractiveConsole):
232 def __init__(self, locals=None, filename="<console>",
233 histfile=os.path.expanduser("~/.console-history")):
Georg Brandlb29709a2009-09-16 09:24:57 +0000234 code.InteractiveConsole.__init__(self, locals, filename)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000235 self.init_history(histfile)
236
237 def init_history(self, histfile):
238 readline.parse_and_bind("tab: complete")
239 if hasattr(readline, "read_history_file"):
240 try:
241 readline.read_history_file(histfile)
242 except IOError:
243 pass
244 atexit.register(self.save_history, histfile)
245
246 def save_history(self, histfile):
247 readline.write_history_file(histfile)
248