Config.in 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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_LIBM
  13. bool "Enable math functions (requires libm)"
  14. default n
  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 CMP
  20. bool "cmp"
  21. default n
  22. help
  23. cmp is used to compare two files and returns the result
  24. to standard output.
  25. config DIFF
  26. bool "diff"
  27. default n
  28. help
  29. diff compares two files or directories and outputs the
  30. differences between them in a form that can be given to
  31. the patch command.
  32. config FEATURE_DIFF_BINARY
  33. bool "Enable checks for binary files"
  34. default y
  35. depends on DIFF
  36. help
  37. This option enables support for checking for binary files
  38. before a comparison is carried out.
  39. config FEATURE_DIFF_DIR
  40. bool "Enable directory support"
  41. default y
  42. depends on DIFF
  43. help
  44. This option enables support for directory and subdirectory
  45. comparison.
  46. config FEATURE_DIFF_MINIMAL
  47. bool "Enable -d option to find smaller sets of changes"
  48. default n
  49. depends on DIFF
  50. help
  51. Enabling this option allows the use of -d to make diff
  52. try hard to find the smallest possible set of changes.
  53. config ED
  54. bool "ed"
  55. default n
  56. help
  57. The original 1970's Unix text editor, from the days of teletypes.
  58. Small, simple, evil. Part of SUSv3. If you're not already using
  59. this, you don't need it.
  60. config PATCH
  61. bool "patch"
  62. default n
  63. help
  64. Apply a unified diff formatted patch.
  65. config SED
  66. bool "sed"
  67. default n
  68. help
  69. sed is used to perform text transformations on a file
  70. or input from a pipeline.
  71. config VI
  72. bool "vi"
  73. default n
  74. help
  75. 'vi' is a text editor. More specifically, it is the One True
  76. text editor <grin>. It does, however, have a rather steep
  77. learning curve. If you are not already comfortable with 'vi'
  78. you may wish to use something else.
  79. config FEATURE_VI_MAX_LEN
  80. int "Maximum screen width in vi"
  81. range 256 16384
  82. default 4096
  83. depends on VI
  84. help
  85. Contrary to what you may think, this is not eating much.
  86. Make it smaller than 4k only if you are very limited on memory.
  87. config FEATURE_VI_8BIT
  88. bool "Allow vi to display 8-bit chars (otherwise shows dots)"
  89. default y
  90. depends on VI
  91. help
  92. If your terminal can display characters with high bit set,
  93. you may want to enable this. Note: vi is not Unicode-capable.
  94. If your terminal combines several 8-bit bytes into one character
  95. (as in Unicode mode), this will not work properly.
  96. config FEATURE_VI_COLON
  97. bool "Enable \":\" colon commands (no \"ex\" mode)"
  98. default y
  99. depends on VI
  100. help
  101. Enable a limited set of colon commands for vi. This does not
  102. provide an "ex" mode.
  103. config FEATURE_VI_YANKMARK
  104. bool "Enable yank/put commands and mark cmds"
  105. default y
  106. depends on VI
  107. help
  108. This will enable you to use yank and put, as well as mark in
  109. busybox vi.
  110. config FEATURE_VI_SEARCH
  111. bool "Enable search and replace cmds"
  112. default y
  113. depends on VI
  114. help
  115. Select this if you wish to be able to do search and replace in
  116. busybox vi.
  117. config FEATURE_VI_USE_SIGNALS
  118. bool "Catch signals"
  119. default y
  120. depends on VI
  121. help
  122. Selecting this option will make busybox vi signal aware. This will
  123. make busybox vi support SIGWINCH to deal with Window Changes, catch
  124. Ctrl-Z and Ctrl-C and alarms.
  125. config FEATURE_VI_DOT_CMD
  126. bool "Remember previous cmd and \".\" cmd"
  127. default y
  128. depends on VI
  129. help
  130. Make busybox vi remember the last command and be able to repeat it.
  131. config FEATURE_VI_READONLY
  132. bool "Enable -R option and \"view\" mode"
  133. default y
  134. depends on VI
  135. help
  136. Enable the read-only command line option, which allows the user to
  137. open a file in read-only mode.
  138. config FEATURE_VI_SETOPTS
  139. bool "Enable set-able options, ai ic showmatch"
  140. default y
  141. depends on VI
  142. help
  143. Enable the editor to set some (ai, ic, showmatch) options.
  144. config FEATURE_VI_SET
  145. bool "Support for :set"
  146. default y
  147. depends on VI
  148. help
  149. Support for ":set".
  150. config FEATURE_VI_WIN_RESIZE
  151. bool "Handle window resize"
  152. default y
  153. depends on VI
  154. help
  155. Make busybox vi behave nicely with terminals that get resized.
  156. config FEATURE_VI_OPTIMIZE_CURSOR
  157. bool "Optimize cursor movement"
  158. default y
  159. depends on VI
  160. help
  161. This will make the cursor movement faster, but requires more memory
  162. and it makes the applet a tiny bit larger.
  163. config FEATURE_ALLOW_EXEC
  164. bool "Allow vi and awk to execute shell commands"
  165. default y
  166. depends on VI || AWK
  167. help
  168. Enables vi and awk features which allows user to execute
  169. shell commands (using system() C call).
  170. endmenu