xref: /OK3568_Linux_fs/buildroot/package/readline/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_READLINE
2	bool "readline"
3	select BR2_PACKAGE_NCURSES
4	help
5	  The GNU Readline library provides a set of functions for use
6	  by applications that allow users to edit command lines
7	  as they are typed in.
8
9	  https://tiswww.case.edu/php/chet/readline/rltop.html
10
11config BR2_PACKAGE_READLINE_BRACKETED_PASTE
12	bool "Enable bracketed paste"
13	depends on BR2_PACKAGE_READLINE
14	help
15	  Enable the "bracketed paste" feature in libreadline.
16
17	  Bracketed paste is helpful for interactive sessions when
18	  one wants to prevent pasted text from being interpreted
19	  as typed-in commands. However, it also causes control
20	  characters to show up in the raw output of a (telnet)
21	  session. This can cause issues and throw off pattern
22	  matching if the session output is being captured for
23	  automated processing.
24
25	  For further information on this feature and whether you
26	  may want it, see:
27	      https://cirw.in/blog/bracketed-paste
28