aboutsummaryrefslogtreecommitdiff
path: root/editors/Config.src
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-04 20:10:51 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-04 20:10:51 +0200
commitda929a95aace0e79fbc621af2ab03c76d74d5fcb (patch)
tree2b7dd63658eef78fde7604772d9815283c2c1cdf /editors/Config.src
parente4070cb0d7586037c6fcf0f0f00d8d5b97f649d3 (diff)
downloadbusybox-w32-da929a95aace0e79fbc621af2ab03c76d74d5fcb.tar.gz
busybox-w32-da929a95aace0e79fbc621af2ab03c76d74d5fcb.tar.bz2
busybox-w32-da929a95aace0e79fbc621af2ab03c76d74d5fcb.zip
mass renaming Kbuild -> Kbuild.src, Config.in -> Config.src
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/Config.src')
-rw-r--r--editors/Config.src199
1 files changed, 199 insertions, 0 deletions
diff --git a/editors/Config.src b/editors/Config.src
new file mode 100644
index 000000000..5f9566f0a
--- /dev/null
+++ b/editors/Config.src
@@ -0,0 +1,199 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Editors"
7
8config AWK
9 bool "awk"
10 default n
11 help
12 Awk is used as a pattern scanning and processing language. This is
13 the BusyBox implementation of that programming language.
14
15config FEATURE_AWK_LIBM
16 bool "Enable math functions (requires libm)"
17 default n
18 depends on AWK
19 help
20 Enable math functions of the Awk programming language.
21 NOTE: This will require libm to be present for linking.
22
23config CMP
24 bool "cmp"
25 default n
26 help
27 cmp is used to compare two files and returns the result
28 to standard output.
29
30config DIFF
31 bool "diff"
32 default n
33 help
34 diff compares two files or directories and outputs the
35 differences between them in a form that can be given to
36 the patch command.
37
38config FEATURE_DIFF_LONG_OPTIONS
39 bool "Enable long options"
40 default n
41 depends on DIFF && LONG_OPTS
42 help
43 Enable use of long options.
44
45config FEATURE_DIFF_DIR
46 bool "Enable directory support"
47 default y
48 depends on DIFF
49 help
50 This option enables support for directory and subdirectory
51 comparison.
52
53config 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
61config PATCH
62 bool "patch"
63 default n
64 help
65 Apply a unified diff formatted patch.
66
67config SED
68 bool "sed"
69 default n
70 help
71 sed is used to perform text transformations on a file
72 or input from a pipeline.
73
74config VI
75 bool "vi"
76 default n
77 help
78 'vi' is a text editor. More specifically, it is the One True
79 text editor <grin>. It does, however, have a rather steep
80 learning curve. If you are not already comfortable with 'vi'
81 you may wish to use something else.
82
83config FEATURE_VI_MAX_LEN
84 int "Maximum screen width in vi"
85 range 256 16384
86 default 4096
87 depends on VI
88 help
89 Contrary to what you may think, this is not eating much.
90 Make it smaller than 4k only if you are very limited on memory.
91
92config FEATURE_VI_8BIT
93 bool "Allow vi to display 8-bit chars (otherwise shows dots)"
94 default y
95 depends on VI
96 help
97 If your terminal can display characters with high bit set,
98 you may want to enable this. Note: vi is not Unicode-capable.
99 If your terminal combines several 8-bit bytes into one character
100 (as in Unicode mode), this will not work properly.
101
102config FEATURE_VI_COLON
103 bool "Enable \":\" colon commands (no \"ex\" mode)"
104 default y
105 depends on VI
106 help
107 Enable a limited set of colon commands for vi. This does not
108 provide an "ex" mode.
109
110config FEATURE_VI_YANKMARK
111 bool "Enable yank/put commands and mark cmds"
112 default y
113 depends on VI
114 help
115 This will enable you to use yank and put, as well as mark in
116 busybox vi.
117
118config FEATURE_VI_SEARCH
119 bool "Enable search and replace cmds"
120 default y
121 depends on VI
122 help
123 Select this if you wish to be able to do search and replace in
124 busybox vi.
125
126config FEATURE_VI_USE_SIGNALS
127 bool "Catch signals"
128 default y
129 depends on VI
130 help
131 Selecting this option will make busybox vi signal aware. This will
132 make busybox vi support SIGWINCH to deal with Window Changes, catch
133 Ctrl-Z and Ctrl-C and alarms.
134
135config FEATURE_VI_DOT_CMD
136 bool "Remember previous cmd and \".\" cmd"
137 default y
138 depends on VI
139 help
140 Make busybox vi remember the last command and be able to repeat it.
141
142config FEATURE_VI_READONLY
143 bool "Enable -R option and \"view\" mode"
144 default y
145 depends on VI
146 help
147 Enable the read-only command line option, which allows the user to
148 open a file in read-only mode.
149
150config FEATURE_VI_SETOPTS
151 bool "Enable set-able options, ai ic showmatch"
152 default y
153 depends on VI
154 help
155 Enable the editor to set some (ai, ic, showmatch) options.
156
157config FEATURE_VI_SET
158 bool "Support for :set"
159 default y
160 depends on VI
161 help
162 Support for ":set".
163
164config FEATURE_VI_WIN_RESIZE
165 bool "Handle window resize"
166 default y
167 depends on VI
168 help
169 Make busybox vi behave nicely with terminals that get resized.
170
171config FEATURE_VI_ASK_TERMINAL
172 bool "Use 'tell me cursor position' ESC sequence to measure window"
173 default n
174 depends on VI
175 help
176 If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
177 this option makes vi perform a last-ditch effort to find it:
178 vi positions cursor to 999,999 and asks terminal to report real
179 cursor position using "ESC [ 6 n" escape sequence, then reads stdin.
180
181 This is not clean but helps a lot on serial lines and such.
182
183config FEATURE_VI_OPTIMIZE_CURSOR
184 bool "Optimize cursor movement"
185 default y
186 depends on VI
187 help
188 This will make the cursor movement faster, but requires more memory
189 and it makes the applet a tiny bit larger.
190
191config FEATURE_ALLOW_EXEC
192 bool "Allow vi and awk to execute shell commands"
193 default y
194 depends on VI || AWK
195 help
196 Enables vi and awk features which allows user to execute
197 shell commands (using system() C call).
198
199endmenu