| 1 | /* rlconf.h -- readline configuration definitions */
|
|---|
| 2 |
|
|---|
| 3 | /* Copyright (C) 1994 Free Software Foundation, Inc.
|
|---|
| 4 |
|
|---|
| 5 | This file contains the Readline Library (the Library), a set of
|
|---|
| 6 | routines for providing Emacs style line input to programs that ask
|
|---|
| 7 | for it.
|
|---|
| 8 |
|
|---|
| 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 2, or (at your option)
|
|---|
| 12 | any later version.
|
|---|
| 13 |
|
|---|
| 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.
|
|---|
| 18 |
|
|---|
| 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 | 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
|
|---|
| 23 |
|
|---|
| 24 | #if !defined (_RLCONF_H_)
|
|---|
| 25 | #define _RLCONF_H_
|
|---|
| 26 |
|
|---|
| 27 | /* Define this if you want the vi-mode editing available. */
|
|---|
| 28 | #define VI_MODE
|
|---|
| 29 |
|
|---|
| 30 | /* Define this to get an indication of file type when listing completions. */
|
|---|
| 31 | #define VISIBLE_STATS
|
|---|
| 32 |
|
|---|
| 33 | /* This definition is needed by readline.c, rltty.c, and signals.c. */
|
|---|
| 34 | /* If on, then readline handles signals in a way that doesn't screw. */
|
|---|
| 35 | #define HANDLE_SIGNALS
|
|---|
| 36 |
|
|---|
| 37 | /* Ugly but working hack for binding prefix meta. */
|
|---|
| 38 | #define PREFIX_META_HACK
|
|---|
| 39 |
|
|---|
| 40 | /* The final, last-ditch effort file name for an init file. */
|
|---|
| 41 | #define DEFAULT_INPUTRC "~/.inputrc"
|
|---|
| 42 |
|
|---|
| 43 | /* If defined, expand tabs to spaces. */
|
|---|
| 44 | #define DISPLAY_TABS
|
|---|
| 45 |
|
|---|
| 46 | /* If defined, use the terminal escape sequence to move the cursor forward
|
|---|
| 47 | over a character when updating the line rather than rewriting it. */
|
|---|
| 48 | /* #define HACK_TERMCAP_MOTION */
|
|---|
| 49 |
|
|---|
| 50 | /* The string inserted by the `insert comment' command. */
|
|---|
| 51 | #define RL_COMMENT_BEGIN_DEFAULT "#"
|
|---|
| 52 |
|
|---|
| 53 | /* Define this if you want code that allows readline to be used in an
|
|---|
| 54 | X `callback' style. */
|
|---|
| 55 | #define READLINE_CALLBACKS
|
|---|
| 56 |
|
|---|
| 57 | /* Define this if you want the cursor to indicate insert or overwrite mode. */
|
|---|
| 58 | /* #define CURSOR_MODE */
|
|---|
| 59 |
|
|---|
| 60 | #endif /* _RLCONF_H_ */
|
|---|