rlconf.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* rlconf.h -- readline configuration definitions */
  2. /* Copyright (C) 1994 Free Software Foundation, Inc.
  3.    This file contains the Readline Library (the Library), a set of
  4.    routines for providing Emacs style line input to programs that ask
  5.    for it.
  6.    The Library is free software; you can redistribute it and/or modify
  7.    it under the terms of the GNU General Public License as published by
  8.    the Free Software Foundation; either version 1, or (at your option)
  9.    any later version.
  10.    The Library is distributed in the hope that it will be useful, but
  11.    WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.    General Public License for more details.
  14.    The GNU General Public License is often shipped with GNU software, and
  15.    is generally kept in a file called COPYING or LICENSE.  If you do not
  16.    have a copy of the license, write to the Free Software Foundation,
  17.    675 Mass Ave, Cambridge, MA 02139, USA. */
  18. #if !defined (_RLCONF_H_)
  19. #define _RLCONF_H_
  20. /* Define this if you want the vi-mode editing available. */
  21. #define VI_MODE
  22. /* Define this to get an indication of file type when listing completions. */
  23. #define VISIBLE_STATS
  24. /* If defined, readline shows opening parens and braces when closing
  25.    paren or brace entered. */
  26. /* #define PAREN_MATCHING */
  27. /* This definition is needed by readline.c, rltty.c, and signals.c. */
  28. /* If on, then readline handles signals in a way that doesn't screw. */
  29. #define HANDLE_SIGNALS
  30. /* Ugly but working hack for binding prefix meta. */
  31. #define PREFIX_META_HACK
  32. /* The final, last-ditch effort file name for an init file. */
  33. #define DEFAULT_INPUTRC "~/.inputrc"
  34. /* If defined, expand tabs to spaces. */
  35. #define DISPLAY_TABS
  36. /* If defined, use the terminal escape sequence to move the cursor forward
  37.    over a character when updating the line rather than rewriting it. */
  38. /* #define HACK_TERMCAP_MOTION */
  39. /* The string inserted by the `insert comment' command. */
  40. #define RL_COMMENT_BEGIN_DEFAULT "#"
  41. /* Define this if you want code that allows readline to be used in an
  42.    X `callback' style. */
  43. #define READLINE_CALLBACKS
  44. #endif /* _RLCONF_H_ */