1 @comment %**start of header (This is for running Texinfo on a region.)
2 @setfilename rluser.info
3 @comment %**end of header (This is for running Texinfo on a region.)
6 This file documents the end user interface to the GNU command line
7 editing features. It is to be an appendix to manuals for programs which
8 use these features. There is a document entitled "readline.texinfo"
9 which contains both end-user and programmer documentation for the
12 Copyright (C) 1988--2011 Free Software Foundation, Inc.
14 Authored by Brian Fox and Chet Ramey.
16 Permission is granted to process this file through Tex and print the
17 results, provided the printed document carries copying permission notice
18 identical to this one except for the removal of this paragraph (this
19 paragraph not being relevant to the printed manual).
21 Permission is granted to make and distribute verbatim copies of this manual
22 provided the copyright notice and this permission notice are preserved on
25 Permission is granted to copy and distribute modified versions of this
26 manual under the conditions for verbatim copying, provided also that the
27 GNU Copyright statement is available to the distributee, and provided that
28 the entire resulting derived work is distributed under the terms of a
29 permission notice identical to this one.
31 Permission is granted to copy and distribute translations of this manual
32 into another language, under the above conditions for modified versions.
35 @comment If you are including this manual as an appendix, then set the
36 @comment variable readline-appendix.
42 @node Command Line Editing
43 @chapter Command Line Editing
45 This chapter describes the basic features of the @sc{gnu}
46 command line editing interface.
48 Command line editing is provided by the Readline library, which is
49 used by several different programs, including Bash.
50 Command line editing is enabled by default when using an interactive shell,
51 unless the @option{--noediting} option is supplied at shell invocation.
52 Line editing is also used when using the @option{-e} option to the
53 @code{read} builtin command (@pxref{Bash Builtins}).
54 By default, the line editing commands are similar to those of Emacs.
55 A vi-style line editing interface is also available.
56 Line editing can be enabled at any time using the @option{-o emacs} or
57 @option{-o vi} options to the @code{set} builtin command
58 (@pxref{The Set Builtin}), or disabled using the @option{+o emacs} or
59 @option{+o vi} options to @code{set}.
63 * Introduction and Notation:: Notation used in this text.
64 * Readline Interaction:: The minimum set of commands for editing a line.
65 * Readline Init File:: Customizing Readline from a user's view.
66 * Bindable Readline Commands:: A description of most of the Readline commands
68 * Readline vi Mode:: A short description of how to make Readline
69 behave like the vi editor.
71 * Programmable Completion:: How to specify the possible completions for
73 * Programmable Completion Builtins:: Builtin commands to specify how to
74 complete arguments for a particular command.
78 @node Introduction and Notation
79 @section Introduction to Line Editing
81 The following paragraphs describe the notation used to represent
84 The text @kbd{C-k} is read as `Control-K' and describes the character
85 produced when the @key{k} key is pressed while the Control key
88 The text @kbd{M-k} is read as `Meta-K' and describes the character
89 produced when the Meta key (if you have one) is depressed, and the @key{k}
91 The Meta key is labeled @key{ALT} on many keyboards.
92 On keyboards with two keys labeled @key{ALT} (usually to either side of
93 the space bar), the @key{ALT} on the left side is generally set to
95 The @key{ALT} key on the right may also be configured to work as a
96 Meta key or may be configured as some other modifier, such as a
97 Compose key for typing accented characters.
99 If you do not have a Meta or @key{ALT} key, or another key working as
100 a Meta key, the identical keystroke can be generated by typing @key{ESC}
101 @emph{first}, and then typing @key{k}.
102 Either process is known as @dfn{metafying} the @key{k} key.
104 The text @kbd{M-C-k} is read as `Meta-Control-k' and describes the
105 character produced by @dfn{metafying} @kbd{C-k}.
107 In addition, several keys have their own names. Specifically,
108 @key{DEL}, @key{ESC}, @key{LFD}, @key{SPC}, @key{RET}, and @key{TAB} all
109 stand for themselves when seen in this text, or in an init file
110 (@pxref{Readline Init File}).
111 If your keyboard lacks a @key{LFD} key, typing @key{C-j} will
112 produce the desired character.
113 The @key{RET} key may be labeled @key{Return} or @key{Enter} on
116 @node Readline Interaction
117 @section Readline Interaction
118 @cindex interaction, readline
120 Often during an interactive session you type in a long line of text,
121 only to notice that the first word on the line is misspelled. The
122 Readline library gives you a set of commands for manipulating the text
123 as you type it in, allowing you to just fix your typo, and not forcing
124 you to retype the majority of the line. Using these editing commands,
125 you move the cursor to the place that needs correction, and delete or
126 insert the text of the corrections. Then, when you are satisfied with
127 the line, you simply press @key{RET}. You do not have to be at the
128 end of the line to press @key{RET}; the entire line is accepted
129 regardless of the location of the cursor within the line.
132 * Readline Bare Essentials:: The least you need to know about Readline.
133 * Readline Movement Commands:: Moving about the input line.
134 * Readline Killing Commands:: How to delete text, and how to get it back!
135 * Readline Arguments:: Giving numeric arguments to commands.
136 * Searching:: Searching through previous lines.
139 @node Readline Bare Essentials
140 @subsection Readline Bare Essentials
141 @cindex notation, readline
142 @cindex command editing
143 @cindex editing command lines
145 In order to enter characters into the line, simply type them. The typed
146 character appears where the cursor was, and then the cursor moves one
147 space to the right. If you mistype a character, you can use your
148 erase character to back up and delete the mistyped character.
150 Sometimes you may mistype a character, and
151 not notice the error until you have typed several other characters. In
152 that case, you can type @kbd{C-b} to move the cursor to the left, and then
153 correct your mistake. Afterwards, you can move the cursor to the right
156 When you add text in the middle of a line, you will notice that characters
157 to the right of the cursor are `pushed over' to make room for the text
158 that you have inserted. Likewise, when you delete text behind the cursor,
159 characters to the right of the cursor are `pulled back' to fill in the
160 blank space created by the removal of the text. A list of the bare
161 essentials for editing the text of an input line follows.
165 Move back one character.
167 Move forward one character.
168 @item @key{DEL} or @key{Backspace}
169 Delete the character to the left of the cursor.
171 Delete the character underneath the cursor.
172 @item @w{Printing characters}
173 Insert the character into the line at the cursor.
174 @item @kbd{C-_} or @kbd{C-x C-u}
175 Undo the last editing command. You can undo all the way back to an
180 (Depending on your configuration, the @key{Backspace} key be set to
181 delete the character to the left of the cursor and the @key{DEL} key set
182 to delete the character underneath the cursor, like @kbd{C-d}, rather
183 than the character to the left of the cursor.)
185 @node Readline Movement Commands
186 @subsection Readline Movement Commands
189 The above table describes the most basic keystrokes that you need
190 in order to do editing of the input line. For your convenience, many
191 other commands have been added in addition to @kbd{C-b}, @kbd{C-f},
192 @kbd{C-d}, and @key{DEL}. Here are some commands for moving more rapidly
197 Move to the start of the line.
199 Move to the end of the line.
201 Move forward a word, where a word is composed of letters and digits.
203 Move backward a word.
205 Clear the screen, reprinting the current line at the top.
208 Notice how @kbd{C-f} moves forward a character, while @kbd{M-f} moves
209 forward a word. It is a loose convention that control keystrokes
210 operate on characters while meta keystrokes operate on words.
212 @node Readline Killing Commands
213 @subsection Readline Killing Commands
218 @dfn{Killing} text means to delete the text from the line, but to save
219 it away for later use, usually by @dfn{yanking} (re-inserting)
220 it back into the line.
221 (`Cut' and `paste' are more recent jargon for `kill' and `yank'.)
223 If the description for a command says that it `kills' text, then you can
224 be sure that you can get the text back in a different (or the same)
227 When you use a kill command, the text is saved in a @dfn{kill-ring}.
228 Any number of consecutive kills save all of the killed text together, so
229 that when you yank it back, you get it all. The kill
230 ring is not line specific; the text that you killed on a previously
231 typed line is available to be yanked back later, when you are typing
235 Here is the list of commands for killing text.
239 Kill the text from the current cursor position to the end of the line.
242 Kill from the cursor to the end of the current word, or, if between
243 words, to the end of the next word.
244 Word boundaries are the same as those used by @kbd{M-f}.
247 Kill from the cursor the start of the current word, or, if between
248 words, to the start of the previous word.
249 Word boundaries are the same as those used by @kbd{M-b}.
252 Kill from the cursor to the previous whitespace. This is different than
253 @kbd{M-@key{DEL}} because the word boundaries differ.
257 Here is how to @dfn{yank} the text back into the line. Yanking
258 means to copy the most-recently-killed text from the kill buffer.
262 Yank the most recently killed text back into the buffer at the cursor.
265 Rotate the kill-ring, and yank the new top. You can only do this if
266 the prior command is @kbd{C-y} or @kbd{M-y}.
269 @node Readline Arguments
270 @subsection Readline Arguments
272 You can pass numeric arguments to Readline commands. Sometimes the
273 argument acts as a repeat count, other times it is the @i{sign} of the
274 argument that is significant. If you pass a negative argument to a
275 command which normally acts in a forward direction, that command will
276 act in a backward direction. For example, to kill text back to the
277 start of the line, you might type @samp{M-- C-k}.
279 The general way to pass numeric arguments to a command is to type meta
280 digits before the command. If the first `digit' typed is a minus
281 sign (@samp{-}), then the sign of the argument will be negative. Once
282 you have typed one meta digit to get the argument started, you can type
283 the remainder of the digits, and then the command. For example, to give
284 the @kbd{C-d} command an argument of 10, you could type @samp{M-1 0 C-d},
285 which will delete the next ten characters on the input line.
288 @subsection Searching for Commands in the History
290 Readline provides commands for searching through the command history
292 (@pxref{Bash History Facilities})
294 for lines containing a specified string.
295 There are two search modes: @dfn{incremental} and @dfn{non-incremental}.
297 Incremental searches begin before the user has finished typing the
299 As each character of the search string is typed, Readline displays
300 the next entry from the history matching the string typed so far.
301 An incremental search requires only as many characters as needed to
302 find the desired history entry.
303 To search backward in the history for a particular string, type
304 @kbd{C-r}. Typing @kbd{C-s} searches forward through the history.
305 The characters present in the value of the @code{isearch-terminators} variable
306 are used to terminate an incremental search.
307 If that variable has not been assigned a value, the @key{ESC} and
308 @kbd{C-J} characters will terminate an incremental search.
309 @kbd{C-g} will abort an incremental search and restore the original line.
310 When the search is terminated, the history entry containing the
311 search string becomes the current line.
313 To find other matching entries in the history list, type @kbd{C-r} or
314 @kbd{C-s} as appropriate.
315 This will search backward or forward in the history for the next
316 entry matching the search string typed so far.
317 Any other key sequence bound to a Readline command will terminate
318 the search and execute that command.
319 For instance, a @key{RET} will terminate the search and accept
320 the line, thereby executing the command from the history list.
321 A movement command will terminate the search, make the last line found
322 the current line, and begin editing.
324 Readline remembers the last incremental search string. If two
325 @kbd{C-r}s are typed without any intervening characters defining a new
326 search string, any remembered search string is used.
328 Non-incremental searches read the entire search string before starting
329 to search for matching history lines. The search string may be
330 typed by the user or be part of the contents of the current line.
332 @node Readline Init File
333 @section Readline Init File
334 @cindex initialization file, readline
336 Although the Readline library comes with a set of Emacs-like
337 keybindings installed by default, it is possible to use a different set
339 Any user can customize programs that use Readline by putting
340 commands in an @dfn{inputrc} file, conventionally in his home directory.
343 file is taken from the value of the shell variable @env{INPUTRC}. If
345 @ifclear BashFeatures
346 file is taken from the value of the environment variable @env{INPUTRC}. If
348 that variable is unset, the default is @file{~/.inputrc}. If that
349 file does not exist or cannot be read, the ultimate default is
352 When a program which uses the Readline library starts up, the
353 init file is read, and the key bindings are set.
355 In addition, the @code{C-x C-r} command re-reads this init file, thus
356 incorporating any changes that you might have made to it.
359 * Readline Init File Syntax:: Syntax for the commands in the inputrc file.
361 * Conditional Init Constructs:: Conditional key bindings in the inputrc file.
363 * Sample Init File:: An example inputrc file.
366 @node Readline Init File Syntax
367 @subsection Readline Init File Syntax
369 There are only a few basic constructs allowed in the
370 Readline init file. Blank lines are ignored.
371 Lines beginning with a @samp{#} are comments.
372 Lines beginning with a @samp{$} indicate conditional
373 constructs (@pxref{Conditional Init Constructs}). Other lines
374 denote variable settings and key bindings.
377 @item Variable Settings
378 You can modify the run-time behavior of Readline by
379 altering the values of variables in Readline
380 using the @code{set} command within the init file.
381 The syntax is simple:
384 set @var{variable} @var{value}
388 Here, for example, is how to
389 change from the default Emacs-like key binding to use
390 @code{vi} line editing commands:
396 Variable names and values, where appropriate, are recognized without regard
397 to case. Unrecognized variable names are ignored.
399 Boolean variables (those that can be set to on or off) are set to on if
400 the value is null or empty, @var{on} (case-insensitive), or 1. Any other
401 value results in the variable being set to off.
404 The @w{@code{bind -V}} command lists the current Readline variable names
405 and values. @xref{Bash Builtins}.
408 A great deal of run-time behavior is changeable with the following
411 @cindex variables, readline
416 Controls what happens when Readline wants to ring the terminal bell.
417 If set to @samp{none}, Readline never rings the bell. If set to
418 @samp{visible}, Readline uses a visible bell if one is available.
419 If set to @samp{audible} (the default), Readline attempts to ring
422 @item bind-tty-special-chars
423 @vindex bind-tty-special-chars
424 If set to @samp{on}, Readline attempts to bind the control characters
425 treated specially by the kernel's terminal driver to their Readline
429 @vindex comment-begin
430 The string to insert at the beginning of the line when the
431 @code{insert-comment} command is executed. The default value
434 @item completion-display-width
435 @vindex completion-display-width
436 The number of screen columns used to display possible matches
437 when performing completion.
438 The value is ignored if it is less than 0 or greater than the terminal
440 A value of 0 will cause matches to be displayed one per line.
441 The default value is -1.
443 @item completion-ignore-case
444 @vindex completion-ignore-case
445 If set to @samp{on}, Readline performs filename matching and completion
446 in a case-insensitive fashion.
447 The default value is @samp{off}.
449 @item completion-map-case
450 @vindex completion-map-case
451 If set to @samp{on}, and @var{completion-ignore-case} is enabled, Readline
452 treats hyphens (@samp{-}) and underscores (@samp{_}) as equivalent when
453 performing case-insensitive filename matching and completion.
455 @item completion-prefix-display-length
456 @vindex completion-prefix-display-length
457 The length in characters of the common prefix of a list of possible
458 completions that is displayed without modification. When set to a
459 value greater than zero, common prefixes longer than this value are
460 replaced with an ellipsis when displaying possible completions.
462 @item completion-query-items
463 @vindex completion-query-items
464 The number of possible completions that determines when the user is
465 asked whether the list of possibilities should be displayed.
466 If the number of possible completions is greater than this value,
467 Readline will ask the user whether or not he wishes to view
468 them; otherwise, they are simply listed.
469 This variable must be set to an integer value greater than or equal to 0.
470 A negative value means Readline should never ask.
471 The default limit is @code{100}.
475 If set to @samp{on}, Readline will convert characters with the
476 eighth bit set to an @sc{ascii} key sequence by stripping the eighth
477 bit and prefixing an @key{ESC} character, converting them to a
478 meta-prefixed key sequence. The default value is @samp{on}.
480 @item disable-completion
481 @vindex disable-completion
482 If set to @samp{On}, Readline will inhibit word completion.
483 Completion characters will be inserted into the line as if they had
484 been mapped to @code{self-insert}. The default is @samp{off}.
488 The @code{editing-mode} variable controls which default set of
489 key bindings is used. By default, Readline starts up in Emacs editing
490 mode, where the keystrokes are most similar to Emacs. This variable can be
491 set to either @samp{emacs} or @samp{vi}.
493 @item echo-control-characters
494 When set to @samp{on}, on operating systems that indicate they support it,
495 readline echoes a character corresponding to a signal generated from the
496 keyboard. The default is @samp{on}.
499 @vindex enable-keypad
500 When set to @samp{on}, Readline will try to enable the application
501 keypad when it is called. Some systems need this to enable the
502 arrow keys. The default is @samp{off}.
504 @item enable-meta-key
505 When set to @samp{on}, Readline will try to enable any meta modifier
506 key the terminal claims to support when it is called. On many terminals,
507 the meta key is used to send eight-bit characters.
508 The default is @samp{on}.
512 If set to @samp{on}, tilde expansion is performed when Readline
513 attempts word completion. The default is @samp{off}.
515 @item history-preserve-point
516 @vindex history-preserve-point
517 If set to @samp{on}, the history code attempts to place the point (the
518 current cursor position) at the
519 same location on each history line retrieved with @code{previous-history}
520 or @code{next-history}. The default is @samp{off}.
524 Set the maximum number of history entries saved in the history list. If
525 set to zero, the number of entries in the history list is not limited.
527 @item horizontal-scroll-mode
528 @vindex horizontal-scroll-mode
529 This variable can be set to either @samp{on} or @samp{off}. Setting it
530 to @samp{on} means that the text of the lines being edited will scroll
531 horizontally on a single screen line when they are longer than the width
532 of the screen, instead of wrapping onto a new screen line. By default,
533 this variable is set to @samp{off}.
538 If set to @samp{on}, Readline will enable eight-bit input (it
539 will not clear the eighth bit in the characters it reads),
540 regardless of what the terminal claims it can support. The
541 default value is @samp{off}. The name @code{meta-flag} is a
542 synonym for this variable.
544 @item isearch-terminators
545 @vindex isearch-terminators
546 The string of characters that should terminate an incremental search without
547 subsequently executing the character as a command (@pxref{Searching}).
548 If this variable has not been given a value, the characters @key{ESC} and
549 @kbd{C-J} will terminate an incremental search.
553 Sets Readline's idea of the current keymap for key binding commands.
554 Acceptable @code{keymap} names are
556 @code{emacs-standard},
561 @code{vi-command}, and
563 @code{vi} is equivalent to @code{vi-command}; @code{emacs} is
564 equivalent to @code{emacs-standard}. The default value is @code{emacs}.
565 The value of the @code{editing-mode} variable also affects the
568 @item mark-directories
569 If set to @samp{on}, completed directory names have a slash
570 appended. The default is @samp{on}.
572 @item mark-modified-lines
573 @vindex mark-modified-lines
574 This variable, when set to @samp{on}, causes Readline to display an
575 asterisk (@samp{*}) at the start of history lines which have been modified.
576 This variable is @samp{off} by default.
578 @item mark-symlinked-directories
579 @vindex mark-symlinked-directories
580 If set to @samp{on}, completed names which are symbolic links
581 to directories have a slash appended (subject to the value of
582 @code{mark-directories}).
583 The default is @samp{off}.
585 @item match-hidden-files
586 @vindex match-hidden-files
587 This variable, when set to @samp{on}, causes Readline to match files whose
588 names begin with a @samp{.} (hidden files) when performing filename
590 If set to @samp{off}, the leading @samp{.} must be
591 supplied by the user in the filename to be completed.
592 This variable is @samp{on} by default.
594 @item menu-complete-display-prefix
595 @vindex menu-complete-display-prefix
596 If set to @samp{on}, menu completion displays the common prefix of the
597 list of possible completions (which may be empty) before cycling through
598 the list. The default is @samp{off}.
602 If set to @samp{on}, Readline will display characters with the
603 eighth bit set directly rather than as a meta-prefixed escape
604 sequence. The default is @samp{off}.
606 @item page-completions
607 @vindex page-completions
608 If set to @samp{on}, Readline uses an internal @code{more}-like pager
609 to display a screenful of possible completions at a time.
610 This variable is @samp{on} by default.
612 @item print-completions-horizontally
613 If set to @samp{on}, Readline will display completions with matches
614 sorted horizontally in alphabetical order, rather than down the screen.
615 The default is @samp{off}.
617 @item revert-all-at-newline
618 @vindex revert-all-at-newline
619 If set to @samp{on}, Readline will undo all changes to history lines
620 before returning when @code{accept-line} is executed. By default,
621 history lines may be modified and retain individual undo lists across
622 calls to @code{readline}. The default is @samp{off}.
624 @item show-all-if-ambiguous
625 @vindex show-all-if-ambiguous
626 This alters the default behavior of the completion functions. If
628 words which have more than one possible completion cause the
629 matches to be listed immediately instead of ringing the bell.
630 The default value is @samp{off}.
632 @item show-all-if-unmodified
633 @vindex show-all-if-unmodified
634 This alters the default behavior of the completion functions in
635 a fashion similar to @var{show-all-if-ambiguous}.
637 words which have more than one possible completion without any
638 possible partial completion (the possible completions don't share
639 a common prefix) cause the matches to be listed immediately instead
641 The default value is @samp{off}.
643 @item skip-completed-text
644 @vindex skip-completed-text
645 If set to @samp{on}, this alters the default completion behavior when
646 inserting a single match into the line. It's only active when
647 performing completion in the middle of a word. If enabled, readline
648 does not insert characters from the completion that match characters
649 after point in the word being completed, so portions of the word
650 following the cursor are not duplicated.
651 For instance, if this is enabled, attempting completion when the cursor
652 is after the @samp{e} in @samp{Makefile} will result in @samp{Makefile}
653 rather than @samp{Makefilefile}, assuming there is a single possible
655 The default value is @samp{off}.
658 @vindex visible-stats
659 If set to @samp{on}, a character denoting a file's type
660 is appended to the filename when listing possible
661 completions. The default is @samp{off}.
666 The syntax for controlling key bindings in the init file is
667 simple. First you need to find the name of the command that you
668 want to change. The following sections contain tables of the command
669 name, the default keybinding, if any, and a short description of what
672 Once you know the name of the command, simply place on a line
673 in the init file the name of the key
674 you wish to bind the command to, a colon, and then the name of the
676 There can be no space between the key name and the colon -- that will be
677 interpreted as part of the key name.
678 The name of the key can be expressed in different ways, depending on
679 what you find most comfortable.
681 In addition to command names, readline allows keys to be bound
682 to a string that is inserted when the key is pressed (a @var{macro}).
685 The @w{@code{bind -p}} command displays Readline function names and
686 bindings in a format that can put directly into an initialization file.
687 @xref{Bash Builtins}.
691 @item @w{@var{keyname}: @var{function-name} or @var{macro}}
692 @var{keyname} is the name of a key spelled out in English. For example:
694 Control-u: universal-argument
695 Meta-Rubout: backward-kill-word
696 Control-o: "> output"
699 In the above example, @kbd{C-u} is bound to the function
700 @code{universal-argument},
701 @kbd{M-DEL} is bound to the function @code{backward-kill-word}, and
702 @kbd{C-o} is bound to run the macro
703 expressed on the right hand side (that is, to insert the text
704 @samp{> output} into the line).
706 A number of symbolic character names are recognized while
707 processing this key binding syntax:
721 @item @w{"@var{keyseq}": @var{function-name} or @var{macro}}
722 @var{keyseq} differs from @var{keyname} above in that strings
723 denoting an entire key sequence can be specified, by placing
724 the key sequence in double quotes. Some @sc{gnu} Emacs style key
725 escapes can be used, as in the following example, but the
726 special character names are not recognized.
729 "\C-u": universal-argument
730 "\C-x\C-r": re-read-init-file
731 "\e[11~": "Function Key 1"
734 In the above example, @kbd{C-u} is again bound to the function
735 @code{universal-argument} (just as it was in the first example),
736 @samp{@kbd{C-x} @kbd{C-r}} is bound to the function @code{re-read-init-file},
737 and @samp{@key{ESC} @key{[} @key{1} @key{1} @key{~}} is bound to insert
738 the text @samp{Function Key 1}.
742 The following @sc{gnu} Emacs style escape sequences are available when
743 specifying key sequences:
755 @key{"}, a double quotation mark
757 @key{'}, a single quote or apostrophe
760 In addition to the @sc{gnu} Emacs style escape sequences, a second
761 set of backslash escapes is available:
781 the eight-bit character whose value is the octal value @var{nnn}
782 (one to three digits)
784 the eight-bit character whose value is the hexadecimal value @var{HH}
785 (one or two hex digits)
788 When entering the text of a macro, single or double quotes must
789 be used to indicate a macro definition.
790 Unquoted text is assumed to be a function name.
791 In the macro body, the backslash escapes described above are expanded.
792 Backslash will quote any other character in the macro text,
793 including @samp{"} and @samp{'}.
794 For example, the following binding will make @samp{@kbd{C-x} \}
795 insert a single @samp{\} into the line:
802 @node Conditional Init Constructs
803 @subsection Conditional Init Constructs
805 Readline implements a facility similar in spirit to the conditional
806 compilation features of the C preprocessor which allows key
807 bindings and variable settings to be performed as the result
808 of tests. There are four parser directives used.
812 The @code{$if} construct allows bindings to be made based on the
813 editing mode, the terminal being used, or the application using
814 Readline. The text of the test extends to the end of the line;
815 no characters are required to isolate it.
819 The @code{mode=} form of the @code{$if} directive is used to test
820 whether Readline is in @code{emacs} or @code{vi} mode.
821 This may be used in conjunction
822 with the @samp{set keymap} command, for instance, to set bindings in
823 the @code{emacs-standard} and @code{emacs-ctlx} keymaps only if
824 Readline is starting out in @code{emacs} mode.
827 The @code{term=} form may be used to include terminal-specific
828 key bindings, perhaps to bind the key sequences output by the
829 terminal's function keys. The word on the right side of the
830 @samp{=} is tested against both the full name of the terminal and
831 the portion of the terminal name before the first @samp{-}. This
832 allows @code{sun} to match both @code{sun} and @code{sun-cmd},
836 The @var{application} construct is used to include
837 application-specific settings. Each program using the Readline
838 library sets the @var{application name}, and you can test for
840 This could be used to bind key sequences to functions useful for
841 a specific program. For instance, the following command adds a
842 key sequence that quotes the current or previous word in Bash:
845 # Quote the current or previous word
846 "\C-xq": "\eb\"\ef\""
852 This command, as seen in the previous example, terminates an
856 Commands in this branch of the @code{$if} directive are executed if
860 This directive takes a single filename as an argument and reads commands
861 and bindings from that file.
862 For example, the following directive reads from @file{/etc/inputrc}:
864 $include /etc/inputrc
868 @node Sample Init File
869 @subsection Sample Init File
871 Here is an example of an @var{inputrc} file. This illustrates key
872 binding, variable assignment, and conditional syntax.
876 # This file controls the behaviour of line input editing for
877 # programs that use the GNU Readline library. Existing
878 # programs include FTP, Bash, and GDB.
880 # You can re-read the inputrc file with C-x C-r.
881 # Lines beginning with '#' are comments.
883 # First, include any systemwide bindings and variable
884 # assignments from /etc/Inputrc
885 $include /etc/Inputrc
888 # Set various bindings for emacs mode.
890 set editing-mode emacs
894 Meta-Control-h: backward-kill-word Text after the function name is ignored
897 # Arrow keys in keypad mode
899 #"\M-OD": backward-char
900 #"\M-OC": forward-char
901 #"\M-OA": previous-history
902 #"\M-OB": next-history
904 # Arrow keys in ANSI mode
906 "\M-[D": backward-char
907 "\M-[C": forward-char
908 "\M-[A": previous-history
909 "\M-[B": next-history
911 # Arrow keys in 8 bit keypad mode
913 #"\M-\C-OD": backward-char
914 #"\M-\C-OC": forward-char
915 #"\M-\C-OA": previous-history
916 #"\M-\C-OB": next-history
918 # Arrow keys in 8 bit ANSI mode
920 #"\M-\C-[D": backward-char
921 #"\M-\C-[C": forward-char
922 #"\M-\C-[A": previous-history
923 #"\M-\C-[B": next-history
929 # An old-style binding. This happens to be the default.
932 # Macros that are convenient for shell interaction
935 "\C-xp": "PATH=$@{PATH@}\e\C-e\C-a\ef\C-f"
936 # prepare to type a quoted word --
937 # insert open and close double quotes
938 # and move to just after the open quote
940 # insert a backslash (testing backslash escapes
941 # in sequences and macros)
943 # Quote the current or previous word
944 "\C-xq": "\eb\"\ef\""
945 # Add a binding to refresh the line, which is unbound
946 "\C-xr": redraw-current-line
947 # Edit variable on current line.
948 "\M-\C-v": "\C-a\C-k$\C-y\M-\C-e\C-a\C-y="
951 # use a visible bell if one is available
952 set bell-style visible
954 # don't strip characters to 7 bits when reading
957 # allow iso-latin1 characters to be inserted rather
958 # than converted to prefix-meta sequences
961 # display characters with the eighth bit set directly
962 # rather than as meta-prefixed characters
965 # if there are more than 150 possible completions for
966 # a word, ask the user if he wants to see all of them
967 set completion-query-items 150
973 "\M-.": yank-last-arg
977 @node Bindable Readline Commands
978 @section Bindable Readline Commands
981 * Commands For Moving:: Moving about the line.
982 * Commands For History:: Getting at previous lines.
983 * Commands For Text:: Commands for changing text.
984 * Commands For Killing:: Commands for killing and yanking.
985 * Numeric Arguments:: Specifying numeric arguments, repeat counts.
986 * Commands For Completion:: Getting Readline to do the typing for you.
987 * Keyboard Macros:: Saving and re-executing typed characters
988 * Miscellaneous Commands:: Other miscellaneous commands.
991 This section describes Readline commands that may be bound to key
994 You can list your key bindings by executing
995 @w{@code{bind -P}} or, for a more terse format, suitable for an
996 @var{inputrc} file, @w{@code{bind -p}}. (@xref{Bash Builtins}.)
998 Command names without an accompanying key sequence are unbound by default.
1000 In the following descriptions, @dfn{point} refers to the current cursor
1001 position, and @dfn{mark} refers to a cursor position saved by the
1002 @code{set-mark} command.
1003 The text between the point and mark is referred to as the @dfn{region}.
1005 @node Commands For Moving
1006 @subsection Commands For Moving
1008 @item beginning-of-line (C-a)
1009 Move to the start of the current line.
1011 @item end-of-line (C-e)
1012 Move to the end of the line.
1014 @item forward-char (C-f)
1015 Move forward a character.
1017 @item backward-char (C-b)
1018 Move back a character.
1020 @item forward-word (M-f)
1021 Move forward to the end of the next word.
1022 Words are composed of letters and digits.
1024 @item backward-word (M-b)
1025 Move back to the start of the current or previous word.
1026 Words are composed of letters and digits.
1029 @item shell-forward-word ()
1030 Move forward to the end of the next word.
1031 Words are delimited by non-quoted shell metacharacters.
1033 @item shell-backward-word ()
1034 Move back to the start of the current or previous word.
1035 Words are delimited by non-quoted shell metacharacters.
1038 @item clear-screen (C-l)
1039 Clear the screen and redraw the current line,
1040 leaving the current line at the top of the screen.
1042 @item redraw-current-line ()
1043 Refresh the current line. By default, this is unbound.
1047 @node Commands For History
1048 @subsection Commands For Manipulating The History
1051 @item accept-line (Newline or Return)
1053 Accept the line regardless of where the cursor is.
1055 non-empty, add it to the history list according to the setting of
1056 the @env{HISTCONTROL} and @env{HISTIGNORE} variables.
1057 If this line is a modified history line, then restore the history line
1058 to its original state.
1060 @ifclear BashFeatures
1061 Accept the line regardless of where the cursor is.
1063 non-empty, it may be added to the history list for future recall with
1064 @code{add_history()}.
1065 If this line is a modified history line, the history line is restored
1066 to its original state.
1069 @item previous-history (C-p)
1070 Move `back' through the history list, fetching the previous command.
1072 @item next-history (C-n)
1073 Move `forward' through the history list, fetching the next command.
1075 @item beginning-of-history (M-<)
1076 Move to the first line in the history.
1078 @item end-of-history (M->)
1079 Move to the end of the input history, i.e., the line currently
1082 @item reverse-search-history (C-r)
1083 Search backward starting at the current line and moving `up' through
1084 the history as necessary. This is an incremental search.
1086 @item forward-search-history (C-s)
1087 Search forward starting at the current line and moving `down' through
1088 the the history as necessary. This is an incremental search.
1090 @item non-incremental-reverse-search-history (M-p)
1091 Search backward starting at the current line and moving `up'
1092 through the history as necessary using a non-incremental search
1093 for a string supplied by the user.
1095 @item non-incremental-forward-search-history (M-n)
1096 Search forward starting at the current line and moving `down'
1097 through the the history as necessary using a non-incremental search
1098 for a string supplied by the user.
1100 @item history-search-forward ()
1101 Search forward through the history for the string of characters
1102 between the start of the current line and the point.
1103 This is a non-incremental search.
1104 By default, this command is unbound.
1106 @item history-search-backward ()
1107 Search backward through the history for the string of characters
1108 between the start of the current line and the point. This
1109 is a non-incremental search. By default, this command is unbound.
1111 @item yank-nth-arg (M-C-y)
1112 Insert the first argument to the previous command (usually
1113 the second word on the previous line) at point.
1114 With an argument @var{n},
1115 insert the @var{n}th word from the previous command (the words
1116 in the previous command begin with word 0). A negative argument
1117 inserts the @var{n}th word from the end of the previous command.
1118 Once the argument @var{n} is computed, the argument is extracted
1119 as if the @samp{!@var{n}} history expansion had been specified.
1121 @item yank-last-arg (M-. or M-_)
1122 Insert last argument to the previous command (the last word of the
1123 previous history entry).
1124 With a numeric argument, behave exactly like @code{yank-nth-arg}.
1125 Successive calls to @code{yank-last-arg} move back through the history
1126 list, inserting the last word (or the word specified by the argument to
1127 the first call) of each line in turn.
1128 Any numeric argument supplied to these successive calls determines
1129 the direction to move through the history. A negative argument switches
1130 the direction through the history (back or forward).
1131 The history expansion facilities are used to extract the last argument,
1132 as if the @samp{!$} history expansion had been specified.
1136 @node Commands For Text
1137 @subsection Commands For Changing Text
1140 @item delete-char (C-d)
1141 Delete the character at point. If point is at the
1142 beginning of the line, there are no characters in the line, and
1143 the last character typed was not bound to @code{delete-char}, then
1146 @item backward-delete-char (Rubout)
1147 Delete the character behind the cursor. A numeric argument means
1148 to kill the characters instead of deleting them.
1150 @item forward-backward-delete-char ()
1151 Delete the character under the cursor, unless the cursor is at the
1152 end of the line, in which case the character behind the cursor is
1153 deleted. By default, this is not bound to a key.
1155 @item quoted-insert (C-q or C-v)
1156 Add the next character typed to the line verbatim. This is
1157 how to insert key sequences like @kbd{C-q}, for example.
1159 @ifclear BashFeatures
1160 @item tab-insert (M-@key{TAB})
1161 Insert a tab character.
1164 @item self-insert (a, b, A, 1, !, @dots{})
1167 @item transpose-chars (C-t)
1168 Drag the character before the cursor forward over
1169 the character at the cursor, moving the
1170 cursor forward as well. If the insertion point
1171 is at the end of the line, then this
1172 transposes the last two characters of the line.
1173 Negative arguments have no effect.
1175 @item transpose-words (M-t)
1176 Drag the word before point past the word after point,
1177 moving point past that word as well.
1178 If the insertion point is at the end of the line, this transposes
1179 the last two words on the line.
1181 @item upcase-word (M-u)
1182 Uppercase the current (or following) word. With a negative argument,
1183 uppercase the previous word, but do not move the cursor.
1185 @item downcase-word (M-l)
1186 Lowercase the current (or following) word. With a negative argument,
1187 lowercase the previous word, but do not move the cursor.
1189 @item capitalize-word (M-c)
1190 Capitalize the current (or following) word. With a negative argument,
1191 capitalize the previous word, but do not move the cursor.
1193 @item overwrite-mode ()
1194 Toggle overwrite mode. With an explicit positive numeric argument,
1195 switches to overwrite mode. With an explicit non-positive numeric
1196 argument, switches to insert mode. This command affects only
1197 @code{emacs} mode; @code{vi} mode does overwrite differently.
1198 Each call to @code{readline()} starts in insert mode.
1200 In overwrite mode, characters bound to @code{self-insert} replace
1201 the text at point rather than pushing the text to the right.
1202 Characters bound to @code{backward-delete-char} replace the character
1203 before point with a space.
1205 By default, this command is unbound.
1209 @node Commands For Killing
1210 @subsection Killing And Yanking
1214 @item kill-line (C-k)
1215 Kill the text from point to the end of the line.
1217 @item backward-kill-line (C-x Rubout)
1218 Kill backward to the beginning of the line.
1220 @item unix-line-discard (C-u)
1221 Kill backward from the cursor to the beginning of the current line.
1223 @item kill-whole-line ()
1224 Kill all characters on the current line, no matter where point is.
1225 By default, this is unbound.
1227 @item kill-word (M-d)
1228 Kill from point to the end of the current word, or if between
1229 words, to the end of the next word.
1230 Word boundaries are the same as @code{forward-word}.
1232 @item backward-kill-word (M-@key{DEL})
1233 Kill the word behind point.
1234 Word boundaries are the same as @code{backward-word}.
1237 @item shell-kill-word ()
1238 Kill from point to the end of the current word, or if between
1239 words, to the end of the next word.
1240 Word boundaries are the same as @code{shell-forward-word}.
1242 @item shell-backward-kill-word ()
1243 Kill the word behind point.
1244 Word boundaries are the same as @code{shell-backward-word}.
1247 @item unix-word-rubout (C-w)
1248 Kill the word behind point, using white space as a word boundary.
1249 The killed text is saved on the kill-ring.
1251 @item unix-filename-rubout ()
1252 Kill the word behind point, using white space and the slash character
1253 as the word boundaries.
1254 The killed text is saved on the kill-ring.
1256 @item delete-horizontal-space ()
1257 Delete all spaces and tabs around point. By default, this is unbound.
1259 @item kill-region ()
1260 Kill the text in the current region.
1261 By default, this command is unbound.
1263 @item copy-region-as-kill ()
1264 Copy the text in the region to the kill buffer, so it can be yanked
1265 right away. By default, this command is unbound.
1267 @item copy-backward-word ()
1268 Copy the word before point to the kill buffer.
1269 The word boundaries are the same as @code{backward-word}.
1270 By default, this command is unbound.
1272 @item copy-forward-word ()
1273 Copy the word following point to the kill buffer.
1274 The word boundaries are the same as @code{forward-word}.
1275 By default, this command is unbound.
1278 Yank the top of the kill ring into the buffer at point.
1280 @item yank-pop (M-y)
1281 Rotate the kill-ring, and yank the new top. You can only do this if
1282 the prior command is @code{yank} or @code{yank-pop}.
1285 @node Numeric Arguments
1286 @subsection Specifying Numeric Arguments
1289 @item digit-argument (@kbd{M-0}, @kbd{M-1}, @dots{} @kbd{M--})
1290 Add this digit to the argument already accumulating, or start a new
1291 argument. @kbd{M--} starts a negative argument.
1293 @item universal-argument ()
1294 This is another way to specify an argument.
1295 If this command is followed by one or more digits, optionally with a
1296 leading minus sign, those digits define the argument.
1297 If the command is followed by digits, executing @code{universal-argument}
1298 again ends the numeric argument, but is otherwise ignored.
1299 As a special case, if this command is immediately followed by a
1300 character that is neither a digit or minus sign, the argument count
1301 for the next command is multiplied by four.
1302 The argument count is initially one, so executing this function the
1303 first time makes the argument count four, a second time makes the
1304 argument count sixteen, and so on.
1305 By default, this is not bound to a key.
1308 @node Commands For Completion
1309 @subsection Letting Readline Type For You
1312 @item complete (@key{TAB})
1313 Attempt to perform completion on the text before point.
1314 The actual completion performed is application-specific.
1316 Bash attempts completion treating the text as a variable (if the
1317 text begins with @samp{$}), username (if the text begins with
1318 @samp{~}), hostname (if the text begins with @samp{@@}), or
1319 command (including aliases and functions) in turn. If none
1320 of these produces a match, filename completion is attempted.
1322 @ifclear BashFeatures
1323 The default is filename completion.
1326 @item possible-completions (M-?)
1327 List the possible completions of the text before point.
1328 When displaying completions, Readline sets the number of columns used
1329 for display to the value of @code{completion-display-width}, the value of
1330 the environment variable @env{COLUMNS}, or the screen width, in that order.
1332 @item insert-completions (M-*)
1333 Insert all completions of the text before point that would have
1334 been generated by @code{possible-completions}.
1336 @item menu-complete ()
1337 Similar to @code{complete}, but replaces the word to be completed
1338 with a single match from the list of possible completions.
1339 Repeated execution of @code{menu-complete} steps through the list
1340 of possible completions, inserting each match in turn.
1341 At the end of the list of completions, the bell is rung
1342 (subject to the setting of @code{bell-style})
1343 and the original text is restored.
1344 An argument of @var{n} moves @var{n} positions forward in the list
1345 of matches; a negative argument may be used to move backward
1347 This command is intended to be bound to @key{TAB}, but is unbound
1350 @item menu-complete-backward ()
1351 Identical to @code{menu-complete}, but moves backward through the list
1352 of possible completions, as if @code{menu-complete} had been given a
1355 @item delete-char-or-list ()
1356 Deletes the character under the cursor if not at the beginning or
1357 end of the line (like @code{delete-char}).
1358 If at the end of the line, behaves identically to
1359 @code{possible-completions}.
1360 This command is unbound by default.
1363 @item complete-filename (M-/)
1364 Attempt filename completion on the text before point.
1366 @item possible-filename-completions (C-x /)
1367 List the possible completions of the text before point,
1368 treating it as a filename.
1370 @item complete-username (M-~)
1371 Attempt completion on the text before point, treating
1374 @item possible-username-completions (C-x ~)
1375 List the possible completions of the text before point,
1376 treating it as a username.
1378 @item complete-variable (M-$)
1379 Attempt completion on the text before point, treating
1380 it as a shell variable.
1382 @item possible-variable-completions (C-x $)
1383 List the possible completions of the text before point,
1384 treating it as a shell variable.
1386 @item complete-hostname (M-@@)
1387 Attempt completion on the text before point, treating
1390 @item possible-hostname-completions (C-x @@)
1391 List the possible completions of the text before point,
1392 treating it as a hostname.
1394 @item complete-command (M-!)
1395 Attempt completion on the text before point, treating
1396 it as a command name. Command completion attempts to
1397 match the text against aliases, reserved words, shell
1398 functions, shell builtins, and finally executable filenames,
1401 @item possible-command-completions (C-x !)
1402 List the possible completions of the text before point,
1403 treating it as a command name.
1405 @item dynamic-complete-history (M-@key{TAB})
1406 Attempt completion on the text before point, comparing
1407 the text against lines from the history list for possible
1410 @item dabbrev-expand ()
1411 Attempt menu completion on the text before point, comparing
1412 the text against lines from the history list for possible
1415 @item complete-into-braces (M-@{)
1416 Perform filename completion and insert the list of possible completions
1417 enclosed within braces so the list is available to the shell
1418 (@pxref{Brace Expansion}).
1423 @node Keyboard Macros
1424 @subsection Keyboard Macros
1427 @item start-kbd-macro (C-x ()
1428 Begin saving the characters typed into the current keyboard macro.
1430 @item end-kbd-macro (C-x ))
1431 Stop saving the characters typed into the current keyboard macro
1432 and save the definition.
1434 @item call-last-kbd-macro (C-x e)
1435 Re-execute the last keyboard macro defined, by making the characters
1436 in the macro appear as if typed at the keyboard.
1440 @node Miscellaneous Commands
1441 @subsection Some Miscellaneous Commands
1444 @item re-read-init-file (C-x C-r)
1445 Read in the contents of the @var{inputrc} file, and incorporate
1446 any bindings or variable assignments found there.
1449 Abort the current editing command and
1450 ring the terminal's bell (subject to the setting of
1453 @item do-uppercase-version (M-a, M-b, M-@var{x}, @dots{})
1454 If the metafied character @var{x} is lowercase, run the command
1455 that is bound to the corresponding uppercase character.
1457 @item prefix-meta (@key{ESC})
1458 Metafy the next character typed. This is for keyboards
1459 without a meta key. Typing @samp{@key{ESC} f} is equivalent to typing
1462 @item undo (C-_ or C-x C-u)
1463 Incremental undo, separately remembered for each line.
1465 @item revert-line (M-r)
1466 Undo all changes made to this line. This is like executing the @code{undo}
1467 command enough times to get back to the beginning.
1470 @item tilde-expand (M-&)
1472 @ifclear BashFeatures
1473 @item tilde-expand (M-~)
1475 Perform tilde expansion on the current word.
1477 @item set-mark (C-@@)
1478 Set the mark to the point. If a
1479 numeric argument is supplied, the mark is set to that position.
1481 @item exchange-point-and-mark (C-x C-x)
1482 Swap the point with the mark. The current cursor position is set to
1483 the saved position, and the old cursor position is saved as the mark.
1485 @item character-search (C-])
1486 A character is read and point is moved to the next occurrence of that
1487 character. A negative count searches for previous occurrences.
1489 @item character-search-backward (M-C-])
1490 A character is read and point is moved to the previous occurrence
1491 of that character. A negative count searches for subsequent
1494 @item skip-csi-sequence ()
1495 Read enough characters to consume a multi-key sequence such as those
1496 defined for keys like Home and End. Such sequences begin with a
1497 Control Sequence Indicator (CSI), usually ESC-[. If this sequence is
1498 bound to "\e[", keys producing such sequences will have no effect
1499 unless explicitly bound to a readline command, instead of inserting
1500 stray characters into the editing buffer. This is unbound by default,
1501 but usually bound to ESC-[.
1503 @item insert-comment (M-#)
1504 Without a numeric argument, the value of the @code{comment-begin}
1505 variable is inserted at the beginning of the current line.
1506 If a numeric argument is supplied, this command acts as a toggle: if
1507 the characters at the beginning of the line do not match the value
1508 of @code{comment-begin}, the value is inserted, otherwise
1509 the characters in @code{comment-begin} are deleted from the beginning of
1511 In either case, the line is accepted as if a newline had been typed.
1513 The default value of @code{comment-begin} causes this command
1514 to make the current line a shell comment.
1515 If a numeric argument causes the comment character to be removed, the line
1516 will be executed by the shell.
1519 @item dump-functions ()
1520 Print all of the functions and their key bindings to the
1521 Readline output stream. If a numeric argument is supplied,
1522 the output is formatted in such a way that it can be made part
1523 of an @var{inputrc} file. This command is unbound by default.
1525 @item dump-variables ()
1526 Print all of the settable variables and their values to the
1527 Readline output stream. If a numeric argument is supplied,
1528 the output is formatted in such a way that it can be made part
1529 of an @var{inputrc} file. This command is unbound by default.
1531 @item dump-macros ()
1532 Print all of the Readline key sequences bound to macros and the
1533 strings they output. If a numeric argument is supplied,
1534 the output is formatted in such a way that it can be made part
1535 of an @var{inputrc} file. This command is unbound by default.
1538 @item glob-complete-word (M-g)
1539 The word before point is treated as a pattern for pathname expansion,
1540 with an asterisk implicitly appended. This pattern is used to
1541 generate a list of matching file names for possible completions.
1543 @item glob-expand-word (C-x *)
1544 The word before point is treated as a pattern for pathname expansion,
1545 and the list of matching file names is inserted, replacing the word.
1546 If a numeric argument is supplied, a @samp{*} is appended before
1549 @item glob-list-expansions (C-x g)
1550 The list of expansions that would have been generated by
1551 @code{glob-expand-word} is displayed, and the line is redrawn.
1552 If a numeric argument is supplied, a @samp{*} is appended before
1555 @item display-shell-version (C-x C-v)
1556 Display version information about the current instance of Bash.
1558 @item shell-expand-line (M-C-e)
1559 Expand the line as the shell does.
1560 This performs alias and history expansion as well as all of the shell
1561 word expansions (@pxref{Shell Expansions}).
1563 @item history-expand-line (M-^)
1564 Perform history expansion on the current line.
1566 @item magic-space ()
1567 Perform history expansion on the current line and insert a space
1568 (@pxref{History Interaction}).
1570 @item alias-expand-line ()
1571 Perform alias expansion on the current line (@pxref{Aliases}).
1573 @item history-and-alias-expand-line ()
1574 Perform history and alias expansion on the current line.
1576 @item insert-last-argument (M-. or M-_)
1577 A synonym for @code{yank-last-arg}.
1579 @item operate-and-get-next (C-o)
1580 Accept the current line for execution and fetch the next line
1581 relative to the current line from the history for editing. Any
1582 argument is ignored.
1584 @item edit-and-execute-command (C-xC-e)
1585 Invoke an editor on the current command line, and execute the result as shell
1587 Bash attempts to invoke
1588 @code{$VISUAL}, @code{$EDITOR}, and @code{emacs}
1589 as the editor, in that order.
1593 @ifclear BashFeatures
1594 @item emacs-editing-mode (C-e)
1595 When in @code{vi} command mode, this causes a switch to @code{emacs}
1598 @item vi-editing-mode (M-C-j)
1599 When in @code{emacs} editing mode, this causes a switch to @code{vi}
1606 @node Readline vi Mode
1607 @section Readline vi Mode
1609 While the Readline library does not have a full set of @code{vi}
1610 editing functions, it does contain enough to allow simple editing
1611 of the line. The Readline @code{vi} mode behaves as specified in
1612 the @sc{posix} standard.
1615 In order to switch interactively between @code{emacs} and @code{vi}
1616 editing modes, use the @samp{set -o emacs} and @samp{set -o vi}
1617 commands (@pxref{The Set Builtin}).
1619 @ifclear BashFeatures
1620 In order to switch interactively between @code{emacs} and @code{vi}
1621 editing modes, use the command @kbd{M-C-j} (bound to emacs-editing-mode
1622 when in @code{vi} mode and to vi-editing-mode in @code{emacs} mode).
1624 The Readline default is @code{emacs} mode.
1626 When you enter a line in @code{vi} mode, you are already placed in
1627 `insertion' mode, as if you had typed an @samp{i}. Pressing @key{ESC}
1628 switches you into `command' mode, where you can edit the text of the
1629 line with the standard @code{vi} movement keys, move to previous
1630 history lines with @samp{k} and subsequent lines with @samp{j}, and
1634 @node Programmable Completion
1635 @section Programmable Completion
1636 @cindex programmable completion
1638 When word completion is attempted for an argument to a command for
1639 which a completion specification (a @var{compspec}) has been defined
1640 using the @code{complete} builtin (@pxref{Programmable Completion Builtins}),
1641 the programmable completion facilities are invoked.
1643 First, the command name is identified.
1644 If a compspec has been defined for that command, the
1645 compspec is used to generate the list of possible completions for the word.
1646 If the command word is the empty string (completion attempted at the
1647 beginning of an empty line), any compspec defined with
1648 the @option{-E} option to @code{complete} is used.
1649 If the command word is a full pathname, a compspec for the full
1650 pathname is searched for first.
1651 If no compspec is found for the full pathname, an attempt is made to
1652 find a compspec for the portion following the final slash.
1653 If those searches do not result in a compspec, any compspec defined with
1654 the @option{-D} option to @code{complete} is used as the default.
1656 Once a compspec has been found, it is used to generate the list of
1658 If a compspec is not found, the default Bash completion
1659 described above (@pxref{Commands For Completion}) is performed.
1661 First, the actions specified by the compspec are used.
1662 Only matches which are prefixed by the word being completed are
1664 When the @option{-f} or @option{-d} option is used for filename or
1665 directory name completion, the shell variable @env{FIGNORE} is
1666 used to filter the matches.
1667 @xref{Bash Variables}, for a description of @env{FIGNORE}.
1669 Any completions specified by a filename expansion pattern to the
1670 @option{-G} option are generated next.
1671 The words generated by the pattern need not match the word being completed.
1672 The @env{GLOBIGNORE} shell variable is not used to filter the matches,
1673 but the @env{FIGNORE} shell variable is used.
1675 Next, the string specified as the argument to the @option{-W} option
1677 The string is first split using the characters in the @env{IFS}
1678 special variable as delimiters.
1679 Shell quoting is honored.
1680 Each word is then expanded using
1681 brace expansion, tilde expansion, parameter and variable expansion,
1682 command substitution, and arithmetic expansion,
1683 as described above (@pxref{Shell Expansions}).
1684 The results are split using the rules described above
1685 (@pxref{Word Splitting}).
1686 The results of the expansion are prefix-matched against the word being
1687 completed, and the matching words become the possible completions.
1689 After these matches have been generated, any shell function or command
1690 specified with the @option{-F} and @option{-C} options is invoked.
1691 When the command or function is invoked, the @env{COMP_LINE},
1692 @env{COMP_POINT}, @env{COMP_KEY}, and @env{COMP_TYPE} variables are
1693 assigned values as described above (@pxref{Bash Variables}).
1694 If a shell function is being invoked, the @env{COMP_WORDS} and
1695 @env{COMP_CWORD} variables are also set.
1696 When the function or command is invoked, the first argument is the
1697 name of the command whose arguments are being completed, the
1698 second argument is the word being completed, and the third argument
1699 is the word preceding the word being completed on the current command line.
1700 No filtering of the generated completions against the word being completed
1701 is performed; the function or command has complete freedom in generating
1704 Any function specified with @option{-F} is invoked first.
1705 The function may use any of the shell facilities, including the
1706 @code{compgen} and @code{compopt} builtins described below
1707 (@pxref{Programmable Completion Builtins}), to generate the matches.
1708 It must put the possible completions in the @env{COMPREPLY} array
1711 Next, any command specified with the @option{-C} option is invoked
1712 in an environment equivalent to command substitution.
1713 It should print a list of completions, one per line, to
1714 the standard output.
1715 Backslash may be used to escape a newline, if necessary.
1717 After all of the possible completions are generated, any filter
1718 specified with the @option{-X} option is applied to the list.
1719 The filter is a pattern as used for pathname expansion; a @samp{&}
1720 in the pattern is replaced with the text of the word being completed.
1721 A literal @samp{&} may be escaped with a backslash; the backslash
1722 is removed before attempting a match.
1723 Any completion that matches the pattern will be removed from the list.
1724 A leading @samp{!} negates the pattern; in this case any completion
1725 not matching the pattern will be removed.
1727 Finally, any prefix and suffix specified with the @option{-P} and @option{-S}
1728 options are added to each member of the completion list, and the result is
1729 returned to the Readline completion code as the list of possible
1732 If the previously-applied actions do not generate any matches, and the
1733 @option{-o dirnames} option was supplied to @code{complete} when the
1734 compspec was defined, directory name completion is attempted.
1736 If the @option{-o plusdirs} option was supplied to @code{complete} when
1737 the compspec was defined, directory name completion is attempted and any
1738 matches are added to the results of the other actions.
1740 By default, if a compspec is found, whatever it generates is returned to
1741 the completion code as the full set of possible completions.
1742 The default Bash completions are not attempted, and the Readline default
1743 of filename completion is disabled.
1744 If the @option{-o bashdefault} option was supplied to @code{complete} when
1745 the compspec was defined, the default Bash completions are attempted
1746 if the compspec generates no matches.
1747 If the @option{-o default} option was supplied to @code{complete} when the
1748 compspec was defined, Readline's default completion will be performed
1749 if the compspec (and, if attempted, the default Bash completions)
1750 generate no matches.
1752 When a compspec indicates that directory name completion is desired,
1753 the programmable completion functions force Readline to append a slash
1754 to completed names which are symbolic links to directories, subject to
1755 the value of the @var{mark-directories} Readline variable, regardless
1756 of the setting of the @var{mark-symlinked-directories} Readline variable.
1758 There is some support for dynamically modifying completions. This is
1759 most useful when used in combination with a default completion specified
1760 with @option{-D}. It's possible for shell functions executed as completion
1761 handlers to indicate that completion should be retried by returning an
1762 exit status of 124. If a shell function returns 124, and changes
1763 the compspec associated with the command on which completion is being
1764 attempted (supplied as the first argument when the function is executed),
1765 programmable completion restarts from the beginning, with an
1766 attempt to find a new compspec for that command. This allows a set of
1767 completions to be built dynamically as completion is attempted, rather than
1768 being loaded all at once.
1770 For instance, assuming that there is a library of compspecs, each kept in a
1771 file corresponding to the name of the command, the following default
1772 completion function would load completions dynamically:
1775 _completion_loader()
1777 . "/etc/bash_completion.d/$1.sh" >/dev/null 2>&1 && return 124
1779 complete -D -F _completion_loader
1782 @node Programmable Completion Builtins
1783 @section Programmable Completion Builtins
1784 @cindex completion builtins
1786 Two builtin commands are available to manipulate the programmable completion
1793 @code{compgen [@var{option}] [@var{word}]}
1796 Generate possible completion matches for @var{word} according to
1797 the @var{option}s, which may be any option accepted by the
1799 builtin with the exception of @option{-p} and @option{-r}, and write
1800 the matches to the standard output.
1801 When using the @option{-F} or @option{-C} options, the various shell variables
1802 set by the programmable completion facilities, while available, will not
1805 The matches will be generated in the same way as if the programmable
1806 completion code had generated them directly from a completion specification
1807 with the same flags.
1808 If @var{word} is specified, only those completions matching @var{word}
1811 The return value is true unless an invalid option is supplied, or no
1812 matches were generated.
1817 @code{complete [-abcdefgjksuv] [-o @var{comp-option}] [-DE] [-A @var{action}] [-G @var{globpat}] [-W @var{wordlist}]
1818 [-F @var{function}] [-C @var{command}] [-X @var{filterpat}]
1819 [-P @var{prefix}] [-S @var{suffix}] @var{name} [@var{name} @dots{}]}
1820 @code{complete -pr [-DE] [@var{name} @dots{}]}
1823 Specify how arguments to each @var{name} should be completed.
1824 If the @option{-p} option is supplied, or if no options are supplied, existing
1825 completion specifications are printed in a way that allows them to be
1827 The @option{-r} option removes a completion specification for
1828 each @var{name}, or, if no @var{name}s are supplied, all
1829 completion specifications.
1830 The @option{-D} option indicates that the remaining options and actions should
1831 apply to the ``default'' command completion; that is, completion attempted
1832 on a command for which no completion has previously been defined.
1833 The @option{-E} option indicates that the remaining options and actions should
1834 apply to ``empty'' command completion; that is, completion attempted on a
1837 The process of applying these completion specifications when word completion
1838 is attempted is described above (@pxref{Programmable Completion}). The
1839 @option{-D} option takes precedence over @option{-E}.
1841 Other options, if specified, have the following meanings.
1842 The arguments to the @option{-G}, @option{-W}, and @option{-X} options
1843 (and, if necessary, the @option{-P} and @option{-S} options)
1844 should be quoted to protect them from expansion before the
1845 @code{complete} builtin is invoked.
1849 @item -o @var{comp-option}
1850 The @var{comp-option} controls several aspects of the compspec's behavior
1851 beyond the simple generation of completions.
1852 @var{comp-option} may be one of:
1857 Perform the rest of the default Bash completions if the compspec
1858 generates no matches.
1861 Use Readline's default filename completion if the compspec generates
1865 Perform directory name completion if the compspec generates no matches.
1868 Tell Readline that the compspec generates filenames, so it can perform any
1869 filename-specific processing (like adding a slash to directory names
1870 quoting special characters, or suppressing trailing spaces).
1871 This option is intended to be used with shell functions specified
1875 Tell Readline not to append a space (the default) to words completed at
1876 the end of the line.
1879 After any matches defined by the compspec are generated,
1880 directory name completion is attempted and any
1881 matches are added to the results of the other actions.
1885 @item -A @var{action}
1886 The @var{action} may be one of the following to generate a list of possible
1891 Alias names. May also be specified as @option{-a}.
1894 Array variable names.
1897 Readline key binding names (@pxref{Bindable Readline Commands}).
1900 Names of shell builtin commands. May also be specified as @option{-b}.
1903 Command names. May also be specified as @option{-c}.
1906 Directory names. May also be specified as @option{-d}.
1909 Names of disabled shell builtins.
1912 Names of enabled shell builtins.
1915 Names of exported shell variables. May also be specified as @option{-e}.
1918 File names. May also be specified as @option{-f}.
1921 Names of shell functions.
1924 Group names. May also be specified as @option{-g}.
1927 Help topics as accepted by the @code{help} builtin (@pxref{Bash Builtins}).
1930 Hostnames, as taken from the file specified by the
1931 @env{HOSTFILE} shell variable (@pxref{Bash Variables}).
1934 Job names, if job control is active. May also be specified as @option{-j}.
1937 Shell reserved words. May also be specified as @option{-k}.
1940 Names of running jobs, if job control is active.
1943 Service names. May also be specified as @option{-s}.
1946 Valid arguments for the @option{-o} option to the @code{set} builtin
1947 (@pxref{The Set Builtin}).
1950 Shell option names as accepted by the @code{shopt} builtin
1951 (@pxref{Bash Builtins}).
1957 Names of stopped jobs, if job control is active.
1960 User names. May also be specified as @option{-u}.
1963 Names of all shell variables. May also be specified as @option{-v}.
1966 @item -C @var{command}
1967 @var{command} is executed in a subshell environment, and its output is
1968 used as the possible completions.
1970 @item -F @var{function}
1971 The shell function @var{function} is executed in the current shell
1973 When it finishes, the possible completions are retrieved from the value
1974 of the @env{COMPREPLY} array variable.
1976 @item -G @var{globpat}
1977 The filename expansion pattern @var{globpat} is expanded to generate
1978 the possible completions.
1980 @item -P @var{prefix}
1981 @var{prefix} is added at the beginning of each possible completion
1982 after all other options have been applied.
1984 @item -S @var{suffix}
1985 @var{suffix} is appended to each possible completion
1986 after all other options have been applied.
1988 @item -W @var{wordlist}
1989 The @var{wordlist} is split using the characters in the
1990 @env{IFS} special variable as delimiters, and each resultant word
1992 The possible completions are the members of the resultant list which
1993 match the word being completed.
1995 @item -X @var{filterpat}
1996 @var{filterpat} is a pattern as used for filename expansion.
1997 It is applied to the list of possible completions generated by the
1998 preceding options and arguments, and each completion matching
1999 @var{filterpat} is removed from the list.
2000 A leading @samp{!} in @var{filterpat} negates the pattern; in this
2001 case, any completion not matching @var{filterpat} is removed.
2004 The return value is true unless an invalid option is supplied, an option
2005 other than @option{-p} or @option{-r} is supplied without a @var{name}
2006 argument, an attempt is made to remove a completion specification for
2007 a @var{name} for which no specification exists, or
2008 an error occurs adding a completion specification.
2013 @code{compopt} [-o @var{option}] [-DE] [+o @var{option}] [@var{name}]
2015 Modify completion options for each @var{name} according to the
2016 @var{option}s, or for the currently-executing completion if no @var{name}s
2018 If no @var{option}s are given, display the completion options for each
2019 @var{name} or the current completion.
2020 The possible values of @var{option} are those valid for the @code{complete}
2021 builtin described above.
2022 The @option{-D} option indicates that the remaining options should
2023 apply to the ``default'' command completion; that is, completion attempted
2024 on a command for which no completion has previously been defined.
2025 The @option{-E} option indicates that the remaining options should
2026 apply to ``empty'' command completion; that is, completion attempted on a
2029 The @option{-D} option takes precedence over @option{-E}.
2031 The return value is true unless an invalid option is supplied, an attempt
2032 is made to modify the options for a @var{name} for which no completion
2033 specification exists, or an output error occurs.