~ubuntu-branches/ubuntu/trusty/bash/trusty-security

« back to all changes in this revision

Viewing changes to debian/inputrc.arrows

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2002-04-08 20:51:41 UTC
  • Revision ID: james.westby@ubuntu.com-20020408205141-p16ukpd93kg6ce7g
Tags: 2.05a-11
* Don't mishandle negative pid in `kill' builtin (closes: #133927, #137742).
* builtins(1) doesn't document `for' (closes: #118755).
* Add /usr/share/bash_completion directory to source package specific
  completion files.
* Update to bash_completion 20020408 (v1.264).
  Closes: #133109, #139375, #139675, #134713, #141134.
* Add completion to /etc/skel/.bashrc (commented out). Closes: #138921.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This file controls the behaviour of line input editing for
 
2
# programs that use the Gnu Readline library.
 
3
#
 
4
# Arrow keys in keypad mode
 
5
#
 
6
"\C-[OD"        backward-char
 
7
"\C-[OC"        forward-char
 
8
"\C-[OA"        previous-history
 
9
"\C-[OB"        next-history
 
10
#
 
11
# Arrow keys in ANSI mode
 
12
#
 
13
"\C-[[D"        backward-char
 
14
"\C-[[C"        forward-char
 
15
"\C-[[A"        previous-history
 
16
"\C-[[B"        next-history
 
17
#
 
18
# Arrow keys in 8 bit keypad mode
 
19
#
 
20
"\C-M-OD"       backward-char
 
21
"\C-M-OC"       forward-char
 
22
"\C-M-OA"       previous-history
 
23
"\C-M-OB"       next-history
 
24
#
 
25
# Arrow keys in 8 bit ANSI mode
 
26
#
 
27
"\C-M-[D"       backward-char
 
28
"\C-M-[C"       forward-char
 
29
"\C-M-[A"       previous-history
 
30
"\C-M-[B"       next-history