]> git.ipfire.org Git - thirdparty/bash.git/blame - lib/readline/rlconf.h
Imported from ../bash-4.0-rc1.tar.gz.
[thirdparty/bash.git] / lib / readline / rlconf.h
CommitLineData
726f6388
JA
1/* rlconf.h -- readline configuration definitions */
2
3185942a 3/* Copyright (C) 1992-2009 Free Software Foundation, Inc.
726f6388 4
3185942a
JA
5 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
726f6388 7
3185942a 8 Readline is free software: you can redistribute it and/or modify
726f6388 9 it under the terms of the GNU General Public License as published by
3185942a
JA
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
20*/
726f6388
JA
21
22#if !defined (_RLCONF_H_)
23#define _RLCONF_H_
24
25/* Define this if you want the vi-mode editing available. */
26#define VI_MODE
27
28/* Define this to get an indication of file type when listing completions. */
29#define VISIBLE_STATS
30
726f6388
JA
31/* This definition is needed by readline.c, rltty.c, and signals.c. */
32/* If on, then readline handles signals in a way that doesn't screw. */
33#define HANDLE_SIGNALS
34
35/* Ugly but working hack for binding prefix meta. */
36#define PREFIX_META_HACK
37
0628567a 38/* The next-to-last-ditch effort file name for a user-specific init file. */
726f6388
JA
39#define DEFAULT_INPUTRC "~/.inputrc"
40
0628567a
JA
41/* The ultimate last-ditch filenname for an init file -- system-wide. */
42#define SYS_INPUTRC "/etc/inputrc"
43
726f6388
JA
44/* If defined, expand tabs to spaces. */
45#define DISPLAY_TABS
46
47/* If defined, use the terminal escape sequence to move the cursor forward
48 over a character when updating the line rather than rewriting it. */
49/* #define HACK_TERMCAP_MOTION */
50
ccc6cda3
JA
51/* The string inserted by the `insert comment' command. */
52#define RL_COMMENT_BEGIN_DEFAULT "#"
53
54/* Define this if you want code that allows readline to be used in an
55 X `callback' style. */
b72432fd 56#define READLINE_CALLBACKS
726f6388 57
7117c2d2
JA
58/* Define this if you want the cursor to indicate insert or overwrite mode. */
59/* #define CURSOR_MODE */
60
726f6388 61#endif /* _RLCONF_H_ */