2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-11 20:12:03 +02:00
|
|
|
|
2015-04-07 21:23:39 +02:00
|
|
|
menuconfig SYSTEM_READLINE
|
|
|
|
bool "readline() Support"
|
2012-04-14 22:01:08 +02:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for the readline() function.
|
|
|
|
|
2015-07-30 20:11:58 +02:00
|
|
|
config READLINE_HAVE_EXTMATCH
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2012-04-14 22:01:08 +02:00
|
|
|
if SYSTEM_READLINE
|
2015-04-07 21:23:39 +02:00
|
|
|
|
2012-04-14 22:22:48 +02:00
|
|
|
config READLINE_ECHO
|
2012-04-11 20:12:03 +02:00
|
|
|
bool "Echo character input"
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Echo received character input back via stdout. This is normal
|
|
|
|
behavior and should be selected unless the source of stdin input
|
|
|
|
already has local echo support or you need to suppress the back-channel
|
|
|
|
responses for any other reason.
|
|
|
|
|
2015-07-28 15:17:50 +02:00
|
|
|
config READLINE_TABCOMPLETION
|
|
|
|
bool "Tab completion"
|
|
|
|
default n
|
2015-07-30 20:11:58 +02:00
|
|
|
depends on (BUILD_FLAT && BUILTIN) || READLINE_HAVE_EXTMATCH
|
2015-07-28 15:17:50 +02:00
|
|
|
---help---
|
|
|
|
Build in support for Unix-style tab completion. This feature was
|
2015-07-30 20:11:58 +02:00
|
|
|
originally provided by Nghia.
|
|
|
|
|
|
|
|
if READLINE_TABCOMPLETION
|
|
|
|
|
|
|
|
config READLINE_MAX_BUILTINS
|
|
|
|
int "Maximum built-in matches"
|
|
|
|
default 64
|
|
|
|
depends on BUILTIN
|
|
|
|
---help---
|
|
|
|
This the maximum number of matching names of builtin commands that
|
|
|
|
will be displayed.
|
|
|
|
|
|
|
|
config READLINE_MAX_EXTCMDS
|
|
|
|
int "Maximum built-in matches"
|
|
|
|
default 64
|
|
|
|
depends on READLINE_HAVE_EXTMATCH
|
|
|
|
---help---
|
|
|
|
This the maximum number of matching names of builtin commands that
|
|
|
|
will be displayed.
|
2015-07-28 15:17:50 +02:00
|
|
|
|
2015-07-30 20:11:58 +02:00
|
|
|
endif # READLINE_TABCOMPLETION
|
|
|
|
endif # SYSTEM_READLINE
|