3
0

Config.in 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Editors"
  6. config AWK
  7. bool "awk"
  8. default n
  9. help
  10. Awk is used as a pattern scanning and processing language. This is
  11. the BusyBox implementation of that programming language.
  12. config FEATURE_AWK_MATH
  13. bool "Enable math functions (requires libm)"
  14. default y
  15. depends on AWK
  16. help
  17. Enable math functions of the Awk programming language.
  18. NOTE: This will require libm to be present for linking.
  19. config ED
  20. bool "ed"
  21. default n
  22. help
  23. The original 1970's Unix text editor, from the days of teletypes.
  24. Small, simple, evil. Part of SUSv3. If you're not already using
  25. this, you don't need it.
  26. config PATCH
  27. bool "patch"
  28. default n
  29. help
  30. Apply a unified diff formatted patch.
  31. config SED
  32. bool "sed"
  33. default n
  34. help
  35. sed is used to perform text transformations on a file
  36. or input from a pipeline.
  37. config VI
  38. bool "vi"
  39. default n
  40. help
  41. 'vi' is a text editor. More specifically, it is the One True
  42. text editor <grin>. It does, however, have a rather steep
  43. learning curve. If you are not already comfortable with 'vi'
  44. you may wish to use something else.
  45. config FEATURE_VI_COLON
  46. bool "Enable \":\" colon commands (no \"ex\" mode)"
  47. default y
  48. depends on VI
  49. help
  50. Enable a limited set of colon commands for vi. This does not
  51. provide an "ex" mode.
  52. config FEATURE_VI_YANKMARK
  53. bool "Enable yank/put commands and mark cmds"
  54. default y
  55. depends on VI
  56. help
  57. This will enable you to use yank and put, as well as mark in
  58. busybox vi.
  59. config FEATURE_VI_SEARCH
  60. bool "Enable search and replace cmds"
  61. default y
  62. depends on VI
  63. help
  64. Select this if you wish to be able to do search and replace in
  65. busybox vi.
  66. config FEATURE_VI_USE_SIGNALS
  67. bool "Catch signals"
  68. default y
  69. depends on VI
  70. help
  71. Selecting this option will make busybox vi signal aware. This will
  72. make busybox vi support SIGWINCH to deal with Window Changes, catch
  73. Ctrl-Z and Ctrl-C and alarms.
  74. config FEATURE_VI_DOT_CMD
  75. bool "Remember previous cmd and \".\" cmd"
  76. default y
  77. depends on VI
  78. help
  79. Make busybox vi remember the last command and be able to repeat it.
  80. config FEATURE_VI_READONLY
  81. bool "Enable -R option and \"view\" mode"
  82. default y
  83. depends on VI
  84. help
  85. Enable the read-only command line option, which allows the user to
  86. open a file in read-only mode.
  87. config FEATURE_VI_SETOPTS
  88. bool "Enable set-able options, ai ic showmatch"
  89. default y
  90. depends on VI
  91. help
  92. Enable the editor to set some (ai, ic, showmatch) options.
  93. config FEATURE_VI_SET
  94. bool "Support for :set"
  95. default y
  96. depends on VI
  97. help
  98. Support for ":set".
  99. config FEATURE_VI_WIN_RESIZE
  100. bool "Handle window resize"
  101. default y
  102. depends on VI
  103. help
  104. Make busybox vi behave nicely with terminals that get resized.
  105. config FEATURE_VI_OPTIMIZE_CURSOR
  106. bool "Optimize cursor movement"
  107. default y
  108. depends on VI
  109. help
  110. This will make the cursor movement faster, but requires more memory
  111. and it makes the applet a tiny bit larger.
  112. endmenu