Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Editors" |
| 7 | |
| 8 | config CONFIG_AWK |
| 9 | bool "awk" |
| 10 | default n |
| 11 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 12 | Awk is used as a pattern scanning and processing language. This is |
| 13 | the BusyBox implementation of that programming language. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 14 | |
| 15 | config CONFIG_FEATURE_AWK_MATH |
| 16 | bool " Enable math functions (requires libm)" |
| 17 | default y |
| 18 | depends on CONFIG_AWK |
| 19 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 20 | Enable math functions of the Awk programming language. |
| 21 | NOTE: This will require libm to be present for linking. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 22 | |
Glenn L McGrath | 655d814 | 2003-06-22 15:32:41 +0000 | [diff] [blame] | 23 | config CONFIG_PATCH |
| 24 | bool "patch" |
| 25 | default n |
| 26 | help |
| 27 | Apply a unified diff formated patch. |
| 28 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 29 | config CONFIG_SED |
| 30 | bool "sed" |
| 31 | default n |
| 32 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 33 | sed is used to perform text transformations on a file |
| 34 | or input from a pipeline. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 35 | |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 36 | config CONFIG_FEATURE_SED_EMBEDED_NEWLINE |
| 37 | bool " Embeded newline (EXPERIMENTAL)" |
| 38 | default n |
| 39 | depends on CONFIG_SED |
| 40 | help |
| 41 | This is a hack to allow matching of '\n' in regular expressions. |
| 42 | It works by translating '\n' to "\n" and back. |
| 43 | It may introduce unexpected results if you use "\n" in your text. |
| 44 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 45 | config CONFIG_VI |
| 46 | bool "vi" |
| 47 | default n |
| 48 | help |
Eric Andersen | 65e20a3 | 2003-07-05 07:52:35 +0000 | [diff] [blame] | 49 | 'vi' is a text editor. More specifically, it is the One True |
| 50 | text editor <grin>. It does, however, have a rather steep |
| 51 | learning curve. If you are not already comfortable with 'vi' |
| 52 | you may wish to use something else. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 53 | |
| 54 | config CONFIG_FEATURE_VI_COLON |
| 55 | bool " Enable \":\" colon commands (no \"ex\" mode)" |
| 56 | default y |
| 57 | depends on CONFIG_VI |
| 58 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 59 | Enable a limited set of colon commands for vi. This does not |
| 60 | provide an "ex" mode. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 61 | |
| 62 | config CONFIG_FEATURE_VI_YANKMARK |
| 63 | bool " Enable yank/put commands and mark cmds" |
| 64 | default y |
| 65 | depends on CONFIG_VI |
| 66 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 67 | This will enable you to use yank and put, as well as mark in |
| 68 | busybox vi. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 69 | |
| 70 | config CONFIG_FEATURE_VI_SEARCH |
| 71 | bool " Enable search and replace cmds" |
| 72 | default y |
| 73 | depends on CONFIG_VI |
| 74 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 75 | Select this if you wish to be able to do search and replace in |
| 76 | busybox vi. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 77 | |
| 78 | config CONFIG_FEATURE_VI_USE_SIGNALS |
| 79 | bool " Catch signals" |
| 80 | default y |
| 81 | depends on CONFIG_VI |
| 82 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 83 | Selecting this option will make busybox vi signal aware. This will |
| 84 | make busybox vi support SIGWINCH to deal with Window Changes, catch |
| 85 | Ctrl-Z and Ctrl-C and alarms. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 86 | |
| 87 | config CONFIG_FEATURE_VI_DOT_CMD |
| 88 | bool " Remember previous cmd and \".\" cmd" |
| 89 | default y |
| 90 | depends on CONFIG_VI |
| 91 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 92 | Make busybox vi remember the last command and be able to repeat it. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 93 | |
| 94 | config CONFIG_FEATURE_VI_READONLY |
| 95 | bool " Enable -R option and \"view\" mode" |
| 96 | default y |
| 97 | depends on CONFIG_VI |
| 98 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 99 | Enable the read-only command line option, which allows the user to |
| 100 | open a file in read-only mode. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 101 | |
| 102 | config CONFIG_FEATURE_VI_SETOPTS |
| 103 | bool " Enable set-able options, ai ic showmatch" |
| 104 | default y |
| 105 | depends on CONFIG_VI |
| 106 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 107 | Enable the editor to set some (ai, ic, showmatch) options. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 108 | |
| 109 | config CONFIG_FEATURE_VI_SET |
| 110 | bool " Support for :set" |
| 111 | default y |
| 112 | depends on CONFIG_VI |
| 113 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 114 | Support for ":set". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 115 | |
| 116 | config CONFIG_FEATURE_VI_WIN_RESIZE |
| 117 | bool " Handle window resize" |
| 118 | default y |
| 119 | depends on CONFIG_VI |
| 120 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 121 | Make busybox vi behave nicely with terminals that get resized. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 122 | |
| 123 | config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR |
| 124 | bool " Optimize cursor movement" |
| 125 | default y |
| 126 | depends on CONFIG_VI |
| 127 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 128 | This will make the cursor movement faster, but requires more memory |
| 129 | and it makes the applet a tiny bit larger. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 130 | |
| 131 | endmenu |
| 132 | |