rlconf.h revision 119614
1/* $FreeBSD: head/contrib/libreadline/rlconf.h 119614 2003-08-31 18:29:38Z ache $ */
2/* rlconf.h -- readline configuration definitions */
3
4/* Copyright (C) 1994 Free Software Foundation, Inc.
5
6   This file contains the Readline Library (the Library), a set of
7   routines for providing Emacs style line input to programs that ask
8   for it.
9
10   The Library is free software; you can redistribute it and/or modify
11   it under the terms of the GNU General Public License as published by
12   the Free Software Foundation; either version 2, or (at your option)
13   any later version.
14
15   The Library is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18   General Public License for more details.
19
20   The GNU General Public License is often shipped with GNU software, and
21   is generally kept in a file called COPYING or LICENSE.  If you do not
22   have a copy of the license, write to the Free Software Foundation,
23   59 Temple Place, Suite 330, Boston, MA 02111 USA. */
24
25#if !defined (_RLCONF_H_)
26#define _RLCONF_H_
27
28/* Define this if you want the vi-mode editing available. */
29#define VI_MODE
30
31/* Define this to get an indication of file type when listing completions. */
32#define VISIBLE_STATS
33
34/* This definition is needed by readline.c, rltty.c, and signals.c. */
35/* If on, then readline handles signals in a way that doesn't screw. */
36#define HANDLE_SIGNALS
37
38/* Ugly but working hack for binding prefix meta. */
39#define PREFIX_META_HACK
40
41/* The final, last-ditch effort file name for an init file. */
42#define DEFAULT_INPUTRC "~/.inputrc"
43
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
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. */
56#define READLINE_CALLBACKS
57
58/* Define this if you want the cursor to indicate insert or overwrite mode. */
59/* #define CURSOR_MODE */
60
61#endif /* _RLCONF_H_ */
62