jpayne@69: /* rlconf.h -- readline configuration definitions */ jpayne@69: jpayne@69: /* Copyright (C) 1992-2015 Free Software Foundation, Inc. jpayne@69: jpayne@69: This file is part of the GNU Readline Library (Readline), a library jpayne@69: for reading lines of text with interactive input and history editing. jpayne@69: jpayne@69: Readline is free software: you can redistribute it and/or modify jpayne@69: it under the terms of the GNU General Public License as published by jpayne@69: the Free Software Foundation, either version 3 of the License, or jpayne@69: (at your option) any later version. jpayne@69: jpayne@69: Readline is distributed in the hope that it will be useful, jpayne@69: but WITHOUT ANY WARRANTY; without even the implied warranty of jpayne@69: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jpayne@69: GNU General Public License for more details. jpayne@69: jpayne@69: You should have received a copy of the GNU General Public License jpayne@69: along with Readline. If not, see . jpayne@69: */ jpayne@69: jpayne@69: #if !defined (_RLCONF_H_) jpayne@69: #define _RLCONF_H_ jpayne@69: jpayne@69: /* Define this if you want the vi-mode editing available. */ jpayne@69: #define VI_MODE jpayne@69: jpayne@69: /* Define this to get an indication of file type when listing completions. */ jpayne@69: #define VISIBLE_STATS jpayne@69: jpayne@69: /* Define this to get support for colors when listing completions and in jpayne@69: other places. */ jpayne@69: #define COLOR_SUPPORT jpayne@69: jpayne@69: /* This definition is needed by readline.c, rltty.c, and signals.c. */ jpayne@69: /* If on, then readline handles signals in a way that doesn't suck. */ jpayne@69: #define HANDLE_SIGNALS jpayne@69: jpayne@69: /* Ugly but working hack for binding prefix meta. */ jpayne@69: #define PREFIX_META_HACK jpayne@69: jpayne@69: /* The next-to-last-ditch effort file name for a user-specific init file. */ jpayne@69: #define DEFAULT_INPUTRC "~/.inputrc" jpayne@69: jpayne@69: /* The ultimate last-ditch filename for an init file -- system-wide. */ jpayne@69: #define SYS_INPUTRC "/etc/inputrc" jpayne@69: jpayne@69: /* If defined, expand tabs to spaces. */ jpayne@69: #define DISPLAY_TABS jpayne@69: jpayne@69: /* If defined, use the terminal escape sequence to move the cursor forward jpayne@69: over a character when updating the line rather than rewriting it. */ jpayne@69: /* #define HACK_TERMCAP_MOTION */ jpayne@69: jpayne@69: /* The string inserted by the `insert comment' command. */ jpayne@69: #define RL_COMMENT_BEGIN_DEFAULT "#" jpayne@69: jpayne@69: /* Define this if you want code that allows readline to be used in an jpayne@69: X `callback' style. */ jpayne@69: #define READLINE_CALLBACKS jpayne@69: jpayne@69: /* Define this if you want the cursor to indicate insert or overwrite mode. */ jpayne@69: /* #define CURSOR_MODE */ jpayne@69: jpayne@69: /* Define this if you want to enable code that talks to the Linux kernel jpayne@69: tty auditing system. */ jpayne@69: /* #define ENABLE_TTY_AUDIT_SUPPORT */ jpayne@69: jpayne@69: /* Defaults for the various editing mode indicators, inserted at the beginning jpayne@69: of the last (maybe only) line of the prompt if show-mode-in-prompt is on */ jpayne@69: #define RL_EMACS_MODESTR_DEFAULT "@" jpayne@69: #define RL_EMACS_MODESTR_DEFLEN 1 jpayne@69: jpayne@69: #define RL_VI_INS_MODESTR_DEFAULT "(ins)" jpayne@69: #define RL_VI_INS_MODESTR_DEFLEN 5 jpayne@69: #define RL_VI_CMD_MODESTR_DEFAULT "(cmd)" jpayne@69: #define RL_VI_CMD_MODESTR_DEFLEN 5 jpayne@69: jpayne@69: #endif /* _RLCONF_H_ */