]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/libreadline/rlconf.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / libreadline / rlconf.h
1 /* $FreeBSD$ */
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 next-to-last-ditch effort file name for a user-specific init file. */
42 #define DEFAULT_INPUTRC "~/.inputrc"
43
44 /* The ultimate last-ditch filenname for an init file -- system-wide. */
45 #define SYS_INPUTRC "/etc/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 /* Define this if you want the cursor to indicate insert or overwrite mode. */
62 /* #define CURSOR_MODE */
63
64 #endif /* _RLCONF_H_ */