1 | /* rlconf.h -- readline configuration definitions */ |
---|
2 | |
---|
3 | /* Copyright (C) 1994 Free Software Foundation, Inc. |
---|
4 | |
---|
5 | This file contains the Readline Library (the Library), a set of |
---|
6 | routines for providing Emacs style line input to programs that ask |
---|
7 | for it. |
---|
8 | |
---|
9 | The Library is free software; you can redistribute it and/or modify |
---|
10 | it under the terms of the GNU General Public License as published by |
---|
11 | the Free Software Foundation; either version 1, or (at your option) |
---|
12 | any later version. |
---|
13 | |
---|
14 | The Library is distributed in the hope that it will be useful, but |
---|
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | General Public License for more details. |
---|
18 | |
---|
19 | The GNU General Public License is often shipped with GNU software, and |
---|
20 | is generally kept in a file called COPYING or LICENSE. If you do not |
---|
21 | have a copy of the license, write to the Free Software Foundation, |
---|
22 | 675 Mass Ave, Cambridge, MA 02139, USA. */ |
---|
23 | |
---|
24 | #if !defined (_RLCONF_H_) |
---|
25 | #define _RLCONF_H_ |
---|
26 | |
---|
27 | /* Define this if you want the vi-mode editing available. */ |
---|
28 | #define VI_MODE |
---|
29 | |
---|
30 | /* Define this to get an indication of file type when listing completions. */ |
---|
31 | #define VISIBLE_STATS |
---|
32 | |
---|
33 | /* If defined, readline shows opening parens and braces when closing |
---|
34 | paren or brace entered. */ |
---|
35 | /* #define PAREN_MATCHING */ |
---|
36 | |
---|
37 | /* This definition is needed by readline.c, rltty.c, and signals.c. */ |
---|
38 | /* If on, then readline handles signals in a way that doesn't screw. */ |
---|
39 | #define HANDLE_SIGNALS |
---|
40 | |
---|
41 | /* Ugly but working hack for binding prefix meta. */ |
---|
42 | #define PREFIX_META_HACK |
---|
43 | |
---|
44 | /* The final, last-ditch effort file name for an init file. */ |
---|
45 | #define DEFAULT_INPUTRC "~/.inputrc" |
---|
46 | |
---|
47 | /* If defined, expand tabs to spaces. */ |
---|
48 | #define DISPLAY_TABS |
---|
49 | |
---|
50 | /* If defined, use the terminal escape sequence to move the cursor forward |
---|
51 | over a character when updating the line rather than rewriting it. */ |
---|
52 | /* #define HACK_TERMCAP_MOTION */ |
---|
53 | |
---|
54 | /* The string inserted by the `insert comment' command. */ |
---|
55 | #define RL_COMMENT_BEGIN_DEFAULT "#" |
---|
56 | |
---|
57 | /* Define this if you want code that allows readline to be used in an |
---|
58 | X `callback' style. */ |
---|
59 | #define READLINE_CALLBACKS |
---|
60 | |
---|
61 | #endif /* _RLCONF_H_ */ |
---|