Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_RLWRAP
  2. bool "rlwrap"
  3. depends on BR2_USE_MMU # fork()
  4. select BR2_PACKAGE_READLINE
  5. help
  6. rlwrap is a 'readline wrapper', a small utility that uses the
  7. GNU Readline library to allow the editing of keyboard input
  8. for any command.
  9. https://github.com/hanslub42/rlwrap
  10. if BR2_PACKAGE_RLWRAP
  11. config BR2_PACKAGE_RLWRAP_SPY_ON_READLINE
  12. bool "spy on readline"
  13. default y
  14. help
  15. If we want to keep the display tidy when re-sizing the
  16. terminal window or printing multi-line prompts, we have to
  17. know whether or not readline is in horizontal-scroll-mode
  18. (i.e. whether long lines are scrolled or wrapped). At present,
  19. this involves a look at a private readline variable - if you
  20. feel guilty about that, disable this option
  21. config BR2_PACKAGE_RLWRAP_HOMEGROWN_REDISPLAY
  22. bool "homegrown redisplay"
  23. help
  24. Some people report double echoing of user input. Enabling this
  25. option will cure the problem - though the display will then
  26. flicker over slow connections (cf. BUGS)
  27. config BR2_PACKAGE_RLWRAP_MULTIBYTE_AWARE
  28. bool "multibyte awareness"
  29. default y
  30. depends on BR2_USE_WCHAR
  31. help
  32. Prevent rlwrap from seeing multibyte characters as multiple
  33. characters
  34. comment "rlwrap multibyte awareness needs a toolchain w/ wchar"
  35. depends on !BR2_USE_WCHAR
  36. endif