GC old libarchive/bsdtar.
[dragonfly/port-amd64.git] / contrib / libreadline / rlconf.h
blob408cd9396ab1f99002935c0d36146ee1966f0c8c
1 /* $FreeBSD: src/contrib/libreadline/rlconf.h,v 1.3.2.2 2000/07/06 23:04:24 ache Exp $ */
2 /* $DragonFly: src/contrib/libreadline/Attic/rlconf.h,v 1.2 2003/06/17 04:24:03 dillon Exp $ */
3 /* rlconf.h -- readline configuration definitions */
5 /* Copyright (C) 1994 Free Software Foundation, Inc.
7 This file contains the Readline Library (the Library), a set of
8 routines for providing Emacs style line input to programs that ask
9 for it.
11 The Library is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
14 any later version.
16 The Library is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 The GNU General Public License is often shipped with GNU software, and
22 is generally kept in a file called COPYING or LICENSE. If you do not
23 have a copy of the license, write to the Free Software Foundation,
24 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
26 #if !defined (_RLCONF_H_)
27 #define _RLCONF_H_
29 /* Define this if you want the vi-mode editing available. */
30 #define VI_MODE
32 /* Define this to get an indication of file type when listing completions. */
33 #define VISIBLE_STATS
35 /* This definition is needed by readline.c, rltty.c, and signals.c. */
36 /* If on, then readline handles signals in a way that doesn't screw. */
37 #define HANDLE_SIGNALS
39 /* Ugly but working hack for binding prefix meta. */
40 #define PREFIX_META_HACK
42 /* The final, last-ditch effort file name for an init file. */
43 #define DEFAULT_INPUTRC "~/.inputrc"
45 /* If defined, expand tabs to spaces. */
46 #define DISPLAY_TABS
48 /* If defined, use the terminal escape sequence to move the cursor forward
49 over a character when updating the line rather than rewriting it. */
50 /* #define HACK_TERMCAP_MOTION */
52 /* The string inserted by the `insert comment' command. */
53 #define RL_COMMENT_BEGIN_DEFAULT "#"
55 /* Define this if you want code that allows readline to be used in an
56 X `callback' style. */
57 #define READLINE_CALLBACKS
59 #endif /* _RLCONF_H_ */