]>
Commit | Line | Data |
---|---|---|
726f6388 JA |
1 | @comment %**start of header (This is for running Texinfo on a region.) |
2 | @setfilename rltech.info | |
3 | @comment %**end of header (This is for running Texinfo on a region.) | |
726f6388 JA |
4 | |
5 | @ifinfo | |
6 | This document describes the GNU Readline Library, a utility for aiding | |
95732b49 | 7 | in the consistency of user interface across discrete programs that need |
726f6388 JA |
8 | to provide a command line interface. |
9 | ||
b8c60bc9 | 10 | Copyright (C) 1988--2025 Free Software Foundation, Inc. |
726f6388 JA |
11 | |
12 | Permission is granted to make and distribute verbatim copies of | |
13 | this manual provided the copyright notice and this permission notice | |
14 | pare preserved on all copies. | |
15 | ||
16 | @ignore | |
17 | Permission is granted to process this file through TeX and print the | |
18 | results, provided the printed document carries copying permission | |
19 | notice identical to this one except for the removal of this paragraph | |
20 | (this paragraph not being relevant to the printed manual). | |
21 | @end ignore | |
22 | ||
23 | Permission is granted to copy and distribute modified versions of this | |
24 | manual under the conditions for verbatim copying, provided that the entire | |
25 | resulting derived work is distributed under the terms of a permission | |
26 | notice identical to this one. | |
27 | ||
28 | Permission is granted to copy and distribute translations of this manual | |
29 | into another language, under the above conditions for modified versions, | |
30 | except that this permission notice may be stated in a translation approved | |
31 | by the Foundation. | |
32 | @end ifinfo | |
33 | ||
34 | @node Programming with GNU Readline | |
35 | @chapter Programming with GNU Readline | |
36 | ||
28ef6c31 | 37 | This chapter describes the interface between the @sc{gnu} Readline Library and |
726f6388 | 38 | other programs. If you are a programmer, and you wish to include the |
28ef6c31 | 39 | features found in @sc{gnu} Readline |
726f6388 JA |
40 | such as completion, line editing, and interactive history manipulation |
41 | in your own programs, this section is for you. | |
42 | ||
43 | @menu | |
44 | * Basic Behavior:: Using the default behavior of Readline. | |
45 | * Custom Functions:: Adding your own functions to Readline. | |
46 | * Readline Variables:: Variables accessible to custom | |
47 | functions. | |
48 | * Readline Convenience Functions:: Functions which Readline supplies to | |
b72432fd JA |
49 | aid in writing your own custom |
50 | functions. | |
51 | * Readline Signal Handling:: How Readline behaves when it receives signals. | |
726f6388 JA |
52 | * Custom Completers:: Supplanting or supplementing Readline's |
53 | completion functions. | |
54 | @end menu | |
55 | ||
56 | @node Basic Behavior | |
57 | @section Basic Behavior | |
58 | ||
59 | Many programs provide a command line interface, such as @code{mail}, | |
b8c60bc9 CR |
60 | @code{ftp}, and @code{sh}. |
61 | For such programs, the default behavior of Readline is sufficient. | |
62 | This section describes how to use Readline in | |
726f6388 | 63 | the simplest way possible, perhaps to replace calls in your code to |
b8c60bc9 | 64 | @code{fgets()}. |
726f6388 JA |
65 | |
66 | @findex readline | |
67 | @cindex readline, function | |
28ef6c31 JA |
68 | |
69 | The function @code{readline()} prints a prompt @var{prompt} | |
70 | and then reads and returns a single line of text from the user. | |
b8c60bc9 CR |
71 | Since it's possible to enter characters into the line while quoting |
72 | them to disable any Readline editing function they might normally have, | |
73 | this line may include embedded newlines and other special characters. | |
74 | If @var{prompt} is @code{NULL} or the empty string, | |
75 | @code{readline()} does not display a prompt. | |
76 | The line @code{readline()} returns is allocated with @code{malloc()}; | |
28ef6c31 JA |
77 | the caller should @code{free()} the line when it has finished with it. |
78 | The declaration for @code{readline} in ANSI C is | |
726f6388 JA |
79 | |
80 | @example | |
28ef6c31 | 81 | @code{char *readline (const char *@var{prompt});} |
726f6388 JA |
82 | @end example |
83 | ||
84 | @noindent | |
85 | So, one might say | |
86 | @example | |
87 | @code{char *line = readline ("Enter a line: ");} | |
88 | @end example | |
89 | @noindent | |
90 | in order to read a line of text from the user. | |
91 | The line returned has the final newline removed, so only the | |
92 | text remains. | |
b8c60bc9 | 93 | This means that lines consisting of a newline return the empty string. |
726f6388 | 94 | |
b8c60bc9 CR |
95 | If Readline encounters an @code{EOF} while reading the line, |
96 | and the line is empty at that point, | |
97 | then @code{readline()} returns @code{(char *)NULL}. | |
726f6388 JA |
98 | Otherwise, the line is ended just as if a newline had been typed. |
99 | ||
d233b485 | 100 | Readline performs some expansion on the @var{prompt} before it is |
b8c60bc9 CR |
101 | displayed on the screen. |
102 | See the description of @code{rl_expand_prompt} | |
d233b485 CR |
103 | (@pxref{Redisplay}) for additional details, especially if @var{prompt} |
104 | will contain characters that do not consume physical screen space when | |
105 | displayed. | |
106 | ||
726f6388 | 107 | If you want the user to be able to get at the line later, (with |
28ef6c31 | 108 | @key{C-p} for example), you must call @code{add_history()} to save the |
726f6388 JA |
109 | line away in a @dfn{history} list of such lines. |
110 | ||
111 | @example | |
112 | @code{add_history (line)}; | |
113 | @end example | |
114 | ||
115 | @noindent | |
116 | For full details on the GNU History Library, see the associated manual. | |
117 | ||
118 | It is preferable to avoid saving empty lines on the history list, since | |
b8c60bc9 CR |
119 | users rarely have a burning need to reuse a blank line. |
120 | Here is a function which usefully replaces the standard @code{gets()} library | |
726f6388 JA |
121 | function, and has the advantage of no static buffer to overflow: |
122 | ||
123 | @example | |
124 | /* A static variable for holding the line. */ | |
125 | static char *line_read = (char *)NULL; | |
126 | ||
7117c2d2 JA |
127 | /* Read a string, and return a pointer to it. |
128 | Returns NULL on EOF. */ | |
726f6388 JA |
129 | char * |
130 | rl_gets () | |
131 | @{ | |
7117c2d2 JA |
132 | /* If the buffer has already been allocated, |
133 | return the memory to the free pool. */ | |
726f6388 JA |
134 | if (line_read) |
135 | @{ | |
136 | free (line_read); | |
137 | line_read = (char *)NULL; | |
138 | @} | |
139 | ||
140 | /* Get a line from the user. */ | |
141 | line_read = readline (""); | |
142 | ||
7117c2d2 JA |
143 | /* If the line has any text in it, |
144 | save it on the history. */ | |
726f6388 JA |
145 | if (line_read && *line_read) |
146 | add_history (line_read); | |
147 | ||
148 | return (line_read); | |
149 | @} | |
150 | @end example | |
151 | ||
b8c60bc9 CR |
152 | This function gives the user the default behavior of @key{TAB} |
153 | completion: filename completion. | |
154 | If you do not want Readline to | |
155 | complete filenames, you can change the binding of the @key{TAB} key | |
28ef6c31 | 156 | with @code{rl_bind_key()}. |
726f6388 JA |
157 | |
158 | @example | |
28ef6c31 | 159 | @code{int rl_bind_key (int @var{key}, rl_command_func_t *@var{function});} |
726f6388 JA |
160 | @end example |
161 | ||
28ef6c31 | 162 | @code{rl_bind_key()} takes two arguments: @var{key} is the character that |
726f6388 | 163 | you want to bind, and @var{function} is the address of the function to |
b8c60bc9 CR |
164 | call when @var{key} is pressed. |
165 | Binding @key{TAB} to @code{rl_insert()} makes @key{TAB} insert itself. | |
28ef6c31 | 166 | @code{rl_bind_key()} returns non-zero if @var{key} is not a valid |
726f6388 JA |
167 | ASCII character code (between 0 and 255). |
168 | ||
169 | Thus, to disable the default @key{TAB} behavior, the following suffices: | |
170 | @example | |
171 | @code{rl_bind_key ('\t', rl_insert);} | |
172 | @end example | |
173 | ||
174 | This code should be executed once at the start of your program; you | |
28ef6c31 | 175 | might write a function called @code{initialize_readline()} which |
726f6388 JA |
176 | performs this and other desired initializations, such as installing |
177 | custom completers (@pxref{Custom Completers}). | |
178 | ||
179 | @node Custom Functions | |
180 | @section Custom Functions | |
181 | ||
182 | Readline provides many functions for manipulating the text of | |
183 | the line, but it isn't possible to anticipate the needs of all | |
b8c60bc9 CR |
184 | programs. |
185 | This section describes the various functions and variables | |
186 | defined within the Readline library which allow a program to add | |
726f6388 JA |
187 | customized functionality to Readline. |
188 | ||
bb70624e JA |
189 | Before declaring any functions that customize Readline's behavior, or |
190 | using any functionality Readline provides in other code, an | |
191 | application writer should include the file @code{<readline/readline.h>} | |
b8c60bc9 CR |
192 | in any file that uses Readline's features. |
193 | Since some of the definitions | |
194 | in @code{readline.h} use the @code{stdio} library, the program | |
195 | should include the file @code{<stdio.h>} | |
196 | before @code{readline.h}. | |
bb70624e | 197 | |
f73dda09 JA |
198 | @code{readline.h} defines a C preprocessor variable that should |
199 | be treated as an integer, @code{RL_READLINE_VERSION}, which may | |
200 | be used to conditionally compile application code depending on | |
b8c60bc9 CR |
201 | the installed Readline version. |
202 | The value is a hexadecimal | |
f73dda09 JA |
203 | encoding of the major and minor version numbers of the library, |
204 | of the form 0x@var{MMmm}. @var{MM} is the two-digit major | |
205 | version number; @var{mm} is the two-digit minor version number. | |
206 | For Readline 4.2, for example, the value of | |
207 | @code{RL_READLINE_VERSION} would be @code{0x0402}. | |
208 | ||
726f6388 | 209 | @menu |
28ef6c31 | 210 | * Readline Typedefs:: C declarations to make code readable. |
726f6388 JA |
211 | * Function Writing:: Variables and calling conventions. |
212 | @end menu | |
213 | ||
28ef6c31 JA |
214 | @node Readline Typedefs |
215 | @subsection Readline Typedefs | |
726f6388 | 216 | |
ac50fbac | 217 | For readability, we declare a number of new object types, all pointers |
28ef6c31 | 218 | to functions. |
726f6388 | 219 | |
28ef6c31 JA |
220 | The reason for declaring these new types is to make it easier to write |
221 | code describing pointers to C functions with appropriately prototyped | |
222 | arguments and return values. | |
726f6388 | 223 | |
28ef6c31 JA |
224 | For instance, say we want to declare a variable @var{func} as a pointer |
225 | to a function which takes two @code{int} arguments and returns an | |
226 | @code{int} (this is the type of all of the Readline bindable functions). | |
227 | Instead of the classic C declaration | |
726f6388 | 228 | |
28ef6c31 | 229 | @code{int (*func)();} |
726f6388 JA |
230 | |
231 | @noindent | |
28ef6c31 | 232 | or the ANSI-C style declaration |
726f6388 | 233 | |
28ef6c31 | 234 | @code{int (*func)(int, int);} |
726f6388 JA |
235 | |
236 | @noindent | |
28ef6c31 | 237 | we may write |
726f6388 | 238 | |
28ef6c31 | 239 | @code{rl_command_func_t *func;} |
726f6388 | 240 | |
28ef6c31 JA |
241 | The full list of function pointer types available is |
242 | ||
243 | @table @code | |
244 | @item typedef int rl_command_func_t (int, int); | |
245 | ||
246 | @item typedef char *rl_compentry_func_t (const char *, int); | |
247 | ||
248 | @item typedef char **rl_completion_func_t (const char *, int, int); | |
249 | ||
250 | @item typedef char *rl_quote_func_t (char *, int, char *); | |
251 | ||
252 | @item typedef char *rl_dequote_func_t (char *, int); | |
253 | ||
254 | @item typedef int rl_compignore_func_t (char **); | |
255 | ||
256 | @item typedef void rl_compdisp_func_t (char **, int, int); | |
257 | ||
b8c60bc9 CR |
258 | @item typedef void rl_macro_print_func_t (const char *, const char *, int, const char *); |
259 | ||
28ef6c31 JA |
260 | @item typedef int rl_hook_func_t (void); |
261 | ||
262 | @item typedef int rl_getc_func_t (FILE *); | |
263 | ||
264 | @item typedef int rl_linebuf_func_t (char *, int); | |
265 | ||
266 | @item typedef int rl_intfunc_t (int); | |
267 | @item #define rl_ivoidfunc_t rl_hook_func_t | |
268 | @item typedef int rl_icpfunc_t (char *); | |
269 | @item typedef int rl_icppfunc_t (char **); | |
270 | ||
271 | @item typedef void rl_voidfunc_t (void); | |
272 | @item typedef void rl_vintfunc_t (int); | |
273 | @item typedef void rl_vcpfunc_t (char *); | |
274 | @item typedef void rl_vcppfunc_t (char **); | |
275 | ||
276 | @end table | |
726f6388 | 277 | |
b8c60bc9 CR |
278 | @noindent |
279 | The @file{rltypedefs.h} file has more documentation for these types. | |
280 | ||
726f6388 JA |
281 | @node Function Writing |
282 | @subsection Writing a New Function | |
283 | ||
284 | In order to write new functions for Readline, you need to know the | |
285 | calling conventions for keyboard-invoked functions, and the names of the | |
286 | variables that describe the current state of the line read so far. | |
287 | ||
288 | The calling sequence for a command @code{foo} looks like | |
289 | ||
290 | @example | |
7117c2d2 | 291 | @code{int foo (int count, int key)} |
726f6388 JA |
292 | @end example |
293 | ||
294 | @noindent | |
295 | where @var{count} is the numeric argument (or 1 if defaulted) and | |
296 | @var{key} is the key that invoked this function. | |
297 | ||
298 | It is completely up to the function as to what should be done with the | |
b8c60bc9 CR |
299 | numeric argument. |
300 | Some functions use it as a repeat count, some | |
726f6388 | 301 | as a flag, and others to choose alternate behavior (refreshing the current |
b8c60bc9 CR |
302 | line as opposed to refreshing the screen, for example). |
303 | Some choose to ignore it. | |
304 | In general, if a | |
726f6388 JA |
305 | function uses the numeric argument as a repeat count, it should be able |
306 | to do something useful with both negative and positive arguments. | |
307 | At the very least, it should be aware that it can be passed a | |
308 | negative argument. | |
309 | ||
7117c2d2 | 310 | A command function should return 0 if its action completes successfully, |
a0c0a00f | 311 | and a value greater than zero if some error occurs. |
b8c60bc9 CR |
312 | All of the builtin Readline bindable command functions |
313 | obey this convention. | |
7117c2d2 | 314 | |
726f6388 JA |
315 | @node Readline Variables |
316 | @section Readline Variables | |
317 | ||
318 | These variables are available to function writers. | |
319 | ||
320 | @deftypevar {char *} rl_line_buffer | |
b8c60bc9 CR |
321 | This is the line gathered so far. |
322 | You are welcome to modify the contents of the line, | |
323 | but see @ref{Allowing Undoing}. | |
324 | The function @code{rl_extend_line_buffer} will increase | |
bb70624e | 325 | the memory allocated to @code{rl_line_buffer}. |
726f6388 JA |
326 | @end deftypevar |
327 | ||
328 | @deftypevar int rl_point | |
329 | The offset of the current cursor position in @code{rl_line_buffer} | |
330 | (the @emph{point}). | |
331 | @end deftypevar | |
332 | ||
333 | @deftypevar int rl_end | |
b8c60bc9 CR |
334 | The number of characters present in @code{rl_line_buffer}. |
335 | When @code{rl_point} is at the end of the line, | |
336 | @code{rl_point} and @code{rl_end} are equal. | |
726f6388 JA |
337 | @end deftypevar |
338 | ||
339 | @deftypevar int rl_mark | |
b8c60bc9 CR |
340 | The @var{mark} (saved position) in the current line. |
341 | If set, the mark and point define a @emph{region}. | |
342 | Some Readline commands set the mark as part of operating; | |
343 | users can also set the mark explicitly. | |
726f6388 JA |
344 | @end deftypevar |
345 | ||
346 | @deftypevar int rl_done | |
347 | Setting this to a non-zero value causes Readline to return the current | |
348 | line immediately. | |
74091dd4 CR |
349 | Readline will set this variable when it has read a key sequence bound |
350 | to @code{accept-line} and is about to return the line to the caller. | |
351 | @end deftypevar | |
352 | ||
353 | @deftypevar int rl_eof_found | |
b8c60bc9 CR |
354 | Readline will set this variable when it has read an EOF character |
355 | (e.g., the stty @samp{EOF} character) on an empty line | |
356 | or has encountered a read error or EOF and | |
74091dd4 | 357 | is about to return a NULL line to the caller. |
726f6388 JA |
358 | @end deftypevar |
359 | ||
28ef6c31 JA |
360 | @deftypevar int rl_num_chars_to_read |
361 | Setting this to a positive value before calling @code{readline()} causes | |
362 | Readline to return after accepting that many characters, rather | |
363 | than reading up to a character bound to @code{accept-line}. | |
364 | @end deftypevar | |
365 | ||
726f6388 | 366 | @deftypevar int rl_pending_input |
b8c60bc9 CR |
367 | Setting this to a value makes it the next keystroke read. |
368 | This is a way to stuff a single character into the input stream. | |
726f6388 JA |
369 | @end deftypevar |
370 | ||
28ef6c31 JA |
371 | @deftypevar int rl_dispatching |
372 | Set to a non-zero value if a function is being called from a key binding; | |
b8c60bc9 CR |
373 | zero otherwise. |
374 | Application functions can test this to discover whether | |
28ef6c31 JA |
375 | they were called directly or by Readline's dispatching mechanism. |
376 | @end deftypevar | |
377 | ||
b72432fd JA |
378 | @deftypevar int rl_erase_empty_line |
379 | Setting this to a non-zero value causes Readline to completely erase | |
380 | the current line, including any prompt, any time a newline is typed as | |
b8c60bc9 CR |
381 | the only character on an otherwise-empty line. |
382 | This moves the cursor to the beginning of the newly-blank line. | |
b72432fd JA |
383 | @end deftypevar |
384 | ||
726f6388 | 385 | @deftypevar {char *} rl_prompt |
b8c60bc9 CR |
386 | The prompt Readline uses. |
387 | This is set from the argument to | |
28ef6c31 JA |
388 | @code{readline()}, and should not be assigned to directly. |
389 | The @code{rl_set_prompt()} function (@pxref{Redisplay}) may | |
390 | be used to modify the prompt string after calling @code{readline()}. | |
b8c60bc9 CR |
391 | Readline performs some prompt expansions and analyzes the prompt for |
392 | line breaks, so @code{rl_set_prompt()} is preferred. | |
726f6388 JA |
393 | @end deftypevar |
394 | ||
3185942a | 395 | @deftypevar {char *} rl_display_prompt |
b8c60bc9 CR |
396 | The string displayed as the prompt. |
397 | This is usually identical to | |
3185942a JA |
398 | @var{rl_prompt}, but may be changed temporarily by functions that |
399 | use the prompt string as a message area, such as incremental search. | |
400 | @end deftypevar | |
401 | ||
bb70624e JA |
402 | @deftypevar int rl_already_prompted |
403 | If an application wishes to display the prompt itself, rather than have | |
404 | Readline do it the first time @code{readline()} is called, it should set | |
405 | this variable to a non-zero value after displaying the prompt. | |
406 | The prompt must also be passed as the argument to @code{readline()} so | |
407 | the redisplay functions can update the display properly. | |
408 | The calling application is responsible for managing the value; Readline | |
409 | never sets it. | |
410 | @end deftypevar | |
411 | ||
28ef6c31 | 412 | @deftypevar {const char *} rl_library_version |
b8c60bc9 CR |
413 | The version number of this revision of the Readline library, as a string |
414 | (e.g., "4.2"). | |
ccc6cda3 JA |
415 | @end deftypevar |
416 | ||
b8c60bc9 CR |
417 | @deftypevar {int} rl_readline_version |
418 | An integer encoding the current version of the library. | |
419 | The encoding is of the form 0x@var{MMmm}, | |
420 | where @var{MM} is the two-digit major version number, | |
421 | and @var{mm} is the two-digit minor version number. | |
f73dda09 JA |
422 | For example, for Readline-4.2, @code{rl_readline_version} would have the |
423 | value 0x0402. | |
424 | @end deftypevar | |
425 | ||
28ef6c31 | 426 | @deftypevar {int} rl_gnu_readline_p |
74091dd4 | 427 | Always set to 1, denoting that this is @sc{gnu} Readline rather than some |
28ef6c31 | 428 | emulation. |
726f6388 JA |
429 | @end deftypevar |
430 | ||
28ef6c31 | 431 | @deftypevar {const char *} rl_terminal_name |
b8c60bc9 CR |
432 | The terminal type, used for initialization. |
433 | If not set by the application, | |
28ef6c31 JA |
434 | Readline sets this to the value of the @env{TERM} environment variable |
435 | the first time it is called. | |
b8c60bc9 CR |
436 | Readline uses this to look up the terminal capabilities it needs in |
437 | the terminfo database. | |
28ef6c31 JA |
438 | @end deftypevar |
439 | ||
440 | @deftypevar {const char *} rl_readline_name | |
726f6388 JA |
441 | This variable is set to a unique name by each application using Readline. |
442 | The value allows conditional parsing of the inputrc file | |
443 | (@pxref{Conditional Init Constructs}). | |
444 | @end deftypevar | |
445 | ||
446 | @deftypevar {FILE *} rl_instream | |
447 | The stdio stream from which Readline reads input. | |
7117c2d2 | 448 | If @code{NULL}, Readline defaults to @var{stdin}. |
726f6388 JA |
449 | @end deftypevar |
450 | ||
451 | @deftypevar {FILE *} rl_outstream | |
452 | The stdio stream to which Readline performs output. | |
7117c2d2 | 453 | If @code{NULL}, Readline defaults to @var{stdout}. |
726f6388 JA |
454 | @end deftypevar |
455 | ||
95732b49 JA |
456 | @deftypevar int rl_prefer_env_winsize |
457 | If non-zero, Readline gives values found in the @env{LINES} and | |
458 | @env{COLUMNS} environment variables greater precedence than values fetched | |
459 | from the kernel when computing the screen dimensions. | |
460 | @end deftypevar | |
461 | ||
28ef6c31 | 462 | @deftypevar {rl_command_func_t *} rl_last_func |
b8c60bc9 CR |
463 | The address of the last command function Readline executed. |
464 | This may be used to test whether or not a function is being executed | |
465 | twice in succession, for example. | |
28ef6c31 JA |
466 | @end deftypevar |
467 | ||
468 | @deftypevar {rl_hook_func_t *} rl_startup_hook | |
726f6388 | 469 | If non-zero, this is the address of a function to call just |
b8c60bc9 | 470 | before Readline prints the first prompt. |
726f6388 JA |
471 | @end deftypevar |
472 | ||
28ef6c31 | 473 | @deftypevar {rl_hook_func_t *} rl_pre_input_hook |
b72432fd | 474 | If non-zero, this is the address of a function to call after |
b8c60bc9 | 475 | the first prompt has been printed and just before Readline |
b72432fd JA |
476 | starts reading input characters. |
477 | @end deftypevar | |
478 | ||
28ef6c31 | 479 | @deftypevar {rl_hook_func_t *} rl_event_hook |
726f6388 | 480 | If non-zero, this is the address of a function to call periodically |
28ef6c31 JA |
481 | when Readline is waiting for terminal input. |
482 | By default, this will be called at most ten times a second if there | |
483 | is no keyboard input. | |
726f6388 JA |
484 | @end deftypevar |
485 | ||
28ef6c31 JA |
486 | @deftypevar {rl_getc_func_t *} rl_getc_function |
487 | If non-zero, Readline will call indirectly through this pointer | |
b8c60bc9 CR |
488 | to get a character from the input stream. |
489 | By default, it is set to @code{rl_getc}, the Readline character | |
490 | input function (@pxref{Character Input}). | |
ac50fbac CR |
491 | In general, an application that sets @var{rl_getc_function} should consider |
492 | setting @var{rl_input_available_hook} as well. | |
493 | @end deftypevar | |
494 | ||
495 | @deftypevar {rl_hook_func_t *} rl_signal_event_hook | |
496 | If non-zero, this is the address of a function to call if a read system | |
b8c60bc9 | 497 | call is interrupted by a signal when Readline is reading terminal input. |
ac50fbac CR |
498 | @end deftypevar |
499 | ||
74091dd4 CR |
500 | @deftypevar {rl_hook_func_t *} rl_timeout_event_hook |
501 | If non-zero, this is the address of a function to call if Readline times | |
502 | out while reading input. | |
503 | @end deftypevar | |
504 | ||
ac50fbac CR |
505 | @deftypevar {rl_hook_func_t *} rl_input_available_hook |
506 | If non-zero, Readline will use this function's return value when it needs | |
507 | to determine whether or not there is available input on the current input | |
508 | source. | |
509 | The default hook checks @code{rl_instream}; if an application is using a | |
510 | different input source, it should set the hook appropriately. | |
511 | Readline queries for available input when implementing intra-key-sequence | |
512 | timeouts during input and incremental searches. | |
b8c60bc9 CR |
513 | This function must return zero if there is no input available, and non-zero |
514 | if input is available. | |
ac50fbac CR |
515 | This may use an application-specific timeout before returning a value; |
516 | Readline uses the value passed to @code{rl_set_keyboard_input_timeout()} | |
517 | or the value of the user-settable @var{keyseq-timeout} variable. | |
518 | This is designed for use by applications using Readline's callback interface | |
519 | (@pxref{Alternate Interface}), which may not use the traditional | |
520 | @code{read(2)} and file descriptor interface, or other applications using | |
521 | a different input mechanism. | |
522 | If an application uses an input mechanism or hook that can potentially exceed | |
523 | the value of @var{keyseq-timeout}, it should increase the timeout or set | |
524 | this hook appropriately even when not using the callback interface. | |
525 | In general, an application that sets @var{rl_getc_function} should consider | |
526 | setting @var{rl_input_available_hook} as well. | |
ccc6cda3 JA |
527 | @end deftypevar |
528 | ||
28ef6c31 | 529 | @deftypevar {rl_voidfunc_t *} rl_redisplay_function |
b8c60bc9 | 530 | Readline will call indirectly through this pointer |
ccc6cda3 | 531 | to update the display with the current contents of the editing buffer. |
28ef6c31 | 532 | By default, it is set to @code{rl_redisplay}, the default Readline |
ccc6cda3 JA |
533 | redisplay function (@pxref{Redisplay}). |
534 | @end deftypevar | |
535 | ||
28ef6c31 JA |
536 | @deftypevar {rl_vintfunc_t *} rl_prep_term_function |
537 | If non-zero, Readline will call indirectly through this pointer | |
b8c60bc9 CR |
538 | to initialize the terminal. |
539 | The function takes a single argument, an | |
28ef6c31 JA |
540 | @code{int} flag that says whether or not to use eight-bit characters. |
541 | By default, this is set to @code{rl_prep_terminal} | |
542 | (@pxref{Terminal Management}). | |
543 | @end deftypevar | |
544 | ||
545 | @deftypevar {rl_voidfunc_t *} rl_deprep_term_function | |
546 | If non-zero, Readline will call indirectly through this pointer | |
b8c60bc9 CR |
547 | to reset the terminal. |
548 | This function should undo the effects of @code{rl_prep_term_function}. | |
28ef6c31 JA |
549 | By default, this is set to @code{rl_deprep_terminal} |
550 | (@pxref{Terminal Management}). | |
551 | @end deftypevar | |
552 | ||
b8c60bc9 CR |
553 | @deftypevar {void} rl_macro_display_hook |
554 | If set, this points to a function that @code{rl_macro_dumper} will call to | |
555 | display a key sequence bound to a macro. | |
556 | It is called with the key sequence, the "untranslated" macro value (i.e., | |
557 | with backslash escapes included, as when passed to @code{rl_macro_bind}), | |
558 | the @code{readable} argument passed to @code{rl_macro_dumper}, and any | |
559 | prefix to display before the key sequence. | |
560 | @end deftypevar | |
561 | ||
ccc6cda3 JA |
562 | @deftypevar {Keymap} rl_executing_keymap |
563 | This variable is set to the keymap (@pxref{Keymaps}) in which the | |
74091dd4 | 564 | currently executing Readline function was found. |
ccc6cda3 JA |
565 | @end deftypevar |
566 | ||
567 | @deftypevar {Keymap} rl_binding_keymap | |
568 | This variable is set to the keymap (@pxref{Keymaps}) in which the | |
569 | last key binding occurred. | |
570 | @end deftypevar | |
571 | ||
28ef6c31 JA |
572 | @deftypevar {char *} rl_executing_macro |
573 | This variable is set to the text of any currently-executing macro. | |
574 | @end deftypevar | |
575 | ||
ac50fbac CR |
576 | @deftypevar int rl_executing_key |
577 | The key that caused the dispatch to the currently-executing Readline function. | |
578 | @end deftypevar | |
579 | ||
580 | @deftypevar {char *} rl_executing_keyseq | |
581 | The full key sequence that caused the dispatch to the currently-executing | |
582 | Readline function. | |
583 | @end deftypevar | |
584 | ||
585 | @deftypevar int rl_key_sequence_length | |
586 | The number of characters in @var{rl_executing_keyseq}. | |
587 | @end deftypevar | |
588 | ||
28ef6c31 JA |
589 | @deftypevar {int} rl_readline_state |
590 | A variable with bit values that encapsulate the current Readline state. | |
591 | A bit is set with the @code{RL_SETSTATE} macro, and unset with the | |
b8c60bc9 CR |
592 | @code{RL_UNSETSTATE} macro. |
593 | Use the @code{RL_ISSTATE} macro to test whether a particular state | |
594 | bit is set. | |
595 | Current state bits include: | |
28ef6c31 JA |
596 | |
597 | @table @code | |
598 | @item RL_STATE_NONE | |
ac50fbac | 599 | Readline has not yet been called, nor has it begun to initialize. |
28ef6c31 JA |
600 | @item RL_STATE_INITIALIZING |
601 | Readline is initializing its internal data structures. | |
602 | @item RL_STATE_INITIALIZED | |
603 | Readline has completed its initialization. | |
604 | @item RL_STATE_TERMPREPPED | |
605 | Readline has modified the terminal modes to do its own input and redisplay. | |
606 | @item RL_STATE_READCMD | |
607 | Readline is reading a command from the keyboard. | |
608 | @item RL_STATE_METANEXT | |
609 | Readline is reading more input after reading the meta-prefix character. | |
610 | @item RL_STATE_DISPATCHING | |
611 | Readline is dispatching to a command. | |
612 | @item RL_STATE_MOREINPUT | |
613 | Readline is reading more input while executing an editing command. | |
614 | @item RL_STATE_ISEARCH | |
615 | Readline is performing an incremental history search. | |
616 | @item RL_STATE_NSEARCH | |
617 | Readline is performing a non-incremental history search. | |
618 | @item RL_STATE_SEARCH | |
619 | Readline is searching backward or forward through the history for a string. | |
620 | @item RL_STATE_NUMERICARG | |
621 | Readline is reading a numeric argument. | |
622 | @item RL_STATE_MACROINPUT | |
623 | Readline is currently getting its input from a previously-defined keyboard | |
624 | macro. | |
625 | @item RL_STATE_MACRODEF | |
626 | Readline is currently reading characters defining a keyboard macro. | |
627 | @item RL_STATE_OVERWRITE | |
628 | Readline is in overwrite mode. | |
629 | @item RL_STATE_COMPLETING | |
630 | Readline is performing word completion. | |
631 | @item RL_STATE_SIGHANDLER | |
b8c60bc9 | 632 | Readline is currently executing the Readline signal handler. |
28ef6c31 JA |
633 | @item RL_STATE_UNDOING |
634 | Readline is performing an undo. | |
3185942a JA |
635 | @item RL_STATE_INPUTPENDING |
636 | Readline has input pending due to a call to @code{rl_execute_next()}. | |
637 | @item RL_STATE_TTYCSAVED | |
638 | Readline has saved the values of the terminal's special characters. | |
639 | @item RL_STATE_CALLBACK | |
640 | Readline is currently using the alternate (callback) interface | |
641 | (@pxref{Alternate Interface}). | |
642 | @item RL_STATE_VIMOTION | |
643 | Readline is reading the argument to a vi-mode "motion" command. | |
644 | @item RL_STATE_MULTIKEY | |
645 | Readline is reading a multiple-keystroke command. | |
646 | @item RL_STATE_VICMDONCE | |
647 | Readline has entered vi command (movement) mode at least one time during | |
648 | the current call to @code{readline()}. | |
28ef6c31 JA |
649 | @item RL_STATE_DONE |
650 | Readline has read a key sequence bound to @code{accept-line} | |
651 | and is about to return the line to the caller. | |
74091dd4 CR |
652 | @item RL_STATE_TIMEOUT |
653 | Readline has timed out (it did not receive a line or specified number of | |
654 | characters before the timeout duration specified by @code{rl_set_timeout} | |
655 | elapsed) and is returning that status to the caller. | |
656 | @item RL_STATE_EOF | |
657 | Readline has read an EOF character (e.g., the stty @samp{EOF} character) | |
b8c60bc9 CR |
658 | or encountered a read error or EOF |
659 | and is about to return a NULL line to the caller. | |
28ef6c31 JA |
660 | @end table |
661 | ||
662 | @end deftypevar | |
663 | ||
664 | @deftypevar {int} rl_explicit_arg | |
665 | Set to a non-zero value if an explicit numeric argument was specified by | |
b8c60bc9 CR |
666 | the user. |
667 | It is only valid in a bindable command function. | |
28ef6c31 JA |
668 | @end deftypevar |
669 | ||
670 | @deftypevar {int} rl_numeric_arg | |
671 | Set to the value of any numeric argument explicitly specified by the user | |
b8c60bc9 CR |
672 | before executing the current Readline function. |
673 | It is only valid in a bindable command function. | |
28ef6c31 JA |
674 | @end deftypevar |
675 | ||
676 | @deftypevar {int} rl_editing_mode | |
b8c60bc9 CR |
677 | Set to a value denoting Readline's current editing mode. |
678 | A value of @var{1} means Readline is currently in emacs mode; | |
679 | @var{0} means that vi mode is active. | |
680 | This determines the current keymap and key bindings. | |
28ef6c31 JA |
681 | @end deftypevar |
682 | ||
726f6388 JA |
683 | @node Readline Convenience Functions |
684 | @section Readline Convenience Functions | |
685 | ||
686 | @menu | |
687 | * Function Naming:: How to give a function you write a name. | |
688 | * Keymaps:: Making keymaps. | |
689 | * Binding Keys:: Changing Keymaps. | |
690 | * Associating Function Names and Bindings:: Translate function names to | |
691 | key sequences. | |
692 | * Allowing Undoing:: How to make your functions undoable. | |
693 | * Redisplay:: Functions to control line display. | |
694 | * Modifying Text:: Functions to modify @code{rl_line_buffer}. | |
28ef6c31 JA |
695 | * Character Input:: Functions to read keyboard input. |
696 | * Terminal Management:: Functions to manage terminal settings. | |
726f6388 | 697 | * Utility Functions:: Generally useful functions and hooks. |
28ef6c31 | 698 | * Miscellaneous Functions:: Functions that don't fall into any category. |
ccc6cda3 | 699 | * Alternate Interface:: Using Readline in a `callback' fashion. |
28ef6c31 | 700 | * A Readline Example:: An example Readline function. |
ac50fbac | 701 | * Alternate Interface Example:: An example program using the alternate interface. |
726f6388 JA |
702 | @end menu |
703 | ||
704 | @node Function Naming | |
705 | @subsection Naming a Function | |
706 | ||
b8c60bc9 CR |
707 | Readline has a descriptive |
708 | string name for every function a user can bind to a key sequence, | |
709 | so users can dynamically change the bindings associated with key | |
710 | sequences while using Readline, | |
711 | using the descriptive name when referring to the function. | |
712 | Thus, in an init file, one might find | |
726f6388 JA |
713 | |
714 | @example | |
715 | Meta-Rubout: backward-kill-word | |
716 | @end example | |
717 | ||
718 | This binds the keystroke @key{Meta-Rubout} to the function | |
b8c60bc9 CR |
719 | @emph{descriptively} named @code{backward-kill-word}. |
720 | As the programmer, you | |
721 | should bind the functions you write to descriptive names as well. | |
722 | Readline provides a function for doing that: | |
726f6388 | 723 | |
28ef6c31 | 724 | @deftypefun int rl_add_defun (const char *name, rl_command_func_t *function, int key) |
b8c60bc9 CR |
725 | Add @var{name} to the list of named functions. |
726 | Make @var{function} be the function that gets called by key sequences | |
727 | that bind to @var{name}. | |
728 | If @var{key} is not -1, then bind it to | |
28ef6c31 | 729 | @var{function} using @code{rl_bind_key()}. |
726f6388 JA |
730 | @end deftypefun |
731 | ||
b80f6443 JA |
732 | Using this function alone is sufficient for most applications. |
733 | It is the recommended way to add a few functions to the default | |
734 | functions that Readline has built in. | |
735 | If you need to do something other than adding a function to Readline, | |
736 | you may need to use the underlying functions described below. | |
726f6388 JA |
737 | |
738 | @node Keymaps | |
739 | @subsection Selecting a Keymap | |
740 | ||
b8c60bc9 CR |
741 | Key bindings take place on a @dfn{keymap}. |
742 | The keymap is the association between the keys that the user types and | |
743 | the functions that get run. | |
744 | You can make your own keymaps, copy existing keymaps, and tell | |
726f6388 JA |
745 | Readline which keymap to use. |
746 | ||
28ef6c31 | 747 | @deftypefun Keymap rl_make_bare_keymap (void) |
b8c60bc9 CR |
748 | Returns a new, empty keymap. |
749 | The space for the keymap is allocated with | |
28ef6c31 | 750 | @code{malloc()}; the caller should free it by calling |
0001803f | 751 | @code{rl_free_keymap()} when done. |
726f6388 JA |
752 | @end deftypefun |
753 | ||
754 | @deftypefun Keymap rl_copy_keymap (Keymap map) | |
755 | Return a new keymap which is a copy of @var{map}. | |
756 | @end deftypefun | |
757 | ||
28ef6c31 | 758 | @deftypefun Keymap rl_make_keymap (void) |
726f6388 JA |
759 | Return a new keymap with the printing characters bound to rl_insert, |
760 | the lowercase Meta characters bound to run their equivalents, and | |
761 | the Meta digits bound to produce numeric arguments. | |
762 | @end deftypefun | |
763 | ||
764 | @deftypefun void rl_discard_keymap (Keymap keymap) | |
0001803f CR |
765 | Free the storage associated with the data in @var{keymap}. |
766 | The caller should free @var{keymap}. | |
767 | @end deftypefun | |
768 | ||
769 | @deftypefun void rl_free_keymap (Keymap keymap) | |
b8c60bc9 CR |
770 | Free all storage associated with @var{keymap}. |
771 | This calls @code{rl_discard_keymap} to free subordinate | |
772 | keymaps and macros. | |
726f6388 JA |
773 | @end deftypefun |
774 | ||
d233b485 CR |
775 | @deftypefun int rl_empty_keymap (Keymap keymap) |
776 | Return non-zero if there are no keys bound to functions in @var{keymap}; | |
777 | zero if there are any keys bound. | |
778 | @end deftypefun | |
779 | ||
b8c60bc9 CR |
780 | Readline has several internal keymaps. |
781 | These functions allow you to change which keymap is active. | |
782 | This is one way to switch editing modes, for example. | |
726f6388 | 783 | |
28ef6c31 | 784 | @deftypefun Keymap rl_get_keymap (void) |
726f6388 JA |
785 | Returns the currently active keymap. |
786 | @end deftypefun | |
787 | ||
788 | @deftypefun void rl_set_keymap (Keymap keymap) | |
789 | Makes @var{keymap} the currently active keymap. | |
790 | @end deftypefun | |
791 | ||
28ef6c31 | 792 | @deftypefun Keymap rl_get_keymap_by_name (const char *name) |
b8c60bc9 CR |
793 | Return the keymap matching @var{name}. |
794 | @var{name} is one which would be supplied in a | |
795 | @code{set keymap} inputrc line (@pxref{Readline Init File}). | |
726f6388 JA |
796 | @end deftypefun |
797 | ||
d166f048 | 798 | @deftypefun {char *} rl_get_keymap_name (Keymap keymap) |
b8c60bc9 CR |
799 | Return the name matching @var{keymap}. |
800 | @var{name} is one which would be supplied in a | |
801 | @code{set keymap} inputrc line (@pxref{Readline Init File}). | |
d166f048 JA |
802 | @end deftypefun |
803 | ||
d233b485 | 804 | @deftypefun int rl_set_keymap_name (const char *name, Keymap keymap) |
b8c60bc9 CR |
805 | Set the name of @var{keymap}. |
806 | This name will then be "registered" and | |
d233b485 CR |
807 | available for use in a @code{set keymap} inputrc directive |
808 | @pxref{Readline Init File}). | |
809 | The @var{name} may not be one of Readline's builtin keymap names; | |
810 | you may not add a different name for one of Readline's builtin keymaps. | |
811 | You may replace the name associated with a given keymap by calling this | |
812 | function more than once with the same @var{keymap} argument. | |
813 | You may associate a registered @var{name} with a new keymap by calling this | |
814 | function more than once with the same @var{name} argument. | |
815 | There is no way to remove a named keymap once the name has been | |
816 | registered. | |
817 | Readline will make a copy of @var{name}. | |
818 | The return value is greater than zero unless @var{name} is one of | |
819 | Readline's builtin keymap names or @var{keymap} is one of Readline's | |
820 | builtin keymaps. | |
821 | @end deftypefun | |
822 | ||
726f6388 JA |
823 | @node Binding Keys |
824 | @subsection Binding Keys | |
825 | ||
b8c60bc9 | 826 | Key sequences are associated with functions through the keymap. |
28ef6c31 | 827 | Readline has several internal keymaps: @code{emacs_standard_keymap}, |
726f6388 JA |
828 | @code{emacs_meta_keymap}, @code{emacs_ctlx_keymap}, |
829 | @code{vi_movement_keymap}, and @code{vi_insertion_keymap}. | |
830 | @code{emacs_standard_keymap} is the default, and the examples in | |
831 | this manual assume that. | |
832 | ||
28ef6c31 | 833 | Since @code{readline()} installs a set of default key bindings the first |
bb70624e | 834 | time it is called, there is always the danger that a custom binding |
28ef6c31 | 835 | installed before the first call to @code{readline()} will be overridden. |
b8c60bc9 CR |
836 | An alternate mechanism that can avoid this |
837 | is to install custom key bindings in an | |
bb70624e JA |
838 | initialization function assigned to the @code{rl_startup_hook} variable |
839 | (@pxref{Readline Variables}). | |
840 | ||
726f6388 JA |
841 | These functions manage key bindings. |
842 | ||
28ef6c31 | 843 | @deftypefun int rl_bind_key (int key, rl_command_func_t *function) |
726f6388 JA |
844 | Binds @var{key} to @var{function} in the currently active keymap. |
845 | Returns non-zero in the case of an invalid @var{key}. | |
846 | @end deftypefun | |
847 | ||
28ef6c31 | 848 | @deftypefun int rl_bind_key_in_map (int key, rl_command_func_t *function, Keymap map) |
b80f6443 JA |
849 | Bind @var{key} to @var{function} in @var{map}. |
850 | Returns non-zero in the case of an invalid @var{key}. | |
851 | @end deftypefun | |
852 | ||
853 | @deftypefun int rl_bind_key_if_unbound (int key, rl_command_func_t *function) | |
854 | Binds @var{key} to @var{function} if it is not already bound in the | |
855 | currently active keymap. | |
856 | Returns non-zero in the case of an invalid @var{key} or if @var{key} is | |
857 | already bound. | |
858 | @end deftypefun | |
859 | ||
860 | @deftypefun int rl_bind_key_if_unbound_in_map (int key, rl_command_func_t *function, Keymap map) | |
861 | Binds @var{key} to @var{function} if it is not already bound in @var{map}. | |
862 | Returns non-zero in the case of an invalid @var{key} or if @var{key} is | |
863 | already bound. | |
726f6388 JA |
864 | @end deftypefun |
865 | ||
866 | @deftypefun int rl_unbind_key (int key) | |
867 | Bind @var{key} to the null function in the currently active keymap. | |
b8c60bc9 | 868 | This is not the same as binding it to @code{self-insert}. |
726f6388 JA |
869 | Returns non-zero in case of error. |
870 | @end deftypefun | |
871 | ||
872 | @deftypefun int rl_unbind_key_in_map (int key, Keymap map) | |
873 | Bind @var{key} to the null function in @var{map}. | |
b8c60bc9 | 874 | This is not the same as binding it to @code{self-insert}. |
726f6388 JA |
875 | Returns non-zero in case of error. |
876 | @end deftypefun | |
877 | ||
28ef6c31 | 878 | @deftypefun int rl_unbind_function_in_map (rl_command_func_t *function, Keymap map) |
cce855bc JA |
879 | Unbind all keys that execute @var{function} in @var{map}. |
880 | @end deftypefun | |
881 | ||
28ef6c31 | 882 | @deftypefun int rl_unbind_command_in_map (const char *command, Keymap map) |
cce855bc JA |
883 | Unbind all keys that are bound to @var{command} in @var{map}. |
884 | @end deftypefun | |
885 | ||
b80f6443 | 886 | @deftypefun int rl_bind_keyseq (const char *keyseq, rl_command_func_t *function) |
28ef6c31 | 887 | Bind the key sequence represented by the string @var{keyseq} to the function |
b80f6443 JA |
888 | @var{function}, beginning in the current keymap. |
889 | This makes new keymaps as necessary. | |
890 | The return value is non-zero if @var{keyseq} is invalid. | |
891 | @end deftypefun | |
892 | ||
893 | @deftypefun int rl_bind_keyseq_in_map (const char *keyseq, rl_command_func_t *function, Keymap map) | |
894 | Bind the key sequence represented by the string @var{keyseq} to the function | |
b8c60bc9 CR |
895 | @var{function} in @var{map}. |
896 | This makes new keymaps as necessary. | |
b80f6443 JA |
897 | Initial bindings are performed in @var{map}. |
898 | The return value is non-zero if @var{keyseq} is invalid. | |
899 | @end deftypefun | |
900 | ||
901 | @deftypefun int rl_set_key (const char *keyseq, rl_command_func_t *function, Keymap map) | |
902 | Equivalent to @code{rl_bind_keyseq_in_map}. | |
903 | @end deftypefun | |
904 | ||
905 | @deftypefun int rl_bind_keyseq_if_unbound (const char *keyseq, rl_command_func_t *function) | |
906 | Binds @var{keyseq} to @var{function} if it is not already bound in the | |
907 | currently active keymap. | |
908 | Returns non-zero in the case of an invalid @var{keyseq} or if @var{keyseq} is | |
909 | already bound. | |
910 | @end deftypefun | |
911 | ||
912 | @deftypefun int rl_bind_keyseq_if_unbound_in_map (const char *keyseq, rl_command_func_t *function, Keymap map) | |
913 | Binds @var{keyseq} to @var{function} if it is not already bound in @var{map}. | |
914 | Returns non-zero in the case of an invalid @var{keyseq} or if @var{keyseq} is | |
915 | already bound. | |
28ef6c31 JA |
916 | @end deftypefun |
917 | ||
918 | @deftypefun int rl_generic_bind (int type, const char *keyseq, char *data, Keymap map) | |
726f6388 | 919 | Bind the key sequence represented by the string @var{keyseq} to the arbitrary |
b8c60bc9 CR |
920 | pointer @var{data}. |
921 | @var{type} says what kind of data is pointed to by @var{data}; this can be | |
922 | a function (@code{ISFUNC}), | |
923 | a macro (@code{ISMACR}), | |
924 | or a keymap (@code{ISKMAP}). | |
925 | This makes new keymaps as necessary. | |
926 | The initial keymap in which to do bindings is @var{map}. | |
927 | Returns non-zero in the case of an invalid @var{keyseq}, zero otherwise. | |
726f6388 JA |
928 | @end deftypefun |
929 | ||
930 | @deftypefun int rl_parse_and_bind (char *line) | |
931 | Parse @var{line} as if it had been read from the @code{inputrc} file and | |
932 | perform any key bindings and variable assignments found | |
933 | (@pxref{Readline Init File}). | |
934 | @end deftypefun | |
935 | ||
28ef6c31 | 936 | @deftypefun int rl_read_init_file (const char *filename) |
726f6388 JA |
937 | Read keybindings and variable assignments from @var{filename} |
938 | (@pxref{Readline Init File}). | |
939 | @end deftypefun | |
940 | ||
941 | @node Associating Function Names and Bindings | |
942 | @subsection Associating Function Names and Bindings | |
943 | ||
944 | These functions allow you to find out what keys invoke named functions | |
b8c60bc9 CR |
945 | and the functions invoked by a particular key sequence. |
946 | You may also associate a new function name with an arbitrary function. | |
726f6388 | 947 | |
28ef6c31 | 948 | @deftypefun {rl_command_func_t *} rl_named_function (const char *name) |
726f6388 | 949 | Return the function with name @var{name}. |
b8c60bc9 | 950 | @var{name} is a descriptive name users might use in a key binding. |
726f6388 JA |
951 | @end deftypefun |
952 | ||
28ef6c31 | 953 | @deftypefun {rl_command_func_t *} rl_function_of_keyseq (const char *keyseq, Keymap map, int *type) |
726f6388 | 954 | Return the function invoked by @var{keyseq} in keymap @var{map}. |
b8c60bc9 CR |
955 | If @var{map} is @code{NULL}, this uses the current keymap. |
956 | If @var{type} is not @code{NULL}, this returns the type of the object | |
957 | in the @code{int} variable it points to | |
958 | (one of @code{ISFUNC}, @code{ISKMAP}, or @code{ISMACR}). | |
959 | It takes a "translated" key sequence and should not be used | |
960 | if the key sequence can include NUL. | |
d233b485 CR |
961 | @end deftypefun |
962 | ||
963 | @deftypefun {rl_command_func_t *} rl_function_of_keyseq_len (const char *keyseq, size_t len, Keymap map, int *type) | |
964 | Return the function invoked by @var{keyseq} of length @var{len} | |
b8c60bc9 CR |
965 | in keymap @var{map}. |
966 | Equivalent to @code{rl_function_of_keyseq} with the addition | |
967 | of the @var{len} parameter. | |
968 | It takes a "translated" key sequence and should be used | |
969 | if the key sequence can include NUL. | |
726f6388 JA |
970 | @end deftypefun |
971 | ||
74091dd4 CR |
972 | @deftypefun {int} rl_trim_arg_from_keyseq (const char *keyseq, size_t len, Keymap map) |
973 | If there is a numeric argument at the beginning of @var{keyseq}, possibly | |
974 | including digits, return the index of the first character in @var{keyseq} | |
975 | following the numeric argument. | |
976 | This can be used to skip over the numeric argument (which is available as | |
b8c60bc9 | 977 | @code{rl_numeric_arg}) while traversing the key sequence that invoked the |
74091dd4 CR |
978 | current command. |
979 | @end deftypefun | |
980 | ||
28ef6c31 | 981 | @deftypefun {char **} rl_invoking_keyseqs (rl_command_func_t *function) |
726f6388 JA |
982 | Return an array of strings representing the key sequences used to |
983 | invoke @var{function} in the current keymap. | |
984 | @end deftypefun | |
985 | ||
28ef6c31 | 986 | @deftypefun {char **} rl_invoking_keyseqs_in_map (rl_command_func_t *function, Keymap map) |
726f6388 JA |
987 | Return an array of strings representing the key sequences used to |
988 | invoke @var{function} in the keymap @var{map}. | |
989 | @end deftypefun | |
990 | ||
b8c60bc9 CR |
991 | @deftypefun void rl_print_keybinding (const char *name, Keymap map, int readable) |
992 | Print key sequences bound to Readline function name @var{name} in | |
993 | keymap @var{map}. | |
994 | If @var{map} is NULL, this uses the current keymap. | |
995 | If @var{readable} is non-zero, | |
996 | the list is formatted in such a way that it can be made part of an | |
997 | @code{inputrc} file and re-read to recreate the key binding. | |
998 | @end deftypefun | |
999 | ||
726f6388 | 1000 | @deftypefun void rl_function_dumper (int readable) |
74091dd4 | 1001 | Print the Readline function names and the key sequences currently |
b8c60bc9 CR |
1002 | bound to them to @code{rl_outstream}. |
1003 | If @var{readable} is non-zero, | |
726f6388 JA |
1004 | the list is formatted in such a way that it can be made part of an |
1005 | @code{inputrc} file and re-read. | |
1006 | @end deftypefun | |
1007 | ||
28ef6c31 | 1008 | @deftypefun void rl_list_funmap_names (void) |
726f6388 JA |
1009 | Print the names of all bindable Readline functions to @code{rl_outstream}. |
1010 | @end deftypefun | |
1011 | ||
28ef6c31 | 1012 | @deftypefun {const char **} rl_funmap_names (void) |
b8c60bc9 CR |
1013 | Return a NULL terminated array of known function names. |
1014 | The array is sorted. | |
1015 | The array itself is allocated, but not the strings inside. | |
1016 | You should free the array, but not the pointers, using @code{free} | |
1017 | or @code{rl_free} when you are done. | |
28ef6c31 JA |
1018 | @end deftypefun |
1019 | ||
1020 | @deftypefun int rl_add_funmap_entry (const char *name, rl_command_func_t *function) | |
1021 | Add @var{name} to the list of bindable Readline command names, and make | |
1022 | @var{function} the function to be called when @var{name} is invoked. | |
b8c60bc9 CR |
1023 | This returns the index of the newly-added @var{name} in the array of |
1024 | function names. | |
bb70624e JA |
1025 | @end deftypefun |
1026 | ||
726f6388 JA |
1027 | @node Allowing Undoing |
1028 | @subsection Allowing Undoing | |
1029 | ||
1030 | Supporting the undo command is a painless thing, and makes your | |
b8c60bc9 CR |
1031 | functions much more useful. |
1032 | It is certainly easier to try something if you know you can undo it. | |
726f6388 | 1033 | |
b8c60bc9 CR |
1034 | If your function simply inserts text once, or deletes text once, |
1035 | and uses @code{rl_insert_text()} or @code{rl_delete_text()} to do it, | |
1036 | then Readline does the undoing for you automatically. | |
726f6388 JA |
1037 | |
1038 | If you do multiple insertions or multiple deletions, or any combination | |
1039 | of these operations, you should group them together into one operation. | |
28ef6c31 JA |
1040 | This is done with @code{rl_begin_undo_group()} and |
1041 | @code{rl_end_undo_group()}. | |
726f6388 | 1042 | |
b8c60bc9 | 1043 | The types of events Readline can undo are: |
726f6388 | 1044 | |
7117c2d2 | 1045 | @smallexample |
726f6388 | 1046 | enum undo_code @{ UNDO_DELETE, UNDO_INSERT, UNDO_BEGIN, UNDO_END @}; |
7117c2d2 | 1047 | @end smallexample |
726f6388 JA |
1048 | |
1049 | Notice that @code{UNDO_DELETE} means to insert some text, and | |
b8c60bc9 CR |
1050 | @code{UNDO_INSERT} means to delete some text. |
1051 | That is, the undo code tells what to undo, not how to undo it. | |
1052 | @code{UNDO_BEGIN} and @code{UNDO_END} are tags | |
1053 | added by @code{rl_begin_undo_group()} and @code{rl_end_undo_group()}; | |
1054 | they are how Readline delimits groups of commands that should be | |
1055 | undone together. | |
726f6388 | 1056 | |
28ef6c31 | 1057 | @deftypefun int rl_begin_undo_group (void) |
b8c60bc9 CR |
1058 | Begins saving undo information in a group construct. |
1059 | The undo information usually comes from calls to @code{rl_insert_text()} | |
1060 | and @code{rl_delete_text()}, but could be the result of calls to | |
28ef6c31 | 1061 | @code{rl_add_undo()}. |
726f6388 JA |
1062 | @end deftypefun |
1063 | ||
28ef6c31 | 1064 | @deftypefun int rl_end_undo_group (void) |
b8c60bc9 CR |
1065 | Closes the current undo group started with @code{rl_begin_undo_group()}. |
1066 | There should be one call to @code{rl_end_undo_group()} | |
28ef6c31 | 1067 | for each call to @code{rl_begin_undo_group()}. |
726f6388 JA |
1068 | @end deftypefun |
1069 | ||
1070 | @deftypefun void rl_add_undo (enum undo_code what, int start, int end, char *text) | |
b8c60bc9 CR |
1071 | Remember how to undo an event (according to @var{what}). |
1072 | The affected text runs from @var{start} to @var{end}, | |
1073 | and encompasses @var{text}. | |
726f6388 JA |
1074 | @end deftypefun |
1075 | ||
28ef6c31 | 1076 | @deftypefun void rl_free_undo_list (void) |
726f6388 JA |
1077 | Free the existing undo list. |
1078 | @end deftypefun | |
1079 | ||
28ef6c31 | 1080 | @deftypefun int rl_do_undo (void) |
b8c60bc9 CR |
1081 | Undo the first thing on the undo list. |
1082 | Returns @code{0} if there was nothing to undo, | |
1083 | non-zero if something was undone. | |
726f6388 JA |
1084 | @end deftypefun |
1085 | ||
1086 | Finally, if you neither insert nor delete text, but directly modify the | |
28ef6c31 | 1087 | existing text (e.g., change its case), call @code{rl_modifying()} |
b8c60bc9 CR |
1088 | once, just before you modify the text. |
1089 | You must supply the indices of the text range that you are going to modify. | |
1090 | Readline will create an undo group for you. | |
726f6388 JA |
1091 | |
1092 | @deftypefun int rl_modifying (int start, int end) | |
1093 | Tell Readline to save the text between @var{start} and @var{end} as a | |
b8c60bc9 CR |
1094 | single undo unit. |
1095 | It is assumed that you will subsequently modify that text. | |
726f6388 JA |
1096 | @end deftypefun |
1097 | ||
1098 | @node Redisplay | |
1099 | @subsection Redisplay | |
1100 | ||
28ef6c31 | 1101 | @deftypefun void rl_redisplay (void) |
726f6388 JA |
1102 | Change what's displayed on the screen to reflect the current contents |
1103 | of @code{rl_line_buffer}. | |
1104 | @end deftypefun | |
1105 | ||
28ef6c31 | 1106 | @deftypefun int rl_forced_update_display (void) |
726f6388 JA |
1107 | Force the line to be updated and redisplayed, whether or not |
1108 | Readline thinks the screen display is correct. | |
1109 | @end deftypefun | |
1110 | ||
28ef6c31 | 1111 | @deftypefun int rl_on_new_line (void) |
bb70624e | 1112 | Tell the update functions that we have moved onto a new (empty) line, |
ac50fbac | 1113 | usually after outputting a newline. |
726f6388 JA |
1114 | @end deftypefun |
1115 | ||
28ef6c31 | 1116 | @deftypefun int rl_on_new_line_with_prompt (void) |
bb70624e JA |
1117 | Tell the update functions that we have moved onto a new line, with |
1118 | @var{rl_prompt} already displayed. | |
1119 | This could be used by applications that want to output the prompt string | |
1120 | themselves, but still need Readline to know the prompt string length for | |
1121 | redisplay. | |
1122 | It should be used after setting @var{rl_already_prompted}. | |
1123 | @end deftypefun | |
1124 | ||
a0c0a00f CR |
1125 | @deftypefun int rl_clear_visible_line (void) |
1126 | Clear the screen lines corresponding to the current line's contents. | |
1127 | @end deftypefun | |
1128 | ||
28ef6c31 | 1129 | @deftypefun int rl_reset_line_state (void) |
726f6388 JA |
1130 | Reset the display state to a clean state and redisplay the current line |
1131 | starting on a new line. | |
1132 | @end deftypefun | |
1133 | ||
28ef6c31 JA |
1134 | @deftypefun int rl_crlf (void) |
1135 | Move the cursor to the start of the next screen line. | |
1136 | @end deftypefun | |
1137 | ||
1138 | @deftypefun int rl_show_char (int c) | |
1139 | Display character @var{c} on @code{rl_outstream}. | |
1140 | If Readline has not been set to display meta characters directly, this | |
1141 | will convert meta characters to a meta-prefixed key sequence. | |
1142 | This is intended for use by applications which wish to do their own | |
1143 | redisplay. | |
1144 | @end deftypefun | |
1145 | ||
1146 | @deftypefun int rl_message (const char *, @dots{}) | |
1147 | The arguments are a format string as would be supplied to @code{printf}, | |
1148 | possibly containing conversion specifications such as @samp{%d}, and | |
1149 | any additional arguments necessary to satisfy the conversion specifications. | |
b8c60bc9 CR |
1150 | The resulting string is displayed in the @dfn{echo area}. |
1151 | The echo area is also used to display numeric arguments and search strings. | |
95732b49 JA |
1152 | You should call @code{rl_save_prompt} to save the prompt information |
1153 | before calling this function. | |
726f6388 JA |
1154 | @end deftypefun |
1155 | ||
28ef6c31 | 1156 | @deftypefun int rl_clear_message (void) |
b8c60bc9 CR |
1157 | Clear the message in the echo area. |
1158 | If the prompt was saved with a call to | |
95732b49 | 1159 | @code{rl_save_prompt} before the last call to @code{rl_message}, |
b8c60bc9 | 1160 | you must call @code{rl_restore_prompt} before calling this function. |
726f6388 JA |
1161 | @end deftypefun |
1162 | ||
28ef6c31 | 1163 | @deftypefun void rl_save_prompt (void) |
b72432fd | 1164 | Save the local Readline prompt display state in preparation for |
28ef6c31 | 1165 | displaying a new message in the message area with @code{rl_message()}. |
b72432fd JA |
1166 | @end deftypefun |
1167 | ||
28ef6c31 | 1168 | @deftypefun void rl_restore_prompt (void) |
b72432fd JA |
1169 | Restore the local Readline prompt display state saved by the most |
1170 | recent call to @code{rl_save_prompt}. | |
b8c60bc9 CR |
1171 | If you called @code{rl_save_prompt} to save the prompt before a call |
1172 | to @code{rl_message}, you should call this function before the | |
95732b49 | 1173 | corresponding call to @code{rl_clear_message}. |
b72432fd JA |
1174 | @end deftypefun |
1175 | ||
28ef6c31 JA |
1176 | @deftypefun int rl_expand_prompt (char *prompt) |
1177 | Expand any special character sequences in @var{prompt} and set up the | |
1178 | local Readline prompt redisplay variables. | |
b8c60bc9 CR |
1179 | This function is called by @code{readline()}. |
1180 | It may also be called to | |
1181 | expand the primary prompt if the application uses the | |
1182 | @code{rl_on_new_line_with_prompt()} function or | |
1183 | @code{rl_already_prompted} variable. | |
28ef6c31 JA |
1184 | It returns the number of visible characters on the last line of the |
1185 | (possibly multi-line) prompt. | |
b80f6443 JA |
1186 | Applications may indicate that the prompt contains characters that take |
1187 | up no physical screen space when displayed by bracketing a sequence of | |
1188 | such characters with the special markers @code{RL_PROMPT_START_IGNORE} | |
74091dd4 CR |
1189 | and @code{RL_PROMPT_END_IGNORE} (declared in @file{readline.h} as |
1190 | @samp{\001} and @samp{\002}, respectively). | |
1191 | This may be used to embed terminal-specific escape sequences in prompts. | |
b8c60bc9 CR |
1192 | If you don't use these indicators, redisplay will likely produce screen |
1193 | contents that don't match the line buffer. | |
28ef6c31 JA |
1194 | @end deftypefun |
1195 | ||
1196 | @deftypefun int rl_set_prompt (const char *prompt) | |
b8c60bc9 CR |
1197 | Make Readline use @var{prompt} for subsequent redisplay. |
1198 | This calls @code{rl_expand_prompt()} to expand the prompt | |
1199 | and sets @code{rl_prompt} to the result. | |
28ef6c31 JA |
1200 | @end deftypefun |
1201 | ||
726f6388 JA |
1202 | @node Modifying Text |
1203 | @subsection Modifying Text | |
1204 | ||
28ef6c31 | 1205 | @deftypefun int rl_insert_text (const char *text) |
726f6388 | 1206 | Insert @var{text} into the line at the current cursor position. |
7117c2d2 | 1207 | Returns the number of characters inserted. |
726f6388 JA |
1208 | @end deftypefun |
1209 | ||
1210 | @deftypefun int rl_delete_text (int start, int end) | |
1211 | Delete the text between @var{start} and @var{end} in the current line. | |
7117c2d2 | 1212 | Returns the number of characters deleted. |
726f6388 JA |
1213 | @end deftypefun |
1214 | ||
1215 | @deftypefun {char *} rl_copy_text (int start, int end) | |
1216 | Return a copy of the text between @var{start} and @var{end} in | |
1217 | the current line. | |
1218 | @end deftypefun | |
1219 | ||
1220 | @deftypefun int rl_kill_text (int start, int end) | |
1221 | Copy the text between @var{start} and @var{end} in the current line | |
1222 | to the kill ring, appending or prepending to the last kill if the | |
b8c60bc9 CR |
1223 | last command was a kill command. |
1224 | This deletes the text from the line. | |
1225 | If @var{start} is less than @var{end}, the text is appended, | |
1226 | otherwise it is prepended. | |
1227 | If the last command was not a kill, this uses a new kill ring slot. | |
726f6388 JA |
1228 | @end deftypefun |
1229 | ||
b8c60bc9 CR |
1230 | @deftypefun void rl_replace_line (const char *text, int clear_undo) |
1231 | Replace the contents of @code{rl_line_buffer} with @var{text}. | |
1232 | This preserves the point and mark, if possible. | |
1233 | If @var{clear_undo} is non-zero, this clears the undo list associated | |
1234 | with the current line. | |
1235 | @end deftypefun | |
1236 | ||
28ef6c31 | 1237 | @deftypefun int rl_push_macro_input (char *macro) |
b8c60bc9 CR |
1238 | Insert @var{macro} into the line, as if it had been invoked |
1239 | by a key bound to a macro. | |
1240 | Not especially useful; use @code{rl_insert_text()} instead. | |
28ef6c31 | 1241 | @end deftypefun |
726f6388 | 1242 | |
28ef6c31 JA |
1243 | @node Character Input |
1244 | @subsection Character Input | |
1245 | ||
1246 | @deftypefun int rl_read_key (void) | |
1247 | Return the next character available from Readline's current input stream. | |
1248 | This handles input inserted into | |
1249 | the input stream via @var{rl_pending_input} (@pxref{Readline Variables}) | |
1250 | and @code{rl_stuff_char()}, macros, and characters read from the keyboard. | |
1251 | While waiting for input, this function will call any function assigned to | |
1252 | the @code{rl_event_hook} variable. | |
726f6388 JA |
1253 | @end deftypefun |
1254 | ||
28ef6c31 JA |
1255 | @deftypefun int rl_getc (FILE *stream) |
1256 | Return the next character available from @var{stream}, which is assumed to | |
1257 | be the keyboard. | |
ccc6cda3 JA |
1258 | @end deftypefun |
1259 | ||
726f6388 | 1260 | @deftypefun int rl_stuff_char (int c) |
b8c60bc9 CR |
1261 | Insert @var{c} into the Readline input stream. |
1262 | It will be "read" before Readline attempts to read characters | |
1263 | from the terminal with @code{rl_read_key()}. | |
1264 | Applications can push back up to 512 characters. | |
7117c2d2 JA |
1265 | @code{rl_stuff_char} returns 1 if the character was successfully inserted; |
1266 | 0 otherwise. | |
726f6388 JA |
1267 | @end deftypefun |
1268 | ||
28ef6c31 JA |
1269 | @deftypefun int rl_execute_next (int c) |
1270 | Make @var{c} be the next command to be executed when @code{rl_read_key()} | |
b8c60bc9 CR |
1271 | is called. |
1272 | This sets @var{rl_pending_input}. | |
d166f048 JA |
1273 | @end deftypefun |
1274 | ||
28ef6c31 JA |
1275 | @deftypefun int rl_clear_pending_input (void) |
1276 | Unset @var{rl_pending_input}, effectively negating the effect of any | |
b8c60bc9 CR |
1277 | previous call to @code{rl_execute_next()}. |
1278 | This works only if the pending input has not already been read | |
1279 | with @code{rl_read_key()}. | |
28ef6c31 JA |
1280 | @end deftypefun |
1281 | ||
1282 | @deftypefun int rl_set_keyboard_input_timeout (int u) | |
1283 | While waiting for keyboard input in @code{rl_read_key()}, Readline will | |
1284 | wait for @var{u} microseconds for input before calling any function | |
b8c60bc9 CR |
1285 | assigned to @code{rl_event_hook}. |
1286 | @var{u} must be greater than or equal | |
0628567a JA |
1287 | to zero (a zero-length timeout is equivalent to a poll). |
1288 | The default waiting period is one-tenth of a second. | |
1289 | Returns the old timeout value. | |
726f6388 JA |
1290 | @end deftypefun |
1291 | ||
74091dd4 | 1292 | @deftypefun int rl_set_timeout (unsigned int secs, unsigned int usecs) |
b8c60bc9 CR |
1293 | Set a timeout for subsequent calls to @code{readline()}. |
1294 | If Readline does not read a complete line, or the number of characters | |
1295 | specified by @code{rl_num_chars_to_read}, | |
1296 | before the duration specified by @var{secs} (in seconds) | |
1297 | and @var{usecs} (microseconds), it returns and sets | |
74091dd4 CR |
1298 | @code{RL_STATE_TIMEOUT} in @code{rl_readline_state}. |
1299 | Passing 0 for @code{secs} and @code{usecs} cancels any previously set | |
1300 | timeout; the convenience macro @code{rl_clear_timeout()} is shorthand | |
1301 | for this. | |
1302 | Returns 0 if the timeout is set successfully. | |
1303 | @end deftypefun | |
1304 | ||
1305 | @deftypefun int rl_timeout_remaining (unsigned int *secs, unsigned int *usecs) | |
1306 | Return the number of seconds and microseconds remaining in the current | |
1307 | timeout duration in @var{*secs} and @var{*usecs}, respectively. | |
1308 | Both @var{*secs} and @var{*usecs} must be non-NULL to return any values. | |
1309 | The return value is -1 on error or when there is no timeout set, | |
1310 | 0 when the timeout has expired (leaving @var{*secs} and @var{*usecs} | |
1311 | unchanged), | |
1312 | and 1 if the timeout has not expired. | |
1313 | If either of @var{secs} and @var{usecs} is @code{NULL}, | |
1314 | the return value indicates whether the timeout has expired. | |
1315 | @end deftypefun | |
1316 | ||
28ef6c31 JA |
1317 | @node Terminal Management |
1318 | @subsection Terminal Management | |
1319 | ||
1320 | @deftypefun void rl_prep_terminal (int meta_flag) | |
1321 | Modify the terminal settings for Readline's use, so @code{readline()} | |
b8c60bc9 CR |
1322 | can read a single character at a time from the keyboard |
1323 | and perform redisplay. | |
28ef6c31 JA |
1324 | The @var{meta_flag} argument should be non-zero if Readline should |
1325 | read eight-bit input. | |
1326 | @end deftypefun | |
1327 | ||
1328 | @deftypefun void rl_deprep_terminal (void) | |
1329 | Undo the effects of @code{rl_prep_terminal()}, leaving the terminal in | |
1330 | the state in which it was before the most recent call to | |
1331 | @code{rl_prep_terminal()}. | |
1332 | @end deftypefun | |
1333 | ||
1334 | @deftypefun void rl_tty_set_default_bindings (Keymap kmap) | |
b80f6443 JA |
1335 | Read the operating system's terminal editing characters (as would be |
1336 | displayed by @code{stty}) to their Readline equivalents. | |
1337 | The bindings are performed in @var{kmap}. | |
1338 | @end deftypefun | |
1339 | ||
1340 | @deftypefun void rl_tty_unset_default_bindings (Keymap kmap) | |
1341 | Reset the bindings manipulated by @code{rl_tty_set_default_bindings} so | |
1342 | that the terminal editing characters are bound to @code{rl_insert}. | |
1343 | The bindings are performed in @var{kmap}. | |
b8c60bc9 | 1344 | @end deftypefun |
28ef6c31 | 1345 | |
a0c0a00f | 1346 | @deftypefun int rl_tty_set_echoing (int value) |
b8c60bc9 CR |
1347 | Set Readline's idea of whether or not it is |
1348 | echoing output to its output stream (@var{rl_outstream}). | |
1349 | If @var{value} is 0, | |
1350 | Readline does not display output to @var{rl_outstream}; any other | |
1351 | value enables output. | |
1352 | The initial value is set when Readline initializes the terminal settings. | |
a0c0a00f | 1353 | This function returns the previous value. |
b8c60bc9 | 1354 | @end deftypefun |
a0c0a00f | 1355 | |
28ef6c31 | 1356 | @deftypefun int rl_reset_terminal (const char *terminal_name) |
726f6388 | 1357 | Reinitialize Readline's idea of the terminal settings using |
b8c60bc9 CR |
1358 | @var{terminal_name} as the terminal type (e.g., @code{xterm}). |
1359 | If @var{terminal_name} is @code{NULL}, Readline uses the value of the | |
1360 | @code{TERM} environment variable. | |
726f6388 JA |
1361 | @end deftypefun |
1362 | ||
28ef6c31 | 1363 | @node Utility Functions |
b8c60bc9 | 1364 | @subsection Utility Functions |
28ef6c31 | 1365 | |
3185942a JA |
1366 | @deftypefun int rl_save_state (struct readline_state *sp) |
1367 | Save a snapshot of Readline's internal state to @var{sp}. | |
b8c60bc9 CR |
1368 | The contents of the @var{readline_state} structure are |
1369 | documented in @file{readline.h}. | |
3185942a | 1370 | The caller is responsible for allocating the structure. |
b8c60bc9 | 1371 | @end deftypefun |
3185942a JA |
1372 | |
1373 | @deftypefun int rl_restore_state (struct readline_state *sp) | |
b8c60bc9 CR |
1374 | Restore Readline's internal state to that stored in @var{sp}, |
1375 | which must have been saved by a call to @code{rl_save_state}. | |
1376 | The contents of the @var{readline_state} structure are documented in | |
1377 | @file{readline.h}. | |
1378 | The caller is responsible for freeing the structure. | |
1379 | @end deftypefun | |
3185942a JA |
1380 | |
1381 | @deftypefun void rl_free (void *mem) | |
b8c60bc9 CR |
1382 | Deallocate the memory pointed to by @var{mem}. |
1383 | @var{mem} must have been allocated by @code{malloc}. | |
1384 | @end deftypefun | |
7117c2d2 | 1385 | |
3185942a | 1386 | @deftypefun void rl_extend_line_buffer (int len) |
28ef6c31 | 1387 | Ensure that @code{rl_line_buffer} has enough space to hold @var{len} |
b8c60bc9 | 1388 | characters, reallocating it if necessary. |
726f6388 JA |
1389 | @end deftypefun |
1390 | ||
28ef6c31 JA |
1391 | @deftypefun int rl_initialize (void) |
1392 | Initialize or re-initialize Readline's internal state. | |
b8c60bc9 CR |
1393 | It's not strictly necessary to call this; |
1394 | @code{readline()} calls it before reading any input. | |
726f6388 JA |
1395 | @end deftypefun |
1396 | ||
28ef6c31 | 1397 | @deftypefun int rl_ding (void) |
726f6388 JA |
1398 | Ring the terminal bell, obeying the setting of @code{bell-style}. |
1399 | @end deftypefun | |
1400 | ||
28ef6c31 JA |
1401 | @deftypefun int rl_alphabetic (int c) |
1402 | Return 1 if @var{c} is an alphabetic character. | |
1403 | @end deftypefun | |
1404 | ||
b72432fd JA |
1405 | @deftypefun void rl_display_match_list (char **matches, int len, int max) |
1406 | A convenience function for displaying a list of strings in | |
b8c60bc9 CR |
1407 | columnar format on Readline's output stream. |
1408 | @code{matches} is the list of strings, in argv format, | |
1409 | such as a list of completion matches. | |
b72432fd | 1410 | @code{len} is the number of strings in @code{matches}, and @code{max} |
b8c60bc9 CR |
1411 | is the length of the longest string in @code{matches}. |
1412 | This function uses the setting of @code{print-completions-horizontally} | |
1413 | to select how the matches are displayed (@pxref{Readline Init File Syntax}). | |
495aee44 CR |
1414 | When displaying completions, this function sets the number of columns used |
1415 | for display to the value of @code{completion-display-width}, the value of | |
1416 | the environment variable @env{COLUMNS}, or the screen width, in that order. | |
b72432fd JA |
1417 | @end deftypefun |
1418 | ||
28ef6c31 JA |
1419 | The following are implemented as macros, defined in @code{chardefs.h}. |
1420 | Applications should refrain from using them. | |
726f6388 | 1421 | |
28ef6c31 | 1422 | @deftypefun int _rl_uppercase_p (int c) |
726f6388 JA |
1423 | Return 1 if @var{c} is an uppercase alphabetic character. |
1424 | @end deftypefun | |
1425 | ||
28ef6c31 | 1426 | @deftypefun int _rl_lowercase_p (int c) |
726f6388 JA |
1427 | Return 1 if @var{c} is a lowercase alphabetic character. |
1428 | @end deftypefun | |
1429 | ||
28ef6c31 | 1430 | @deftypefun int _rl_digit_p (int c) |
726f6388 JA |
1431 | Return 1 if @var{c} is a numeric character. |
1432 | @end deftypefun | |
1433 | ||
28ef6c31 | 1434 | @deftypefun int _rl_to_upper (int c) |
726f6388 JA |
1435 | If @var{c} is a lowercase alphabetic character, return the corresponding |
1436 | uppercase character. | |
1437 | @end deftypefun | |
1438 | ||
28ef6c31 | 1439 | @deftypefun int _rl_to_lower (int c) |
726f6388 JA |
1440 | If @var{c} is an uppercase alphabetic character, return the corresponding |
1441 | lowercase character. | |
1442 | @end deftypefun | |
1443 | ||
28ef6c31 | 1444 | @deftypefun int _rl_digit_value (int c) |
726f6388 JA |
1445 | If @var{c} is a number, return the value it represents. |
1446 | @end deftypefun | |
1447 | ||
28ef6c31 JA |
1448 | @node Miscellaneous Functions |
1449 | @subsection Miscellaneous Functions | |
1450 | ||
1451 | @deftypefun int rl_macro_bind (const char *keyseq, const char *macro, Keymap map) | |
1452 | Bind the key sequence @var{keyseq} to invoke the macro @var{macro}. | |
b8c60bc9 CR |
1453 | The binding is performed in @var{map}. |
1454 | When @var{keyseq} is invoked, the @var{macro} will be inserted into the line. | |
1455 | This function is deprecated; use @code{rl_generic_bind} instead. | |
28ef6c31 JA |
1456 | @end deftypefun |
1457 | ||
1458 | @deftypefun void rl_macro_dumper (int readable) | |
1459 | Print the key sequences bound to macros and their values, using | |
1460 | the current keymap, to @code{rl_outstream}. | |
b8c60bc9 CR |
1461 | If the application has assigned a value to @code{rl_macro_display_hook}, |
1462 | @code{rl_macro_dumper} calls it instead of printing anything. | |
1463 | If @var{readable} is greater than zero, the list is formatted in such a way | |
28ef6c31 JA |
1464 | that it can be made part of an @code{inputrc} file and re-read. |
1465 | @end deftypefun | |
1466 | ||
1467 | @deftypefun int rl_variable_bind (const char *variable, const char *value) | |
1468 | Make the Readline variable @var{variable} have @var{value}. | |
74091dd4 | 1469 | This behaves as if the Readline command |
28ef6c31 | 1470 | @samp{set @var{variable} @var{value}} had been executed in an @code{inputrc} |
b8c60bc9 CR |
1471 | file (@pxref{Readline Init File Syntax}) |
1472 | or by @code{rl_parse_and_bind}. | |
28ef6c31 JA |
1473 | @end deftypefun |
1474 | ||
95732b49 JA |
1475 | @deftypefun {char *} rl_variable_value (const char *variable) |
1476 | Return a string representing the value of the Readline variable @var{variable}. | |
1477 | For boolean variables, this string is either @samp{on} or @samp{off}. | |
1478 | @end deftypefun | |
1479 | ||
28ef6c31 | 1480 | @deftypefun void rl_variable_dumper (int readable) |
74091dd4 | 1481 | Print the Readline variable names and their current values |
28ef6c31 JA |
1482 | to @code{rl_outstream}. |
1483 | If @var{readable} is non-zero, the list is formatted in such a way | |
1484 | that it can be made part of an @code{inputrc} file and re-read. | |
1485 | @end deftypefun | |
1486 | ||
1487 | @deftypefun int rl_set_paren_blink_timeout (int u) | |
1488 | Set the time interval (in microseconds) that Readline waits when showing | |
1489 | a balancing character when @code{blink-matching-paren} has been enabled. | |
1490 | @end deftypefun | |
1491 | ||
f73dda09 JA |
1492 | @deftypefun {char *} rl_get_termcap (const char *cap) |
1493 | Retrieve the string value of the termcap capability @var{cap}. | |
1494 | Readline fetches the termcap entry for the current terminal name and | |
1495 | uses those capabilities to move around the screen line and perform other | |
b8c60bc9 CR |
1496 | terminal-specific operations, like erasing a line. |
1497 | Readline does not fetch or use all of a terminal's capabilities, | |
1498 | and this function will return | |
1499 | values for only those capabilities Readline fetches. | |
1500 | @end deftypefun | |
1501 | ||
1502 | @deftypefun {void} rl_reparse_colors (void) | |
1503 | Read or re-read color definitions from @env{LS_COLORS}. | |
f73dda09 JA |
1504 | @end deftypefun |
1505 | ||
ac50fbac CR |
1506 | @deftypefun {void} rl_clear_history (void) |
1507 | Clear the history list by deleting all of the entries, in the same manner | |
1508 | as the History library's @code{clear_history()} function. | |
1509 | This differs from @code{clear_history} because it frees private data | |
1510 | Readline saves in the history list. | |
1511 | @end deftypefun | |
1512 | ||
8868edaf | 1513 | @deftypefun {void} rl_activate_mark (void) |
b8c60bc9 | 1514 | Enable an @emph{active} region. |
8868edaf | 1515 | When this is enabled, the text between point and mark (the @var{region}) is |
b8c60bc9 CR |
1516 | displayed using the color specified by the value of the |
1517 | @code{active-region-start-color} variable (a @var{face}). | |
1518 | The default face is the terminal's standout mode. | |
74091dd4 | 1519 | This is called by various Readline functions that set the mark and insert |
8868edaf CR |
1520 | text, and is available for applications to call. |
1521 | @end deftypefun | |
1522 | ||
1523 | @deftypefun {void} rl_deactivate_mark (void) | |
b8c60bc9 | 1524 | Turn off the active region. |
8868edaf CR |
1525 | @end deftypefun |
1526 | ||
1527 | @deftypefun {void} rl_keep_mark_active (void) | |
74091dd4 CR |
1528 | Indicate that the mark should remain active when the current Readline |
1529 | function completes and after redisplay occurs. | |
8868edaf | 1530 | In most cases, the mark remains active for only the duration of a single |
74091dd4 | 1531 | bindable Readline function. |
8868edaf CR |
1532 | @end deftypefun |
1533 | ||
1534 | @deftypefun {int} rl_mark_active_p (void) | |
1535 | Return a non-zero value if the mark is currently active; zero otherwise. | |
1536 | @end deftypefun | |
1537 | ||
ccc6cda3 JA |
1538 | @node Alternate Interface |
1539 | @subsection Alternate Interface | |
1540 | ||
b8c60bc9 CR |
1541 | For applications that need more granular control than |
1542 | plain @code{readline()} provides, there is | |
1543 | an alternate interface. | |
1544 | Some applications need to interleave keyboard I/O with file, device, | |
1545 | or window system I/O, typically by using a main loop to @code{select()} | |
1546 | on various file descriptors. | |
1547 | To accommodate this use case, Readline can | |
1548 | also be invoked as a `callback' function from an event loop. | |
1549 | There are functions available to make this easy. | |
1550 | ||
1551 | @deftypefun void rl_callback_handler_install (const char *prompt, rl_vcpfunc_t *line_handler) | |
74091dd4 | 1552 | Set up the terminal for Readline I/O and display the initial |
b8c60bc9 CR |
1553 | expanded value of @var{prompt}. |
1554 | Save the value of @var{line_handler} to | |
ac50fbac CR |
1555 | use as a handler function to call when a complete line of input has been |
1556 | entered. | |
1557 | The handler function receives the text of the line as an argument. | |
a0c0a00f CR |
1558 | As with @code{readline()}, the handler function should @code{free} the |
1559 | line when it it finished with it. | |
ccc6cda3 JA |
1560 | @end deftypefun |
1561 | ||
28ef6c31 | 1562 | @deftypefun void rl_callback_read_char (void) |
ccc6cda3 JA |
1563 | Whenever an application determines that keyboard input is available, it |
1564 | should call @code{rl_callback_read_char()}, which will read the next | |
7117c2d2 JA |
1565 | character from the current input source. |
1566 | If that character completes the line, @code{rl_callback_read_char} will | |
b8c60bc9 | 1567 | invoke the @var{line_handler} function installed by |
ac50fbac | 1568 | @code{rl_callback_handler_install} to process the line. |
b8c60bc9 CR |
1569 | Before calling the @var{line_handler} function, Readline resets |
1570 | the terminal settings to the values they had before calling | |
7117c2d2 | 1571 | @code{rl_callback_handler_install}. |
b8c60bc9 | 1572 | If the @var{line_handler} function returns, |
ac50fbac | 1573 | and the line handler remains installed, |
b8c60bc9 CR |
1574 | Readline modifies the terminal settings for its use again. |
1575 | @code{EOF} is indicated by calling @var{line_handler} with a | |
ccc6cda3 JA |
1576 | @code{NULL} line. |
1577 | @end deftypefun | |
1578 | ||
a0c0a00f CR |
1579 | @deftypefun void rl_callback_sigcleanup (void) |
1580 | Clean up any internal state the callback interface uses to maintain state | |
1581 | between calls to rl_callback_read_char (e.g., the state of any active | |
b8c60bc9 CR |
1582 | incremental searches). |
1583 | This is intended to be used by applications that | |
1584 | wish to perform their own signal handling; | |
1585 | Readline's internal signal handler calls this when appropriate. | |
a0c0a00f CR |
1586 | @end deftypefun |
1587 | ||
28ef6c31 | 1588 | @deftypefun void rl_callback_handler_remove (void) |
ccc6cda3 | 1589 | Restore the terminal to its initial state and remove the line handler. |
a0c0a00f | 1590 | You may call this function from within a callback as well as independently. |
b8c60bc9 CR |
1591 | If the @var{line_handler} installed by @code{rl_callback_handler_install} |
1592 | does not exit the program, your program should call | |
1593 | either this function or the function referred | |
1594 | to by the value of @code{rl_deprep_term_function} | |
1595 | before the program exits to reset the terminal settings. | |
ccc6cda3 JA |
1596 | @end deftypefun |
1597 | ||
28ef6c31 JA |
1598 | @node A Readline Example |
1599 | @subsection A Readline Example | |
726f6388 JA |
1600 | |
1601 | Here is a function which changes lowercase characters to their uppercase | |
b8c60bc9 CR |
1602 | equivalents, and uppercase characters to lowercase. |
1603 | If this function was bound to @samp{M-c}, then typing @samp{M-c} would | |
1604 | change the case of the character under point. | |
1605 | Typing @samp{M-1 0 M-c} would change the case | |
1606 | of the following 10 characters, leaving the cursor on | |
726f6388 JA |
1607 | the last character changed. |
1608 | ||
1609 | @example | |
1610 | /* Invert the case of the COUNT following characters. */ | |
1611 | int | |
1612 | invert_case_line (count, key) | |
1613 | int count, key; | |
1614 | @{ | |
b8c60bc9 | 1615 | int start, end, i; |
726f6388 JA |
1616 | |
1617 | start = rl_point; | |
1618 | ||
1619 | if (rl_point >= rl_end) | |
1620 | return (0); | |
1621 | ||
726f6388 | 1622 | /* Find the end of the range to modify. */ |
b8c60bc9 | 1623 | end = start + count; |
726f6388 JA |
1624 | |
1625 | /* Force it to be within range. */ | |
1626 | if (end > rl_end) | |
1627 | end = rl_end; | |
1628 | else if (end < 0) | |
1629 | end = 0; | |
1630 | ||
1631 | if (start == end) | |
1632 | return (0); | |
1633 | ||
b8c60bc9 CR |
1634 | /* For positive arguments, put point after the last changed character. For |
1635 | negative arguments, put point before the last changed character. */ | |
1636 | rl_point = end; | |
1637 | ||
1638 | /* Swap start and end if we are moving backwards */ | |
726f6388 JA |
1639 | if (start > end) |
1640 | @{ | |
1641 | int temp = start; | |
1642 | start = end; | |
1643 | end = temp; | |
1644 | @} | |
1645 | ||
7117c2d2 JA |
1646 | /* Tell readline that we are modifying the line, |
1647 | so it will save the undo information. */ | |
726f6388 JA |
1648 | rl_modifying (start, end); |
1649 | ||
1650 | for (i = start; i != end; i++) | |
1651 | @{ | |
28ef6c31 JA |
1652 | if (_rl_uppercase_p (rl_line_buffer[i])) |
1653 | rl_line_buffer[i] = _rl_to_lower (rl_line_buffer[i]); | |
1654 | else if (_rl_lowercase_p (rl_line_buffer[i])) | |
1655 | rl_line_buffer[i] = _rl_to_upper (rl_line_buffer[i]); | |
726f6388 | 1656 | @} |
b8c60bc9 | 1657 | |
726f6388 JA |
1658 | return (0); |
1659 | @} | |
1660 | @end example | |
1661 | ||
ac50fbac CR |
1662 | @node Alternate Interface Example |
1663 | @subsection Alternate Interface Example | |
1664 | ||
1665 | Here is a complete program that illustrates Readline's alternate interface. | |
1666 | It reads lines from the terminal and displays them, providing the | |
1667 | standard history and TAB completion functions. | |
1668 | It understands the EOF character or "exit" to exit the program. | |
1669 | ||
1670 | @example | |
1671 | /* Standard include files. stdio.h is required. */ | |
1672 | #include <stdlib.h> | |
a0c0a00f | 1673 | #include <string.h> |
ac50fbac CR |
1674 | #include <unistd.h> |
1675 | ||
1676 | /* Used for select(2) */ | |
1677 | #include <sys/types.h> | |
1678 | #include <sys/select.h> | |
1679 | ||
a0c0a00f CR |
1680 | #include <signal.h> |
1681 | ||
b8c60bc9 | 1682 | #include <errno.h> |
ac50fbac CR |
1683 | #include <stdio.h> |
1684 | ||
b8c60bc9 CR |
1685 | #include <locale.h> |
1686 | ||
ac50fbac CR |
1687 | /* Standard readline include files. */ |
1688 | #include <readline/readline.h> | |
1689 | #include <readline/history.h> | |
1690 | ||
b8c60bc9 CR |
1691 | #if !defined (errno) |
1692 | extern int errno; | |
1693 | #endif | |
1694 | ||
ac50fbac | 1695 | static void cb_linehandler (char *); |
a0c0a00f | 1696 | static void sighandler (int); |
ac50fbac CR |
1697 | |
1698 | int running; | |
a0c0a00f | 1699 | int sigwinch_received; |
ac50fbac CR |
1700 | const char *prompt = "rltest$ "; |
1701 | ||
a0c0a00f CR |
1702 | /* Handle SIGWINCH and window size changes when readline is not active and |
1703 | reading a character. */ | |
1704 | static void | |
1705 | sighandler (int sig) | |
1706 | @{ | |
1707 | sigwinch_received = 1; | |
1708 | @} | |
1709 | ||
ac50fbac CR |
1710 | /* Callback function called for each line when accept-line executed, EOF |
1711 | seen, or EOF character read. This sets a flag and returns; it could | |
1712 | also call exit(3). */ | |
1713 | static void | |
1714 | cb_linehandler (char *line) | |
1715 | @{ | |
1716 | /* Can use ^D (stty eof) or `exit' to exit. */ | |
1717 | if (line == NULL || strcmp (line, "exit") == 0) | |
1718 | @{ | |
1719 | if (line == 0) | |
1720 | printf ("\n"); | |
1721 | printf ("exit\n"); | |
1722 | /* This function needs to be called to reset the terminal settings, | |
1723 | and calling it from the line handler keeps one extra prompt from | |
1724 | being displayed. */ | |
1725 | rl_callback_handler_remove (); | |
1726 | ||
1727 | running = 0; | |
1728 | @} | |
1729 | else | |
1730 | @{ | |
1731 | if (*line) | |
1732 | add_history (line); | |
1733 | printf ("input line: %s\n", line); | |
1734 | free (line); | |
1735 | @} | |
1736 | @} | |
1737 | ||
1738 | int | |
1739 | main (int c, char **v) | |
1740 | @{ | |
1741 | fd_set fds; | |
1742 | int r; | |
1743 | ||
a0c0a00f CR |
1744 | /* Set the default locale values according to environment variables. */ |
1745 | setlocale (LC_ALL, ""); | |
1746 | ||
1747 | /* Handle window size changes when readline is not active and reading | |
1748 | characters. */ | |
1749 | signal (SIGWINCH, sighandler); | |
1750 | ||
ac50fbac CR |
1751 | /* Install the line handler. */ |
1752 | rl_callback_handler_install (prompt, cb_linehandler); | |
1753 | ||
1754 | /* Enter a simple event loop. This waits until something is available | |
1755 | to read on readline's input stream (defaults to standard input) and | |
1756 | calls the builtin character read callback to read it. It does not | |
1757 | have to modify the user's terminal settings. */ | |
1758 | running = 1; | |
1759 | while (running) | |
1760 | @{ | |
1761 | FD_ZERO (&fds); | |
b8c60bc9 | 1762 | FD_SET (fileno (rl_instream), &fds); |
ac50fbac CR |
1763 | |
1764 | r = select (FD_SETSIZE, &fds, NULL, NULL, NULL); | |
a0c0a00f | 1765 | if (r < 0 && errno != EINTR) |
ac50fbac CR |
1766 | @{ |
1767 | perror ("rltest: select"); | |
1768 | rl_callback_handler_remove (); | |
1769 | break; | |
1770 | @} | |
a0c0a00f CR |
1771 | if (sigwinch_received) |
1772 | @{ | |
1773 | rl_resize_terminal (); | |
1774 | sigwinch_received = 0; | |
1775 | @} | |
1776 | if (r < 0) | |
1777 | continue; | |
ac50fbac CR |
1778 | |
1779 | if (FD_ISSET (fileno (rl_instream), &fds)) | |
1780 | rl_callback_read_char (); | |
1781 | @} | |
1782 | ||
1783 | printf ("rltest: Event loop has exited\n"); | |
1784 | return 0; | |
1785 | @} | |
1786 | @end example | |
1787 | ||
b72432fd JA |
1788 | @node Readline Signal Handling |
1789 | @section Readline Signal Handling | |
1790 | ||
1791 | Signals are asynchronous events sent to a process by the Unix kernel, | |
b8c60bc9 CR |
1792 | sometimes on behalf of another process. |
1793 | They are intended to indicate exceptional events, | |
1794 | like a user pressing the terminal's interrupt key, | |
1795 | or a network connection being broken. | |
1796 | There is a class of signals that can | |
1797 | be sent to the process currently reading input from the keyboard. | |
1798 | Since Readline changes the terminal attributes when it is called, it needs | |
1799 | to perform special processing when such a signal is received in order to | |
1800 | restore the terminal to a sane state, or provide applications using | |
1801 | Readline with functions to do so manually. | |
b72432fd JA |
1802 | |
1803 | Readline contains an internal signal handler that is installed for a | |
1804 | number of signals (@code{SIGINT}, @code{SIGQUIT}, @code{SIGTERM}, | |
ac50fbac | 1805 | @code{SIGHUP}, |
b72432fd | 1806 | @code{SIGALRM}, @code{SIGTSTP}, @code{SIGTTIN}, and @code{SIGTTOU}). |
b8c60bc9 | 1807 | When Readline receives one of these signals, the signal handler |
b72432fd | 1808 | will reset the terminal attributes to those that were in effect before |
28ef6c31 JA |
1809 | @code{readline()} was called, reset the signal handling to what it was |
1810 | before @code{readline()} was called, and resend the signal to the calling | |
b72432fd JA |
1811 | application. |
1812 | If and when the calling application's signal handler returns, Readline | |
1813 | will reinitialize the terminal and continue to accept input. | |
1814 | When a @code{SIGINT} is received, the Readline signal handler performs | |
1815 | some additional work, which will cause any partially-entered line to be | |
28ef6c31 | 1816 | aborted (see the description of @code{rl_free_line_state()} below). |
b72432fd JA |
1817 | |
1818 | There is an additional Readline signal handler, for @code{SIGWINCH}, which | |
1819 | the kernel sends to a process whenever the terminal's size changes (for | |
b8c60bc9 CR |
1820 | example, if a user resizes an @code{xterm}). |
1821 | The Readline @code{SIGWINCH} handler updates | |
1822 | Readline's internal screen size information, and then calls any | |
1823 | @code{SIGWINCH} signal handler the calling application has installed. | |
b72432fd | 1824 | Readline calls the application's @code{SIGWINCH} signal handler without |
b8c60bc9 CR |
1825 | resetting the terminal to its original state. |
1826 | If the application's signal | |
1827 | handler does more than update its idea of the terminal size and return | |
1828 | (for example, a @code{longjmp} back to a main processing loop), | |
1829 | it @emph{must} call @code{rl_cleanup_after_signal()} (described below), | |
1830 | to restore the terminal state. | |
a0c0a00f CR |
1831 | |
1832 | When an application is using the callback interface | |
1833 | (@pxref{Alternate Interface}), Readline installs signal handlers only for | |
b8c60bc9 CR |
1834 | the duration of the call to @code{rl_callback_read_char}. |
1835 | Applications using the callback interface should be prepared | |
1836 | to clean up Readline's state if they wish to handle the signal | |
1837 | before the line handler completes and restores the terminal state. | |
a0c0a00f CR |
1838 | |
1839 | If an application using the callback interface wishes to have Readline | |
1840 | install its signal handlers at the time the application calls | |
1841 | @code{rl_callback_handler_install} and remove them only when a complete | |
1842 | line of input has been read, it should set the | |
1843 | @code{rl_persistent_signal_handlers} variable to a non-zero value. | |
1844 | This allows an application to defer all of the handling of the signals | |
1845 | Readline catches to Readline. | |
1846 | Applications should use this variable with care; it can result in Readline | |
1847 | catching signals and not acting on them (or allowing the application to react | |
b8c60bc9 CR |
1848 | to them) until the application calls @code{rl_callback_read_char}. |
1849 | This can result in an application becoming less responsive to keyboard | |
1850 | signals like SIGINT. | |
a0c0a00f | 1851 | If an application does not want or need to perform any signal handling, or |
b8c60bc9 CR |
1852 | does not need to do any processing |
1853 | between calls to @code{rl_callback_read_char}, | |
1854 | setting this variable may be appropriate. | |
b72432fd JA |
1855 | |
1856 | Readline provides two variables that allow application writers to | |
1857 | control whether or not it will catch certain signals and act on them | |
b8c60bc9 CR |
1858 | when they are received. |
1859 | It is important that applications change the | |
1860 | values of these variables only when calling @code{readline()}, | |
1861 | not in a signal handler, so Readline's internal signal state | |
1862 | is not corrupted. | |
b72432fd JA |
1863 | |
1864 | @deftypevar int rl_catch_signals | |
1865 | If this variable is non-zero, Readline will install signal handlers for | |
ac50fbac | 1866 | @code{SIGINT}, @code{SIGQUIT}, @code{SIGTERM}, @code{SIGHUP}, @code{SIGALRM}, |
b72432fd JA |
1867 | @code{SIGTSTP}, @code{SIGTTIN}, and @code{SIGTTOU}. |
1868 | ||
1869 | The default value of @code{rl_catch_signals} is 1. | |
1870 | @end deftypevar | |
1871 | ||
1872 | @deftypevar int rl_catch_sigwinch | |
ac50fbac CR |
1873 | If this variable is set to a non-zero value, |
1874 | Readline will install a signal handler for @code{SIGWINCH}. | |
b72432fd JA |
1875 | |
1876 | The default value of @code{rl_catch_sigwinch} is 1. | |
1877 | @end deftypevar | |
1878 | ||
a0c0a00f CR |
1879 | @deftypevar int rl_persistent_signal_handlers |
1880 | If an application using the callback interface wishes Readline's signal | |
1881 | handlers to be installed and active during the set of calls to | |
1882 | @code{rl_callback_read_char} that constitutes an entire single line, | |
1883 | it should set this variable to a non-zero value. | |
1884 | ||
1885 | The default value of @code{rl_persistent_signal_handlers} is 0. | |
1886 | @end deftypevar | |
1887 | ||
ac50fbac CR |
1888 | @deftypevar int rl_change_environment |
1889 | If this variable is set to a non-zero value, | |
1890 | and Readline is handling @code{SIGWINCH}, Readline will modify the | |
1891 | @var{LINES} and @var{COLUMNS} environment variables upon receipt of a | |
b8c60bc9 | 1892 | @code{SIGWINCH}. |
ac50fbac CR |
1893 | |
1894 | The default value of @code{rl_change_environment} is 1. | |
1895 | @end deftypevar | |
1896 | ||
b72432fd JA |
1897 | If an application does not wish to have Readline catch any signals, or |
1898 | to handle signals other than those Readline catches (@code{SIGHUP}, | |
1899 | for example), | |
1900 | Readline provides convenience functions to do the necessary terminal | |
1901 | and internal state cleanup upon receipt of a signal. | |
1902 | ||
a0c0a00f CR |
1903 | @deftypefun int rl_pending_signal (void) |
1904 | Return the signal number of the most recent signal Readline received but | |
1905 | has not yet handled, or 0 if there is no pending signal. | |
1906 | @end deftypefun | |
1907 | ||
b72432fd JA |
1908 | @deftypefun void rl_cleanup_after_signal (void) |
1909 | This function will reset the state of the terminal to what it was before | |
28ef6c31 | 1910 | @code{readline()} was called, and remove the Readline signal handlers for |
b72432fd JA |
1911 | all signals, depending on the values of @code{rl_catch_signals} and |
1912 | @code{rl_catch_sigwinch}. | |
1913 | @end deftypefun | |
1914 | ||
1915 | @deftypefun void rl_free_line_state (void) | |
1916 | This will free any partial state associated with the current input line | |
1917 | (undo information, any partial history entry, any partially-entered | |
b8c60bc9 CR |
1918 | keyboard macro, and any partially-entered numeric argument). |
1919 | This should be called before @code{rl_cleanup_after_signal()}. | |
1920 | The Readline signal handler for @code{SIGINT} calls this to abort | |
1921 | the current input line. | |
b72432fd JA |
1922 | @end deftypefun |
1923 | ||
1924 | @deftypefun void rl_reset_after_signal (void) | |
1925 | This will reinitialize the terminal and reinstall any Readline signal | |
1926 | handlers, depending on the values of @code{rl_catch_signals} and | |
1927 | @code{rl_catch_sigwinch}. | |
1928 | @end deftypefun | |
1929 | ||
d233b485 CR |
1930 | If an application wants to force Readline to handle any signals that |
1931 | have arrived while it has been executing, @code{rl_check_signals()} | |
1932 | will call Readline's internal signal handler if there are any pending | |
b8c60bc9 CR |
1933 | signals. |
1934 | This is primarily intended for those applications that use | |
d233b485 CR |
1935 | a custom @code{rl_getc_function} (@pxref{Readline Variables}) and wish |
1936 | to handle signals received while waiting for input. | |
1937 | ||
1938 | @deftypefun void rl_check_signals (void) | |
b8c60bc9 CR |
1939 | If there are any pending signals, call Readline's internal signal |
1940 | handling functions to process them. | |
1941 | @code{rl_pending_signal()} can be used independently | |
d233b485 CR |
1942 | to determine whether or not there are any pending signals. |
1943 | @end deftypefun | |
1944 | ||
b8c60bc9 CR |
1945 | If an application does not wish Readline to catch @code{SIGWINCH}, |
1946 | it may call @code{rl_resize_terminal()} or @code{rl_set_screen_size()} | |
1947 | to force Readline to update its idea of the terminal size when it receives | |
8868edaf | 1948 | a @code{SIGWINCH}. |
b72432fd | 1949 | |
3185942a JA |
1950 | @deftypefun void rl_echo_signal_char (int sig) |
1951 | If an application wishes to install its own signal handlers, but still | |
74091dd4 | 1952 | have Readline display characters that generate signals, calling this |
3185942a JA |
1953 | function with @var{sig} set to @code{SIGINT}, @code{SIGQUIT}, or |
1954 | @code{SIGTSTP} will display the character generating that signal. | |
1955 | @end deftypefun | |
1956 | ||
b72432fd | 1957 | @deftypefun void rl_resize_terminal (void) |
28ef6c31 JA |
1958 | Update Readline's internal screen size by reading values from the kernel. |
1959 | @end deftypefun | |
1960 | ||
1961 | @deftypefun void rl_set_screen_size (int rows, int cols) | |
1962 | Set Readline's idea of the terminal size to @var{rows} rows and | |
b8c60bc9 CR |
1963 | @var{cols} columns. |
1964 | If either @var{rows} or @var{columns} is less than or equal to 0, | |
1965 | Readline doesn't change that terminal dimension. | |
8868edaf CR |
1966 | This is intended to tell Readline the physical dimensions of the terminal, |
1967 | and is used internally to calculate the maximum number of characters that | |
1968 | may appear on a single line and on the screen. | |
28ef6c31 JA |
1969 | @end deftypefun |
1970 | ||
1971 | If an application does not want to install a @code{SIGWINCH} handler, but | |
8868edaf CR |
1972 | is still interested in the screen dimensions, it may query Readline's idea |
1973 | of the screen size. | |
28ef6c31 JA |
1974 | |
1975 | @deftypefun void rl_get_screen_size (int *rows, int *cols) | |
1976 | Return Readline's idea of the terminal's size in the | |
1977 | variables pointed to by the arguments. | |
b72432fd JA |
1978 | @end deftypefun |
1979 | ||
95732b49 JA |
1980 | @deftypefun void rl_reset_screen_size (void) |
1981 | Cause Readline to reobtain the screen size and recalculate its dimensions. | |
1982 | @end deftypefun | |
1983 | ||
b72432fd JA |
1984 | The following functions install and remove Readline's signal handlers. |
1985 | ||
1986 | @deftypefun int rl_set_signals (void) | |
1987 | Install Readline's signal handler for @code{SIGINT}, @code{SIGQUIT}, | |
ac50fbac | 1988 | @code{SIGTERM}, @code{SIGHUP}, @code{SIGALRM}, @code{SIGTSTP}, @code{SIGTTIN}, |
b72432fd JA |
1989 | @code{SIGTTOU}, and @code{SIGWINCH}, depending on the values of |
1990 | @code{rl_catch_signals} and @code{rl_catch_sigwinch}. | |
1991 | @end deftypefun | |
1992 | ||
1993 | @deftypefun int rl_clear_signals (void) | |
1994 | Remove all of the Readline signal handlers installed by | |
28ef6c31 | 1995 | @code{rl_set_signals()}. |
b72432fd JA |
1996 | @end deftypefun |
1997 | ||
726f6388 JA |
1998 | @node Custom Completers |
1999 | @section Custom Completers | |
b80f6443 | 2000 | @cindex application-specific completion functions |
726f6388 JA |
2001 | |
2002 | Typically, a program that reads commands from the user has a way of | |
b8c60bc9 CR |
2003 | disambiguating commands and data. |
2004 | If your program is one of these, then | |
726f6388 JA |
2005 | it can provide completion for commands, data, or both. |
2006 | The following sections describe how your program and Readline | |
2007 | cooperate to provide this service. | |
2008 | ||
2009 | @menu | |
2010 | * How Completing Works:: The logic used to do completion. | |
2011 | * Completion Functions:: Functions provided by Readline. | |
2012 | * Completion Variables:: Variables which control completion. | |
2013 | * A Short Completion Example:: An example of writing completer subroutines. | |
2014 | @end menu | |
2015 | ||
2016 | @node How Completing Works | |
2017 | @subsection How Completing Works | |
2018 | ||
2019 | In order to complete some text, the full list of possible completions | |
b8c60bc9 CR |
2020 | must be available. |
2021 | That is, it is not possible to accurately | |
726f6388 | 2022 | expand a partial word without knowing all of the possible words |
b8c60bc9 CR |
2023 | which make sense in that context. |
2024 | The Readline library provides | |
726f6388 | 2025 | the user interface to completion, and two of the most common |
b8c60bc9 CR |
2026 | completion functions: filename and username. |
2027 | For completing other types | |
2028 | of text, you must write your own completion function. | |
2029 | This section | |
726f6388 JA |
2030 | describes exactly what such functions must do, and provides an example. |
2031 | ||
2032 | There are three major functions used to perform completion: | |
2033 | ||
2034 | @enumerate | |
2035 | @item | |
b8c60bc9 CR |
2036 | The user-interface function @code{rl_complete()}. |
2037 | This function is called with the same arguments as other bindable | |
2038 | Readline functions: @var{count} and @var{invoking_key}. | |
28ef6c31 JA |
2039 | It isolates the word to be completed and calls |
2040 | @code{rl_completion_matches()} to generate a list of possible completions. | |
726f6388 JA |
2041 | It then either lists the possible completions, inserts the possible |
2042 | completions, or actually performs the | |
2043 | completion, depending on which behavior is desired. | |
2044 | ||
2045 | @item | |
28ef6c31 JA |
2046 | The internal function @code{rl_completion_matches()} uses an |
2047 | application-supplied @dfn{generator} function to generate the list of | |
2048 | possible matches, and then returns the array of these matches. | |
2049 | The caller should place the address of its generator function in | |
2050 | @code{rl_completion_entry_function}. | |
726f6388 JA |
2051 | |
2052 | @item | |
2053 | The generator function is called repeatedly from | |
b8c60bc9 CR |
2054 | @code{rl_completion_matches()}, returning a string each time. |
2055 | The arguments to the generator function are @var{text} and @var{state}. | |
2056 | @var{text} is the partial word to be completed. | |
2057 | @var{state} is zero the first time the function is called, | |
2058 | allowing the generator to perform any necessary initialization, | |
2059 | and a positive integer for each subsequent call. | |
2060 | The generator function returns | |
28ef6c31 | 2061 | @code{(char *)NULL} to inform @code{rl_completion_matches()} that there are |
b8c60bc9 CR |
2062 | no more possibilities left. |
2063 | Usually the generator function computes the | |
726f6388 | 2064 | list of possible completions when @var{state} is zero, and returns them |
b8c60bc9 CR |
2065 | one at a time on subsequent calls. |
2066 | Each string the generator function | |
726f6388 JA |
2067 | returns as a match must be allocated with @code{malloc()}; Readline |
2068 | frees the strings when it has finished with them. | |
b80f6443 JA |
2069 | Such a generator function is referred to as an |
2070 | @dfn{application-specific completion function}. | |
726f6388 JA |
2071 | |
2072 | @end enumerate | |
2073 | ||
2074 | @deftypefun int rl_complete (int ignore, int invoking_key) | |
b8c60bc9 CR |
2075 | Complete the word at or before point. |
2076 | You have supplied the function that does the initial simple matching | |
2077 | selection algorithm (see @code{rl_completion_matches()}). | |
2078 | The default is to do filename completion. | |
726f6388 JA |
2079 | @end deftypefun |
2080 | ||
28ef6c31 JA |
2081 | @deftypevar {rl_compentry_func_t *} rl_completion_entry_function |
2082 | This is a pointer to the generator function for | |
2083 | @code{rl_completion_matches()}. | |
2084 | If the value of @code{rl_completion_entry_function} is | |
b8c60bc9 CR |
2085 | @code{NULL} then Readline uses the default filename generator |
2086 | function, @code{rl_filename_completion_function()}. | |
b80f6443 JA |
2087 | An @dfn{application-specific completion function} is a function whose |
2088 | address is assigned to @code{rl_completion_entry_function} and whose | |
b8c60bc9 | 2089 | return values are used to generate possible completions. |
726f6388 JA |
2090 | @end deftypevar |
2091 | ||
2092 | @node Completion Functions | |
2093 | @subsection Completion Functions | |
2094 | ||
2095 | Here is the complete list of callable completion functions present in | |
2096 | Readline. | |
2097 | ||
2098 | @deftypefun int rl_complete_internal (int what_to_do) | |
b8c60bc9 CR |
2099 | Complete the word at or before point. |
2100 | @var{what_to_do} says what to do with the completion. | |
2101 | A value of @samp{?} means list the possible completions. | |
2102 | @samp{TAB} means do standard completion. | |
2103 | @samp{*} means insert all of the possible completions. | |
2104 | @samp{!} means to display all of the possible completions, | |
2105 | if there is more than one, as well as performing partial completion. | |
2106 | @samp{@@} is similar to @samp{!}, but does not list possible completions | |
2107 | if the possible completions share a common prefix. | |
726f6388 JA |
2108 | @end deftypefun |
2109 | ||
2110 | @deftypefun int rl_complete (int ignore, int invoking_key) | |
b8c60bc9 CR |
2111 | Complete the word at or before point. |
2112 | You have supplied the function that does the initial simple | |
2113 | matching selection algorithm (see @code{rl_completion_matches()} and | |
2114 | @code{rl_completion_entry_function}). | |
2115 | The default is to do filename completion. | |
2116 | This calls @code{rl_complete_internal()} with an | |
726f6388 JA |
2117 | argument depending on @var{invoking_key}. |
2118 | @end deftypefun | |
2119 | ||
28ef6c31 | 2120 | @deftypefun int rl_possible_completions (int count, int invoking_key) |
b8c60bc9 CR |
2121 | List the possible completions. |
2122 | See description of @code{rl_complete()}. | |
2123 | This calls @code{rl_complete_internal()} with an argument of @samp{?}. | |
726f6388 JA |
2124 | @end deftypefun |
2125 | ||
28ef6c31 | 2126 | @deftypefun int rl_insert_completions (int count, int invoking_key) |
726f6388 | 2127 | Insert the list of possible completions into the line, deleting the |
b8c60bc9 CR |
2128 | partially-completed word. |
2129 | See description of @code{rl_complete()}. | |
28ef6c31 | 2130 | This calls @code{rl_complete_internal()} with an argument of @samp{*}. |
726f6388 JA |
2131 | @end deftypefun |
2132 | ||
7117c2d2 | 2133 | @deftypefun int rl_completion_mode (rl_command_func_t *cfunc) |
ac50fbac | 2134 | Returns the appropriate value to pass to @code{rl_complete_internal()} |
7117c2d2 | 2135 | depending on whether @var{cfunc} was called twice in succession and |
b80f6443 JA |
2136 | the values of the @code{show-all-if-ambiguous} and |
2137 | @code{show-all-if-unmodified} variables. | |
7117c2d2 JA |
2138 | Application-specific completion functions may use this function to present |
2139 | the same interface as @code{rl_complete()}. | |
2140 | @end deftypefun | |
2141 | ||
28ef6c31 | 2142 | @deftypefun {char **} rl_completion_matches (const char *text, rl_compentry_func_t *entry_func) |
b8c60bc9 CR |
2143 | Returns an array of strings which is a list of completions for @var{text}. |
2144 | If there are no completions, returns @code{NULL}. | |
726f6388 | 2145 | The first entry in the returned array is the substitution for @var{text}. |
b8c60bc9 CR |
2146 | The remaining entries are the possible completions. |
2147 | The array is terminated with a @code{NULL} pointer. | |
2148 | ||
2149 | @var{entry_func} is a function of two args, and returns a @code{char *}. | |
2150 | The first argument is @var{text}. | |
2151 | The second is a state argument; | |
2152 | it is zero on the first call, and non-zero on subsequent calls. | |
2153 | @var{entry_func} returns a @code{NULL} pointer to the caller | |
726f6388 JA |
2154 | when there are no more matches. |
2155 | @end deftypefun | |
2156 | ||
28ef6c31 JA |
2157 | @deftypefun {char *} rl_filename_completion_function (const char *text, int state) |
2158 | A generator function for filename completion in the general case. | |
2159 | @var{text} is a partial filename. | |
b80f6443 | 2160 | The Bash source is a useful reference for writing application-specific |
28ef6c31 JA |
2161 | completion functions (the Bash completion functions call this and other |
2162 | Readline functions). | |
726f6388 JA |
2163 | @end deftypefun |
2164 | ||
28ef6c31 | 2165 | @deftypefun {char *} rl_username_completion_function (const char *text, int state) |
b8c60bc9 CR |
2166 | A completion generator for usernames. |
2167 | @var{text} contains a partial username preceded by a | |
2168 | random character (usually @samp{~}). | |
2169 | As with all completion generators, | |
2170 | @var{state} is zero on the first call and non-zero for subsequent calls. | |
726f6388 JA |
2171 | @end deftypefun |
2172 | ||
2173 | @node Completion Variables | |
2174 | @subsection Completion Variables | |
2175 | ||
28ef6c31 JA |
2176 | @deftypevar {rl_compentry_func_t *} rl_completion_entry_function |
2177 | A pointer to the generator function for @code{rl_completion_matches()}. | |
b80f6443 JA |
2178 | @code{NULL} means to use @code{rl_filename_completion_function()}, |
2179 | the default filename completer. | |
726f6388 JA |
2180 | @end deftypevar |
2181 | ||
28ef6c31 | 2182 | @deftypevar {rl_completion_func_t *} rl_attempted_completion_function |
726f6388 JA |
2183 | A pointer to an alternative function to create matches. |
2184 | The function is called with @var{text}, @var{start}, and @var{end}. | |
28ef6c31 JA |
2185 | @var{start} and @var{end} are indices in @code{rl_line_buffer} defining |
2186 | the boundaries of @var{text}, which is a character string. | |
2187 | If this function exists and returns @code{NULL}, or if this variable is | |
2188 | set to @code{NULL}, then @code{rl_complete()} will call the value of | |
b8c60bc9 CR |
2189 | @code{rl_completion_entry_function} to generate matches, otherwise |
2190 | completion will use the array of strings this function returns. | |
28ef6c31 JA |
2191 | If this function sets the @code{rl_attempted_completion_over} |
2192 | variable to a non-zero value, Readline will not perform its default | |
2193 | completion even if this function returns no matches. | |
726f6388 JA |
2194 | @end deftypevar |
2195 | ||
28ef6c31 JA |
2196 | @deftypevar {rl_quote_func_t *} rl_filename_quoting_function |
2197 | A pointer to a function that will quote a filename in an | |
b8c60bc9 CR |
2198 | application-specific fashion. |
2199 | Readline calls this function during filename completion | |
2200 | if one of the characters in @code{rl_filename_quote_characters} | |
2201 | appears in a completed filename. | |
2202 | The function is called with | |
2203 | @var{text}, @var{match_type}, and @var{quote_pointer}. | |
2204 | The @var{text} is the filename to be quoted. | |
2205 | The @var{match_type} is either @code{SINGLE_MATCH}, | |
2206 | if there is only one completion match, or @code{MULT_MATCH}. | |
2207 | Some functions use this to decide whether or not to | |
2208 | insert a closing quote character. | |
2209 | The @var{quote_pointer} is a pointer | |
2210 | to any opening quote character the user typed. | |
2211 | Some functions choose to reset this character if they decide to quote | |
2212 | the filename in a different style. | |
2213 | It's preferable to preserve the user's quoting as much as possible -- | |
2214 | it's less disruptive. | |
ccc6cda3 JA |
2215 | @end deftypevar |
2216 | ||
28ef6c31 | 2217 | @deftypevar {rl_dequote_func_t *} rl_filename_dequoting_function |
ccc6cda3 | 2218 | A pointer to a function that will remove application-specific quoting |
b8c60bc9 CR |
2219 | characters from a filename before attempting completion, |
2220 | so those characters do not interfere with matching the text against | |
2221 | names in the filesystem. | |
2222 | It is called with @var{text}, the text of the word | |
ccc6cda3 | 2223 | to be dequoted, and @var{quote_char}, which is the quoting character |
b8c60bc9 CR |
2224 | that delimits the filename (usually @samp{'} or @samp{"}). |
2225 | If @var{quote_char} is zero, the filename was not in a quoted string. | |
ccc6cda3 JA |
2226 | @end deftypevar |
2227 | ||
28ef6c31 | 2228 | @deftypevar {rl_linebuf_func_t *} rl_char_is_quoted_p |
ccc6cda3 JA |
2229 | A pointer to a function to call that determines whether or not a specific |
2230 | character in the line buffer is quoted, according to whatever quoting | |
b8c60bc9 CR |
2231 | mechanism the application uses. |
2232 | The function is called with two arguments: | |
2233 | @var{text}, the text of the line, | |
2234 | and @var{index}, the index of the character in the line. | |
2235 | It is used to decide whether a character found in | |
2236 | @code{rl_completer_word_break_characters} should be | |
ccc6cda3 JA |
2237 | used to break words for the completer. |
2238 | @end deftypevar | |
2239 | ||
7117c2d2 | 2240 | @deftypevar {rl_compignore_func_t *} rl_ignore_some_completions_function |
b8c60bc9 | 2241 | Readline calls this function, if defined, when filename |
7117c2d2 JA |
2242 | completion is done, after all the matching names have been generated. |
2243 | It is passed a @code{NULL} terminated array of matches. | |
b8c60bc9 CR |
2244 | The first element (@code{matches[0]}) is the maximal substring |
2245 | common to all matches. | |
2246 | This function can re-arrange the list of matches as required, but | |
2247 | must free each element it deletes from the array. | |
7117c2d2 JA |
2248 | @end deftypevar |
2249 | ||
2250 | @deftypevar {rl_icppfunc_t *} rl_directory_completion_hook | |
2251 | This function, if defined, is allowed to modify the directory portion | |
b8c60bc9 | 2252 | of filenames during completion. |
495aee44 CR |
2253 | It could be used to expand symbolic links or shell variables in pathnames. |
2254 | It is called with the address of a string (the current directory name) as an | |
2255 | argument, and may modify that string. | |
b8c60bc9 CR |
2256 | If the function replaces the string with a new string, it |
2257 | should free the old value. | |
7117c2d2 | 2258 | Any modified directory name should have a trailing slash. |
495aee44 | 2259 | The modified value will be used as part of the completion, replacing |
7117c2d2 | 2260 | the directory portion of the pathname the user typed. |
0628567a JA |
2261 | At the least, even if no other expansion is performed, this function should |
2262 | remove any quote characters from the directory name, because its result will | |
2263 | be passed directly to @code{opendir()}. | |
ac50fbac | 2264 | |
495aee44 CR |
2265 | The directory completion hook returns an integer that should be non-zero if |
2266 | the function modifies its directory argument. | |
2267 | The function should not modify the directory argument if it returns 0. | |
7117c2d2 JA |
2268 | @end deftypevar |
2269 | ||
ac50fbac | 2270 | @deftypevar {rl_icppfunc_t *} rl_directory_rewrite_hook; |
0001803f | 2271 | If non-zero, this is the address of a function to call when completing |
b8c60bc9 CR |
2272 | a directory name. |
2273 | This function takes the address of the directory name | |
2274 | to be modified as an argument. | |
2275 | Unlike @code{rl_directory_completion_hook}, | |
2276 | it only modifies the directory name used in @code{opendir()}, | |
2277 | not what Readline displays when it prints or inserts | |
2278 | the possible completions. | |
2279 | Readline calls this before rl_directory_completion_hook. | |
ac50fbac CR |
2280 | At the least, even if no other expansion is performed, this function should |
2281 | remove any quote characters from the directory name, because its result will | |
2282 | be passed directly to @code{opendir()}. | |
0001803f | 2283 | |
ac50fbac | 2284 | The directory rewrite hook returns an integer that should be non-zero if |
8868edaf | 2285 | the function modifies its directory argument. |
ac50fbac CR |
2286 | The function should not modify the directory argument if it returns 0. |
2287 | @end deftypevar | |
2288 | ||
2289 | @deftypevar {rl_icppfunc_t *} rl_filename_stat_hook | |
2290 | If non-zero, this is the address of a function for the completer to | |
2291 | call before deciding which character to append to a completed name. | |
b8c60bc9 CR |
2292 | This function modifies its filename name argument, and Readline passes |
2293 | the modified value to @code{stat()} | |
2294 | to determine the file's type and characteristics. | |
ac50fbac CR |
2295 | This function does not need to remove quote characters from the filename. |
2296 | ||
2297 | The stat hook returns an integer that should be non-zero if | |
8868edaf | 2298 | the function modifies its directory argument. |
ac50fbac | 2299 | The function should not modify the directory argument if it returns 0. |
0001803f | 2300 | @end deftypevar |
0001803f CR |
2301 | |
2302 | @deftypevar {rl_dequote_func_t *} rl_filename_rewrite_hook | |
b8c60bc9 CR |
2303 | If non-zero, this is the address of a function |
2304 | for Readline to call when reading | |
0001803f | 2305 | directory entries from the filesystem for completion and comparing |
b8c60bc9 CR |
2306 | them to the filename portion of the partial word being completed. |
2307 | It modifies the filesystem entries, | |
2308 | as opposed to @code{rl_completion_rewrite_hook}, | |
2309 | which modifies the word being completed. | |
2310 | The function takes two arguments: | |
2311 | @var{fname}, the filename to be converted, | |
2312 | and @var{fnlen}, its length in bytes. | |
2313 | It must either return its first argument (if no conversion takes place) | |
2314 | or the converted filename in newly-allocated memory. | |
2315 | The function should perform any necessary application or system-specific | |
2316 | conversion on the filename, such as converting between character sets | |
2317 | or converting from a filesystem format to a character input format. | |
2318 | Readline compares the converted form against the word to be completed, | |
2319 | and, if it matches, adds it to the list of matches. | |
2320 | Readline will free the allocated string. | |
2321 | @end deftypevar | |
2322 | ||
2323 | @deftypevar {rl_dequote_func_t *} rl_completion_rewrite_hook | |
2324 | If non-zero, this is the address of a function | |
2325 | for Readline to call before | |
2326 | comparing the filename portion of a word to be completed with directory | |
2327 | entries from the filesystem. | |
2328 | It modifies the word being completed, | |
2329 | as opposed to @code{rl_filename_rewrite_hook}, | |
2330 | which modifies filesystem entries. | |
2331 | The function takes two arguments: | |
2332 | @var{fname}, the word to be converted, | |
2333 | after any @code{rl_filename_dequoting_function} has been applied, | |
0001803f CR |
2334 | and @var{fnlen}, its length in bytes. |
2335 | It must either return its first argument (if no conversion takes place) | |
b8c60bc9 CR |
2336 | or the converted filename in newly-allocated memory. |
2337 | The function should perform any necessary application or system-specific | |
2338 | conversion on the filename, such as converting between character sets or | |
2339 | converting from a character input format to some other format. | |
2340 | Readline compares the converted form against directory entries, after | |
2341 | their potential modification by @code{rl_filename_rewrite_hook}, | |
2342 | and adds any matches to the list of matches. | |
2343 | Readline will free the allocated string. | |
0001803f CR |
2344 | @end deftypevar |
2345 | ||
7117c2d2 JA |
2346 | @deftypevar {rl_compdisp_func_t *} rl_completion_display_matches_hook |
2347 | If non-zero, then this is the address of a function to call when | |
2348 | completing a word would normally display the list of possible matches. | |
b8c60bc9 | 2349 | Readline calls this function instead of displaying the list itself. |
7117c2d2 JA |
2350 | It takes three arguments: |
2351 | (@code{char **}@var{matches}, @code{int} @var{num_matches}, @code{int} @var{max_length}) | |
2352 | where @var{matches} is the array of matching strings, | |
2353 | @var{num_matches} is the number of strings in that array, and | |
2354 | @var{max_length} is the length of the longest string in that array. | |
2355 | Readline provides a convenience function, @code{rl_display_match_list}, | |
a0c0a00f CR |
2356 | that takes care of doing the display to Readline's output stream. |
2357 | You may call that function from this hook. | |
726f6388 JA |
2358 | @end deftypevar |
2359 | ||
28ef6c31 | 2360 | @deftypevar {const char *} rl_basic_word_break_characters |
726f6388 | 2361 | The basic list of characters that signal a break between words for the |
b8c60bc9 CR |
2362 | completer routine. |
2363 | The default value of this variable is the characters | |
28ef6c31 | 2364 | which break words for completion in Bash: |
726f6388 JA |
2365 | @code{" \t\n\"\\'`@@$><=;|&@{("}. |
2366 | @end deftypevar | |
2367 | ||
28ef6c31 JA |
2368 | @deftypevar {const char *} rl_basic_quote_characters |
2369 | A list of quote characters which can cause a word break. | |
b8c60bc9 | 2370 | The default value includes single and double quotes. |
ccc6cda3 JA |
2371 | @end deftypevar |
2372 | ||
28ef6c31 | 2373 | @deftypevar {const char *} rl_completer_word_break_characters |
726f6388 | 2374 | The list of characters that signal a break between words for |
b8c60bc9 CR |
2375 | @code{rl_complete_internal()}. |
2376 | These characters determine how Readline decides what to complete. | |
2377 | The default list is the value of | |
726f6388 JA |
2378 | @code{rl_basic_word_break_characters}. |
2379 | @end deftypevar | |
2380 | ||
b80f6443 JA |
2381 | @deftypevar {rl_cpvfunc_t *} rl_completion_word_break_hook |
2382 | If non-zero, this is the address of a function to call when Readline is | |
b8c60bc9 CR |
2383 | deciding where to separate words for word completion. |
2384 | It should return a character string like | |
2385 | @code{rl_completer_word_break_characters} to be | |
2386 | used to perform the current completion. | |
2387 | The function may choose to set | |
2388 | @code{rl_completer_word_break_characters} itself. | |
2389 | If the function returns @code{NULL}, Readline uses | |
2390 | @code{rl_completer_word_break_characters}. | |
b80f6443 JA |
2391 | @end deftypevar |
2392 | ||
28ef6c31 JA |
2393 | @deftypevar {const char *} rl_completer_quote_characters |
2394 | A list of characters which can be used to quote a substring of the line. | |
b8c60bc9 | 2395 | Completion occurs on the entire substring, and within the substring, |
726f6388 JA |
2396 | @code{rl_completer_word_break_characters} are treated as any other character, |
2397 | unless they also appear within this list. | |
2398 | @end deftypevar | |
2399 | ||
28ef6c31 | 2400 | @deftypevar {const char *} rl_filename_quote_characters |
b8c60bc9 CR |
2401 | A list of characters that cause Readline to quote a filename |
2402 | when they appear in a completed filename. | |
2403 | The default is the null string. | |
ccc6cda3 JA |
2404 | @end deftypevar |
2405 | ||
28ef6c31 | 2406 | @deftypevar {const char *} rl_special_prefixes |
726f6388 JA |
2407 | The list of characters that are word break characters, but should be |
2408 | left in @var{text} when it is passed to the completion function. | |
2409 | Programs can use this to help determine what kind of completing to do. | |
2410 | For instance, Bash sets this variable to "$@@" so that it can complete | |
2411 | shell variables and hostnames. | |
2412 | @end deftypevar | |
2413 | ||
7117c2d2 | 2414 | @deftypevar int rl_completion_query_items |
b8c60bc9 CR |
2415 | This determines the maximum number of items |
2416 | that possible-completions will display unconditionally. | |
2417 | If there are more possible completions than this, | |
2418 | Readline asks the user for confirmation before displaying them. | |
2419 | The default value is 100. | |
2420 | A negative value | |
74091dd4 | 2421 | indicates that Readline should never ask for confirmation. |
7117c2d2 JA |
2422 | @end deftypevar |
2423 | ||
ccc6cda3 JA |
2424 | @deftypevar {int} rl_completion_append_character |
2425 | When a single completion alternative matches at the end of the command | |
b8c60bc9 CR |
2426 | line, Readline appends this character to the inserted completion text. |
2427 | The default is a space character (@samp{ }). | |
2428 | Setting this to the null | |
ccc6cda3 | 2429 | character (@samp{\0}) prevents anything being appended automatically. |
b80f6443 | 2430 | This can be changed in application-specific completion functions to |
ccc6cda3 JA |
2431 | provide the ``most sensible word separator character'' according to |
2432 | an application-specific command line syntax specification. | |
b8c60bc9 CR |
2433 | It is set to the default before calling any application-specific completion |
2434 | function, and may only be changed within such a function. | |
ccc6cda3 JA |
2435 | @end deftypevar |
2436 | ||
7117c2d2 | 2437 | @deftypevar int rl_completion_suppress_append |
b8c60bc9 CR |
2438 | If non-zero, Readline will not append the |
2439 | @var{rl_completion_append_character} to | |
b80f6443 | 2440 | matches at the end of the command line, as described above. |
b8c60bc9 CR |
2441 | It is set to 0 before calling any application-specific completion function, |
2442 | and may only be changed within such a function. | |
b80f6443 JA |
2443 | @end deftypevar |
2444 | ||
2445 | @deftypevar int rl_completion_suppress_quote | |
2446 | If non-zero, Readline does not append a matching quote character when | |
2447 | performing completion on a quoted string. | |
b8c60bc9 CR |
2448 | It is set to 0 before calling any application-specific completion function, |
2449 | and may only be changed within such a function. | |
b80f6443 JA |
2450 | @end deftypevar |
2451 | ||
2452 | @deftypevar int rl_completion_found_quote | |
2453 | When Readline is completing quoted text, it sets this variable | |
2454 | to a non-zero value if the word being completed contains or is delimited | |
2455 | by any quoting characters, including backslashes. | |
b8c60bc9 CR |
2456 | This is set before calling any application-specific completion function. |
2457 | @end deftypevar | |
2458 | ||
2459 | @deftypevar int rl_completion_quote_character | |
2460 | When Readline is completing quoted text, as delimited by one of the | |
2461 | characters in @var{rl_completer_quote_characters}, it sets this variable | |
2462 | to the quoting character it found. | |
2463 | This is set before calling any application-specific completion function. | |
7117c2d2 JA |
2464 | @end deftypevar |
2465 | ||
2466 | @deftypevar int rl_completion_mark_symlink_dirs | |
b8c60bc9 | 2467 | If non-zero, Readline appends a slash to completed filenames that are |
7117c2d2 JA |
2468 | symbolic links to directory names, subject to the value of the |
2469 | user-settable @var{mark-directories} variable. | |
b80f6443 JA |
2470 | This variable exists so that application-specific completion functions |
2471 | can override the user's global preference (set via the | |
7117c2d2 | 2472 | @var{mark-symlinked-directories} Readline variable) if appropriate. |
b8c60bc9 CR |
2473 | This variable is set to the user's preference before calling any |
2474 | application-specific completion function, | |
2475 | so unless that function modifies the value, | |
2476 | Readline will honor the user's preferences. | |
7117c2d2 JA |
2477 | @end deftypevar |
2478 | ||
726f6388 | 2479 | @deftypevar int rl_ignore_completion_duplicates |
b8c60bc9 CR |
2480 | If non-zero, then Readline removes duplicates in the set of possible |
2481 | completions. | |
28ef6c31 | 2482 | The default is 1. |
726f6388 JA |
2483 | @end deftypevar |
2484 | ||
2485 | @deftypevar int rl_filename_completion_desired | |
b8c60bc9 CR |
2486 | A non-zero value means that Readline should treat the results of the |
2487 | matches as filenames. | |
2488 | This is @emph{always} zero when completion is attempted, | |
b80f6443 | 2489 | and can only be changed |
b8c60bc9 CR |
2490 | within an application-specific completion function. |
2491 | If it is set to a | |
2492 | non-zero value by such a function, Readline | |
2493 | appends a slash to directory names | |
2494 | and attempts to quote completed filenames if they contain any | |
b80f6443 JA |
2495 | characters in @code{rl_filename_quote_characters} and |
2496 | @code{rl_filename_quoting_desired} is set to a non-zero value. | |
726f6388 JA |
2497 | @end deftypevar |
2498 | ||
2499 | @deftypevar int rl_filename_quoting_desired | |
b8c60bc9 CR |
2500 | A non-zero value means that Readline should quote the results of the |
2501 | matches using double quotes (or an application-specific quoting mechanism) | |
2502 | if the completed filename contains any characters in | |
2503 | @code{rl_filename_quote_chars}. | |
2504 | This is @emph{always} non-zero when completion is attempted, | |
2505 | and can only be changed within an | |
2506 | application-specific completion function. | |
2507 | The quoting is performed via a call to the function pointed to | |
2508 | by @code{rl_filename_quoting_function}. | |
2509 | @end deftypevar | |
2510 | ||
2511 | @deftypevar int rl_full_quoting_desired | |
2512 | A non-zero value means that Readline should apply filename-style quoting, | |
2513 | including any application-specified quoting mechanism, | |
2514 | to all completion matches even if it is not otherwise treating the | |
2515 | matches as filenames. | |
2516 | This is @emph{always} zero when completion is attempted, | |
2517 | and can only be changed within an | |
b80f6443 | 2518 | application-specific completion function. |
b8c60bc9 | 2519 | The quoting is performed via a call to the function pointed to |
ccc6cda3 JA |
2520 | by @code{rl_filename_quoting_function}. |
2521 | @end deftypevar | |
2522 | ||
28ef6c31 JA |
2523 | @deftypevar int rl_attempted_completion_over |
2524 | If an application-specific completion function assigned to | |
2525 | @code{rl_attempted_completion_function} sets this variable to a non-zero | |
2526 | value, Readline will not perform its default filename completion even | |
2527 | if the application's completion function returns no matches. | |
2528 | It should be set only by an application's completion function. | |
2529 | @end deftypevar | |
2530 | ||
3185942a JA |
2531 | @deftypevar int rl_sort_completion_matches |
2532 | If an application sets this variable to 0, Readline will not sort the | |
2533 | list of completions (which implies that it cannot remove any duplicate | |
b8c60bc9 CR |
2534 | completions). |
2535 | The default value is 1, which means that Readline will | |
3185942a | 2536 | sort the completions and, depending on the value of |
b8c60bc9 CR |
2537 | @code{rl_ignore_completion_duplicates}, will attempt to remove |
2538 | duplicate matches. | |
3185942a JA |
2539 | @end deftypevar |
2540 | ||
28ef6c31 JA |
2541 | @deftypevar int rl_completion_type |
2542 | Set to a character describing the type of completion Readline is currently | |
2543 | attempting; see the description of @code{rl_complete_internal()} | |
2544 | (@pxref{Completion Functions}) for the list of characters. | |
b8c60bc9 CR |
2545 | This is set to the appropriate value before calling |
2546 | any application-specific completion function, | |
2547 | so these functions can present | |
b80f6443 | 2548 | the same interface as @code{rl_complete()}. |
28ef6c31 JA |
2549 | @end deftypevar |
2550 | ||
3185942a JA |
2551 | @deftypevar int rl_completion_invoking_key |
2552 | Set to the final character in the key sequence that invoked one of the | |
b8c60bc9 CR |
2553 | completion functions that call @code{rl_complete_internal()}. |
2554 | This is set to the appropriate value before calling | |
2555 | any application-specific completion function. | |
3185942a JA |
2556 | @end deftypevar |
2557 | ||
ccc6cda3 | 2558 | @deftypevar int rl_inhibit_completion |
b8c60bc9 CR |
2559 | If this variable is non-zero, Readline does not perform completion, |
2560 | even if a key binding indicates it should. | |
2561 | The completion character | |
2562 | is inserted as if it were bound to @code{self-insert}. | |
726f6388 JA |
2563 | @end deftypevar |
2564 | ||
726f6388 JA |
2565 | @node A Short Completion Example |
2566 | @subsection A Short Completion Example | |
2567 | ||
2568 | Here is a small application demonstrating the use of the GNU Readline | |
b8c60bc9 CR |
2569 | library. |
2570 | It is called @code{fileman}, and the source code resides in | |
2571 | @file{examples/fileman.c}. | |
2572 | This sample application provides | |
2573 | command name completion, line editing features, | |
2574 | and access to the history list. | |
726f6388 JA |
2575 | |
2576 | @page | |
2577 | @smallexample | |
2578 | /* fileman.c -- A tiny application which demonstrates how to use the | |
2579 | GNU Readline library. This application interactively allows users | |
2580 | to manipulate files and their modes. */ | |
2581 | ||
3185942a JA |
2582 | #ifdef HAVE_CONFIG_H |
2583 | # include <config.h> | |
2584 | #endif | |
2585 | ||
726f6388 | 2586 | #include <sys/types.h> |
3185942a JA |
2587 | #ifdef HAVE_SYS_FILE_H |
2588 | # include <sys/file.h> | |
2589 | #endif | |
726f6388 | 2590 | #include <sys/stat.h> |
3185942a JA |
2591 | |
2592 | #ifdef HAVE_UNISTD_H | |
2593 | # include <unistd.h> | |
2594 | #endif | |
2595 | ||
2596 | #include <fcntl.h> | |
2597 | #include <stdio.h> | |
2598 | #include <errno.h> | |
74091dd4 | 2599 | #include <locale.h> |
3185942a JA |
2600 | |
2601 | #if defined (HAVE_STRING_H) | |
2602 | # include <string.h> | |
2603 | #else /* !HAVE_STRING_H */ | |
2604 | # include <strings.h> | |
2605 | #endif /* !HAVE_STRING_H */ | |
2606 | ||
2607 | #ifdef HAVE_STDLIB_H | |
2608 | # include <stdlib.h> | |
2609 | #endif | |
2610 | ||
2611 | #include <time.h> | |
726f6388 JA |
2612 | |
2613 | #include <readline/readline.h> | |
2614 | #include <readline/history.h> | |
2615 | ||
3185942a | 2616 | extern char *xmalloc PARAMS((size_t)); |
726f6388 JA |
2617 | |
2618 | /* The names of functions that actually do the manipulation. */ | |
3185942a JA |
2619 | int com_list PARAMS((char *)); |
2620 | int com_view PARAMS((char *)); | |
2621 | int com_rename PARAMS((char *)); | |
2622 | int com_stat PARAMS((char *)); | |
2623 | int com_pwd PARAMS((char *)); | |
2624 | int com_delete PARAMS((char *)); | |
2625 | int com_help PARAMS((char *)); | |
2626 | int com_cd PARAMS((char *)); | |
2627 | int com_quit PARAMS((char *)); | |
726f6388 JA |
2628 | |
2629 | /* A structure which contains information on the commands this program | |
2630 | can understand. */ | |
2631 | ||
2632 | typedef struct @{ | |
2633 | char *name; /* User printable name of the function. */ | |
28ef6c31 | 2634 | rl_icpfunc_t *func; /* Function to call to do the job. */ |
726f6388 JA |
2635 | char *doc; /* Documentation for this function. */ |
2636 | @} COMMAND; | |
2637 | ||
2638 | COMMAND commands[] = @{ | |
2639 | @{ "cd", com_cd, "Change to directory DIR" @}, | |
2640 | @{ "delete", com_delete, "Delete FILE" @}, | |
2641 | @{ "help", com_help, "Display this text" @}, | |
2642 | @{ "?", com_help, "Synonym for `help'" @}, | |
2643 | @{ "list", com_list, "List files in DIR" @}, | |
2644 | @{ "ls", com_list, "Synonym for `list'" @}, | |
2645 | @{ "pwd", com_pwd, "Print the current working directory" @}, | |
2646 | @{ "quit", com_quit, "Quit using Fileman" @}, | |
2647 | @{ "rename", com_rename, "Rename FILE to NEWNAME" @}, | |
2648 | @{ "stat", com_stat, "Print out statistics on FILE" @}, | |
2649 | @{ "view", com_view, "View the contents of FILE" @}, | |
28ef6c31 | 2650 | @{ (char *)NULL, (rl_icpfunc_t *)NULL, (char *)NULL @} |
726f6388 JA |
2651 | @}; |
2652 | ||
2653 | /* Forward declarations. */ | |
b8c60bc9 CR |
2654 | char *stripwhite (char *); |
2655 | COMMAND *find_command (char *); | |
726f6388 JA |
2656 | |
2657 | /* The name of this program, as taken from argv[0]. */ | |
2658 | char *progname; | |
2659 | ||
3185942a | 2660 | /* When non-zero, this global means the user is done using this program. */ |
726f6388 JA |
2661 | int done; |
2662 | ||
2663 | char * | |
b8c60bc9 | 2664 | dupstr (char *s) |
726f6388 JA |
2665 | @{ |
2666 | char *r; | |
2667 | ||
2668 | r = xmalloc (strlen (s) + 1); | |
2669 | strcpy (r, s); | |
2670 | return (r); | |
2671 | @} | |
2672 | ||
b8c60bc9 CR |
2673 | int |
2674 | main (int argc, char **argv) | |
726f6388 JA |
2675 | @{ |
2676 | char *line, *s; | |
2677 | ||
74091dd4 CR |
2678 | setlocale (LC_ALL, ""); |
2679 | ||
726f6388 JA |
2680 | progname = argv[0]; |
2681 | ||
2682 | initialize_readline (); /* Bind our completer. */ | |
2683 | ||
2684 | /* Loop reading and executing lines until the user quits. */ | |
2685 | for ( ; done == 0; ) | |
2686 | @{ | |
2687 | line = readline ("FileMan: "); | |
2688 | ||
2689 | if (!line) | |
2690 | break; | |
2691 | ||
2692 | /* Remove leading and trailing whitespace from the line. | |
2693 | Then, if there is anything left, add it to the history list | |
2694 | and execute it. */ | |
2695 | s = stripwhite (line); | |
2696 | ||
2697 | if (*s) | |
2698 | @{ | |
2699 | add_history (s); | |
2700 | execute_line (s); | |
2701 | @} | |
2702 | ||
2703 | free (line); | |
2704 | @} | |
2705 | exit (0); | |
2706 | @} | |
2707 | ||
2708 | /* Execute a command line. */ | |
2709 | int | |
b8c60bc9 | 2710 | execute_line (char *line) |
726f6388 JA |
2711 | @{ |
2712 | register int i; | |
2713 | COMMAND *command; | |
2714 | char *word; | |
2715 | ||
2716 | /* Isolate the command word. */ | |
2717 | i = 0; | |
2718 | while (line[i] && whitespace (line[i])) | |
2719 | i++; | |
2720 | word = line + i; | |
2721 | ||
2722 | while (line[i] && !whitespace (line[i])) | |
2723 | i++; | |
2724 | ||
2725 | if (line[i]) | |
2726 | line[i++] = '\0'; | |
2727 | ||
2728 | command = find_command (word); | |
2729 | ||
2730 | if (!command) | |
2731 | @{ | |
2732 | fprintf (stderr, "%s: No such command for FileMan.\n", word); | |
2733 | return (-1); | |
2734 | @} | |
2735 | ||
2736 | /* Get argument to command, if any. */ | |
2737 | while (whitespace (line[i])) | |
2738 | i++; | |
2739 | ||
2740 | word = line + i; | |
2741 | ||
2742 | /* Call the function. */ | |
2743 | return ((*(command->func)) (word)); | |
2744 | @} | |
2745 | ||
2746 | /* Look up NAME as the name of a command, and return a pointer to that | |
2747 | command. Return a NULL pointer if NAME isn't a command name. */ | |
2748 | COMMAND * | |
b8c60bc9 | 2749 | find_command (char *name) |
726f6388 JA |
2750 | @{ |
2751 | register int i; | |
2752 | ||
2753 | for (i = 0; commands[i].name; i++) | |
2754 | if (strcmp (name, commands[i].name) == 0) | |
2755 | return (&commands[i]); | |
2756 | ||
2757 | return ((COMMAND *)NULL); | |
2758 | @} | |
2759 | ||
2760 | /* Strip whitespace from the start and end of STRING. Return a pointer | |
2761 | into STRING. */ | |
2762 | char * | |
b8c60bc9 | 2763 | stripwhite (char *string) |
726f6388 JA |
2764 | @{ |
2765 | register char *s, *t; | |
2766 | ||
2767 | for (s = string; whitespace (*s); s++) | |
2768 | ; | |
2769 | ||
2770 | if (*s == 0) | |
2771 | return (s); | |
2772 | ||
2773 | t = s + strlen (s) - 1; | |
2774 | while (t > s && whitespace (*t)) | |
2775 | t--; | |
2776 | *++t = '\0'; | |
2777 | ||
2778 | return s; | |
2779 | @} | |
2780 | ||
2781 | /* **************************************************************** */ | |
2782 | /* */ | |
2783 | /* Interface to Readline Completion */ | |
2784 | /* */ | |
2785 | /* **************************************************************** */ | |
2786 | ||
b8c60bc9 CR |
2787 | char *command_generator (const char *, int); |
2788 | char **fileman_completion (const char *, int, int); | |
726f6388 | 2789 | |
3185942a JA |
2790 | /* Tell the GNU Readline library how to complete. We want to try to complete |
2791 | on command names if this is the first word in the line, or on filenames | |
2792 | if not. */ | |
b8c60bc9 CR |
2793 | void |
2794 | initialize_readline (void) | |
726f6388 JA |
2795 | @{ |
2796 | /* Allow conditional parsing of the ~/.inputrc file. */ | |
2797 | rl_readline_name = "FileMan"; | |
2798 | ||
2799 | /* Tell the completer that we want a crack first. */ | |
28ef6c31 | 2800 | rl_attempted_completion_function = fileman_completion; |
726f6388 JA |
2801 | @} |
2802 | ||
3185942a JA |
2803 | /* Attempt to complete on the contents of TEXT. START and END bound the |
2804 | region of rl_line_buffer that contains the word to complete. TEXT is | |
2805 | the word to complete. We can use the entire contents of rl_line_buffer | |
2806 | in case we want to do some simple parsing. Return the array of matches, | |
2807 | or NULL if there aren't any. */ | |
726f6388 | 2808 | char ** |
b8c60bc9 | 2809 | fileman_completion (const char *text, int start, int end) |
726f6388 JA |
2810 | @{ |
2811 | char **matches; | |
2812 | ||
2813 | matches = (char **)NULL; | |
2814 | ||
2815 | /* If this word is at the start of the line, then it is a command | |
2816 | to complete. Otherwise it is the name of a file in the current | |
2817 | directory. */ | |
2818 | if (start == 0) | |
28ef6c31 | 2819 | matches = rl_completion_matches (text, command_generator); |
726f6388 JA |
2820 | |
2821 | return (matches); | |
2822 | @} | |
2823 | ||
3185942a JA |
2824 | /* Generator function for command completion. STATE lets us know whether |
2825 | to start from scratch; without any state (i.e. STATE == 0), then we | |
2826 | start at the top of the list. */ | |
726f6388 | 2827 | char * |
b8c60bc9 | 2828 | command_generator (const char *text, int state) |
726f6388 JA |
2829 | @{ |
2830 | static int list_index, len; | |
2831 | char *name; | |
2832 | ||
3185942a JA |
2833 | /* If this is a new word to complete, initialize now. This includes |
2834 | saving the length of TEXT for efficiency, and initializing the index | |
2835 | variable to 0. */ | |
726f6388 JA |
2836 | if (!state) |
2837 | @{ | |
2838 | list_index = 0; | |
2839 | len = strlen (text); | |
2840 | @} | |
2841 | ||
3185942a | 2842 | /* Return the next name which partially matches from the command list. */ |
726f6388 JA |
2843 | while (name = commands[list_index].name) |
2844 | @{ | |
2845 | list_index++; | |
2846 | ||
2847 | if (strncmp (name, text, len) == 0) | |
2848 | return (dupstr(name)); | |
2849 | @} | |
2850 | ||
2851 | /* If no names matched, then return NULL. */ | |
2852 | return ((char *)NULL); | |
2853 | @} | |
2854 | ||
2855 | /* **************************************************************** */ | |
2856 | /* */ | |
2857 | /* FileMan Commands */ | |
2858 | /* */ | |
2859 | /* **************************************************************** */ | |
2860 | ||
2861 | /* String to pass to system (). This is for the LIST, VIEW and RENAME | |
2862 | commands. */ | |
2863 | static char syscom[1024]; | |
2864 | ||
2865 | /* List the file(s) named in arg. */ | |
b8c60bc9 CR |
2866 | int |
2867 | com_list (char *arg) | |
726f6388 JA |
2868 | @{ |
2869 | if (!arg) | |
2870 | arg = ""; | |
2871 | ||
b8c60bc9 | 2872 | snprintf (syscom, sizeof (syscom), "ls -FClg %s", arg); |
726f6388 JA |
2873 | return (system (syscom)); |
2874 | @} | |
2875 | ||
b8c60bc9 CR |
2876 | int |
2877 | com_view (char *arg) | |
726f6388 JA |
2878 | @{ |
2879 | if (!valid_argument ("view", arg)) | |
2880 | return 1; | |
2881 | ||
3185942a JA |
2882 | #if defined (__MSDOS__) |
2883 | /* more.com doesn't grok slashes in pathnames */ | |
b8c60bc9 | 2884 | snprintf (syscom, sizeof (syscom), "less %s", arg); |
3185942a | 2885 | #else |
b8c60bc9 | 2886 | snprintf (syscom, sizeof (syscom), "more %s", arg); |
3185942a | 2887 | #endif |
726f6388 JA |
2888 | return (system (syscom)); |
2889 | @} | |
2890 | ||
b8c60bc9 CR |
2891 | int |
2892 | com_rename (char *arg) | |
726f6388 JA |
2893 | @{ |
2894 | too_dangerous ("rename"); | |
2895 | return (1); | |
2896 | @} | |
2897 | ||
b8c60bc9 CR |
2898 | int |
2899 | com_stat (char *arg) | |
726f6388 JA |
2900 | @{ |
2901 | struct stat finfo; | |
2902 | ||
2903 | if (!valid_argument ("stat", arg)) | |
2904 | return (1); | |
2905 | ||
2906 | if (stat (arg, &finfo) == -1) | |
2907 | @{ | |
2908 | perror (arg); | |
2909 | return (1); | |
2910 | @} | |
2911 | ||
2912 | printf ("Statistics for `%s':\n", arg); | |
2913 | ||
3185942a JA |
2914 | printf ("%s has %d link%s, and is %d byte%s in length.\n", |
2915 | arg, | |
726f6388 JA |
2916 | finfo.st_nlink, |
2917 | (finfo.st_nlink == 1) ? "" : "s", | |
2918 | finfo.st_size, | |
2919 | (finfo.st_size == 1) ? "" : "s"); | |
2920 | printf ("Inode Last Change at: %s", ctime (&finfo.st_ctime)); | |
2921 | printf (" Last access at: %s", ctime (&finfo.st_atime)); | |
2922 | printf (" Last modified at: %s", ctime (&finfo.st_mtime)); | |
2923 | return (0); | |
2924 | @} | |
2925 | ||
b8c60bc9 CR |
2926 | int |
2927 | com_delete (char *arg) | |
726f6388 JA |
2928 | @{ |
2929 | too_dangerous ("delete"); | |
2930 | return (1); | |
2931 | @} | |
2932 | ||
2933 | /* Print out help for ARG, or for all of the commands if ARG is | |
2934 | not present. */ | |
b8c60bc9 CR |
2935 | int |
2936 | com_help (char *arg) | |
726f6388 JA |
2937 | @{ |
2938 | register int i; | |
2939 | int printed = 0; | |
2940 | ||
2941 | for (i = 0; commands[i].name; i++) | |
2942 | @{ | |
2943 | if (!*arg || (strcmp (arg, commands[i].name) == 0)) | |
2944 | @{ | |
2945 | printf ("%s\t\t%s.\n", commands[i].name, commands[i].doc); | |
2946 | printed++; | |
2947 | @} | |
2948 | @} | |
2949 | ||
2950 | if (!printed) | |
2951 | @{ | |
8868edaf | 2952 | printf ("No commands match `%s'. Possibilities are:\n", arg); |
726f6388 JA |
2953 | |
2954 | for (i = 0; commands[i].name; i++) | |
2955 | @{ | |
2956 | /* Print in six columns. */ | |
2957 | if (printed == 6) | |
2958 | @{ | |
2959 | printed = 0; | |
2960 | printf ("\n"); | |
2961 | @} | |
2962 | ||
2963 | printf ("%s\t", commands[i].name); | |
2964 | printed++; | |
2965 | @} | |
2966 | ||
2967 | if (printed) | |
2968 | printf ("\n"); | |
2969 | @} | |
2970 | return (0); | |
2971 | @} | |
2972 | ||
2973 | /* Change to the directory ARG. */ | |
b8c60bc9 CR |
2974 | int |
2975 | com_cd (char *arg) | |
726f6388 JA |
2976 | @{ |
2977 | if (chdir (arg) == -1) | |
2978 | @{ | |
2979 | perror (arg); | |
2980 | return 1; | |
2981 | @} | |
2982 | ||
2983 | com_pwd (""); | |
2984 | return (0); | |
2985 | @} | |
2986 | ||
2987 | /* Print out the current working directory. */ | |
b8c60bc9 CR |
2988 | int |
2989 | com_pwd (char *ignore) | |
726f6388 JA |
2990 | @{ |
2991 | char dir[1024], *s; | |
2992 | ||
28ef6c31 | 2993 | s = getcwd (dir, sizeof(dir) - 1); |
726f6388 JA |
2994 | if (s == 0) |
2995 | @{ | |
2996 | printf ("Error getting pwd: %s\n", dir); | |
2997 | return 1; | |
2998 | @} | |
2999 | ||
3000 | printf ("Current directory is %s\n", dir); | |
3001 | return 0; | |
3002 | @} | |
3003 | ||
3185942a | 3004 | /* The user wishes to quit using this program. Just set DONE non-zero. */ |
b8c60bc9 CR |
3005 | int |
3006 | com_quit (char *arg) | |
726f6388 JA |
3007 | @{ |
3008 | done = 1; | |
3009 | return (0); | |
3010 | @} | |
3011 | ||
3012 | /* Function which tells you that you can't do this. */ | |
b8c60bc9 CR |
3013 | void |
3014 | too_dangerous (char *caller) | |
726f6388 JA |
3015 | @{ |
3016 | fprintf (stderr, | |
3185942a | 3017 | "%s: Too dangerous for me to distribute. Write it yourself.\n", |
726f6388 JA |
3018 | caller); |
3019 | @} | |
3020 | ||
3185942a JA |
3021 | /* Return non-zero if ARG is a valid argument for CALLER, else print |
3022 | an error message and return zero. */ | |
726f6388 | 3023 | int |
b8c60bc9 | 3024 | valid_argument (char *caller, char *arg) |
726f6388 JA |
3025 | @{ |
3026 | if (!arg || !*arg) | |
3027 | @{ | |
3028 | fprintf (stderr, "%s: Argument required.\n", caller); | |
3029 | return (0); | |
3030 | @} | |
3031 | ||
3032 | return (1); | |
3033 | @} | |
3034 | @end smallexample |