Config.in 950 B

123456789101112131415161718192021222324252627
  1. config 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. https://tiswww.case.edu/php/chet/readline/rltop.html
  9. config BR2_PACKAGE_READLINE_BRACKETED_PASTE
  10. bool "Enable bracketed paste"
  11. depends on BR2_PACKAGE_READLINE
  12. help
  13. Enable the "bracketed paste" feature in libreadline.
  14. Bracketed paste is helpful for interactive sessions when
  15. one wants to prevent pasted text from being interpreted
  16. as typed-in commands. However, it also causes control
  17. characters to show up in the raw output of a (telnet)
  18. session. This can cause issues and throw off pattern
  19. matching if the session output is being captured for
  20. automated processing.
  21. For further information on this feature and whether you
  22. may want it, see:
  23. https://cirw.in/blog/bracketed-paste