Config.in 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see docs/Kconfig-language.txt.
  5. #
  6. menu "Editors"
  7. config BUSYBOX_AWK
  8. bool "awk (23 kb)"
  9. default y
  10. help
  11. Awk is used as a pattern scanning and processing language.
  12. config BUSYBOX_FEATURE_AWK_LIBM
  13. bool "Enable math functions (requires libm)"
  14. default y
  15. depends on BUSYBOX_AWK
  16. help
  17. Enable math functions of the Awk programming language.
  18. NOTE: This requires libm to be present for linking.
  19. config BUSYBOX_FEATURE_AWK_GNU_EXTENSIONS
  20. bool "Enable a few GNU extensions"
  21. default y
  22. depends on BUSYBOX_AWK
  23. help
  24. Enable a few features from gawk:
  25. * command line option -e AWK_PROGRAM
  26. * simultaneous use of -f and -e on the command line.
  27. This enables the use of awk library files.
  28. Example: awk -f mylib.awk -e '{print myfunction($1);}' ...
  29. config BUSYBOX_CMP
  30. bool "cmp (4.9 kb)"
  31. default y
  32. help
  33. cmp is used to compare two files and returns the result
  34. to standard output.
  35. config BUSYBOX_DIFF
  36. bool "diff (13 kb)"
  37. default y
  38. help
  39. diff compares two files or directories and outputs the
  40. differences between them in a form that can be given to
  41. the patch command.
  42. config BUSYBOX_FEATURE_DIFF_LONG_OPTIONS
  43. bool "Enable long options"
  44. default y
  45. depends on BUSYBOX_DIFF && BUSYBOX_LONG_OPTS
  46. config BUSYBOX_FEATURE_DIFF_DIR
  47. bool "Enable directory support"
  48. default y
  49. depends on BUSYBOX_DIFF
  50. help
  51. This option enables support for directory and subdirectory
  52. comparison.
  53. config BUSYBOX_ED
  54. bool "ed (21 kb)"
  55. default y
  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 BUSYBOX_PATCH
  61. bool "patch (9.4 kb)"
  62. default y
  63. help
  64. Apply a unified diff formatted patch.
  65. config BUSYBOX_SED
  66. bool "sed (12 kb)"
  67. default y
  68. help
  69. sed is used to perform text transformations on a file
  70. or input from a pipeline.
  71. config BUSYBOX_VI
  72. bool "vi (23 kb)"
  73. default y
  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 BUSYBOX_FEATURE_VI_MAX_LEN
  80. int "Maximum screen width"
  81. range 256 16384
  82. default 4096
  83. depends on BUSYBOX_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 BUSYBOX_FEATURE_VI_8BIT
  88. bool "Allow to display 8-bit chars (otherwise shows dots)"
  89. default n
  90. depends on BUSYBOX_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 BUSYBOX_FEATURE_VI_COLON
  97. bool "Enable \":\" colon commands (no \"ex\" mode)"
  98. default y
  99. depends on BUSYBOX_VI
  100. help
  101. Enable a limited set of colon commands. This does not
  102. provide an "ex" mode.
  103. config BUSYBOX_FEATURE_VI_YANKMARK
  104. bool "Enable yank/put commands and mark cmds"
  105. default y
  106. depends on BUSYBOX_VI
  107. help
  108. This enables you to use yank and put, as well as mark.
  109. config BUSYBOX_FEATURE_VI_SEARCH
  110. bool "Enable search and replace cmds"
  111. default y
  112. depends on BUSYBOX_VI
  113. help
  114. Select this if you wish to be able to do search and replace.
  115. config BUSYBOX_FEATURE_VI_REGEX_SEARCH
  116. bool "Enable regex in search and replace"
  117. default n # Uses GNU regex, which may be unavailable. FIXME
  118. depends on BUSYBOX_FEATURE_VI_SEARCH
  119. help
  120. Use extended regex search.
  121. config BUSYBOX_FEATURE_VI_USE_SIGNALS
  122. bool "Catch signals"
  123. default y
  124. depends on BUSYBOX_VI
  125. help
  126. Selecting this option will make vi signal aware. This will support
  127. SIGWINCH to deal with Window Changes, catch ^Z and ^C and alarms.
  128. config BUSYBOX_FEATURE_VI_DOT_CMD
  129. bool "Remember previous cmd and \".\" cmd"
  130. default y
  131. depends on BUSYBOX_VI
  132. help
  133. Make vi remember the last command and be able to repeat it.
  134. config BUSYBOX_FEATURE_VI_READONLY
  135. bool "Enable -R option and \"view\" mode"
  136. default y
  137. depends on BUSYBOX_VI
  138. help
  139. Enable the read-only command line option, which allows the user to
  140. open a file in read-only mode.
  141. config BUSYBOX_FEATURE_VI_SETOPTS
  142. bool "Enable settable options, ai ic showmatch"
  143. default y
  144. depends on BUSYBOX_VI
  145. help
  146. Enable the editor to set some (ai, ic, showmatch) options.
  147. config BUSYBOX_FEATURE_VI_SET
  148. bool "Support :set"
  149. default y
  150. depends on BUSYBOX_VI
  151. config BUSYBOX_FEATURE_VI_WIN_RESIZE
  152. bool "Handle window resize"
  153. default y
  154. depends on BUSYBOX_VI
  155. help
  156. Behave nicely with terminals that get resized.
  157. config BUSYBOX_FEATURE_VI_ASK_TERMINAL
  158. bool "Use 'tell me cursor position' ESC sequence to measure window"
  159. default y
  160. depends on BUSYBOX_VI
  161. help
  162. If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
  163. this option makes vi perform a last-ditch effort to find it:
  164. position cursor to 999,999 and ask terminal to report real
  165. cursor position using "ESC [ 6 n" escape sequence, then read stdin.
  166. This is not clean but helps a lot on serial lines and such.
  167. config BUSYBOX_FEATURE_VI_UNDO
  168. bool "Support undo command \"u\""
  169. default y
  170. depends on BUSYBOX_VI
  171. help
  172. Support the 'u' command to undo insertion, deletion, and replacement
  173. of text.
  174. config BUSYBOX_FEATURE_VI_UNDO_QUEUE
  175. bool "Enable undo operation queuing"
  176. default y
  177. depends on BUSYBOX_FEATURE_VI_UNDO
  178. help
  179. The vi undo functions can use an intermediate queue to greatly lower
  180. malloc() calls and overhead. When the maximum size of this queue is
  181. reached, the contents of the queue are committed to the undo stack.
  182. This increases the size of the undo code and allows some undo
  183. operations (especially un-typing/backspacing) to be far more useful.
  184. config BUSYBOX_FEATURE_VI_UNDO_QUEUE_MAX
  185. int "Maximum undo character queue size"
  186. default 256
  187. range 32 65536
  188. depends on BUSYBOX_FEATURE_VI_UNDO_QUEUE
  189. help
  190. This option sets the number of bytes used at runtime for the queue.
  191. Smaller values will create more undo objects and reduce the amount
  192. of typed or backspaced characters that are grouped into one undo
  193. operation; larger values increase the potential size of each undo
  194. and will generally malloc() larger objects and less frequently.
  195. Unless you want more (or less) frequent "undo points" while typing,
  196. you should probably leave this unchanged.
  197. config BUSYBOX_FEATURE_ALLOW_EXEC
  198. bool "Allow vi and awk to execute shell commands"
  199. default y
  200. depends on BUSYBOX_VI || BUSYBOX_AWK
  201. help
  202. Enables vi and awk features which allow user to execute
  203. shell commands (using system() C call).
  204. endmenu