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 2, 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 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 | /* This definition is needed by readline.c, rltty.c, and signals.c. */ |
34 | /* If on, then readline handles signals in a way that doesn't screw. */ |
35 | #define HANDLE_SIGNALS |
36 | |
37 | /* Ugly but working hack for binding prefix meta. */ |
38 | #define PREFIX_META_HACK |
39 | |
40 | /* The next-to-last-ditch effort file name for a user-specific init file. */ |
41 | #define DEFAULT_INPUTRC "~/.inputrc" |
42 | |
43 | /* The ultimate last-ditch filenname for an init file -- system-wide. */ |
44 | #define SYS_INPUTRC "/etc/inputrc" |
45 | |
46 | /* If defined, expand tabs to spaces. */ |
47 | #define DISPLAY_TABS |
48 | |
49 | /* If defined, use the terminal escape sequence to move the cursor forward |
50 | over a character when updating the line rather than rewriting it. */ |
51 | /* #define HACK_TERMCAP_MOTION */ |
52 | |
53 | /* The string inserted by the `insert comment' command. */ |
54 | #define "#" |
55 | |
56 | /* Define this if you want code that allows readline to be used in an |
57 | X `callback' style. */ |
58 | #define READLINE_CALLBACKS |
59 | |
60 | /* Define this if you want the cursor to indicate insert or overwrite mode. */ |
61 | /* #define CURSOR_MODE */ |
62 | |
63 | #endif /* _RLCONF_H_ */ |
64 | |