1 /* rlconf.h -- readline configuration definitions */
3 /* Copyright (C) 1994 Free Software Foundation, Inc.
5 This file contains the Readline Library (the Library), a set of
6 routines for providing Emacs style line input to programs that ask
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 1, or (at your option)
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.
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 675 Mass Ave, Cambridge, MA 02139, USA. */
24 #if !defined (_RLCONF_H_)
27 /* Define this if you want the vi-mode editing available. */
30 /* Define this to get an indication of file type when listing completions. */
33 /* If defined, readline shows opening parens and braces when closing
34 paren or brace entered. */
35 /* #define PAREN_MATCHING */
37 /* This definition is needed by readline.c, rltty.c, and signals.c. */
38 /* If on, then readline handles signals in a way that doesn't screw. */
39 #define HANDLE_SIGNALS
41 /* Ugly but working hack for binding prefix meta. */
42 #define PREFIX_META_HACK
44 /* The final, last-ditch effort file name for an init file. */
45 #define DEFAULT_INPUTRC "~/.inputrc"
47 /* If defined, expand tabs to spaces. */
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 */
54 /* The string inserted by the `insert comment' command. */
55 #define RL_COMMENT_BEGIN_DEFAULT "#"
57 /* Define this if you want code that allows readline to be used in an
58 X `callback' style. */
60 # define READLINE_CALLBACKS
63 #endif /* _RLCONF_H_ */