Fix up indenting
[oweals/busybox.git] / editors / Config.in
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
12           Please submit a patch to add help text for this item.
13
14 config CONFIG_FEATURE_AWK_MATH
15         bool "  Enable math functions (requires libm)"
16         default y
17         depends on CONFIG_AWK
18         help
19           Please submit a patch to add help text for this item.
20
21 config CONFIG_SED
22         bool "sed"
23         default n
24         help
25           Please submit a patch to add help text for this item.
26
27 config CONFIG_FEATURE_SED_EMBEDED_NEWLINE
28         bool " Embeded newline (EXPERIMENTAL)"
29         default n
30         depends on CONFIG_SED
31         help
32           This is a hack to allow matching of '\n' in regular expressions.
33           It works by translating '\n' to "\n" and back.
34           It may introduce unexpected results if you use "\n" in your text.
35
36 config CONFIG_VI
37         bool "vi"
38         default n
39         help
40           Please submit a patch to add help text for this item.
41
42 config CONFIG_FEATURE_VI_COLON
43         bool "  Enable \":\" colon commands (no \"ex\" mode)"
44         default y
45         depends on CONFIG_VI
46         help
47           Please submit a patch to add help text for this item.
48
49 config CONFIG_FEATURE_VI_YANKMARK
50         bool "  Enable yank/put commands and mark cmds"
51         default y
52         depends on CONFIG_VI
53         help
54           Please submit a patch to add help text for this item.
55
56 config CONFIG_FEATURE_VI_SEARCH
57         bool "  Enable search and replace cmds"
58         default y
59         depends on CONFIG_VI
60         help
61           Please submit a patch to add help text for this item.
62
63 config CONFIG_FEATURE_VI_USE_SIGNALS
64         bool "  Catch signals"
65         default y
66         depends on CONFIG_VI
67         help
68           Please submit a patch to add help text for this item.
69
70 config CONFIG_FEATURE_VI_DOT_CMD
71         bool "  Remember previous cmd and \".\" cmd"
72         default y
73         depends on CONFIG_VI
74         help
75           Please submit a patch to add help text for this item.
76
77 config CONFIG_FEATURE_VI_READONLY
78         bool "  Enable -R option and \"view\" mode"
79         default y
80         depends on CONFIG_VI
81         help
82           Please submit a patch to add help text for this item.
83
84 config CONFIG_FEATURE_VI_SETOPTS
85         bool "  Enable set-able options, ai ic showmatch"
86         default y
87         depends on CONFIG_VI
88         help
89           Please submit a patch to add help text for this item.
90
91 config CONFIG_FEATURE_VI_SET
92         bool "  Support for :set"
93         default y
94         depends on CONFIG_VI
95         help
96           Please submit a patch to add help text for this item.
97
98 config CONFIG_FEATURE_VI_WIN_RESIZE
99         bool "  Handle window resize"
100         default y
101         depends on CONFIG_VI
102         help
103           Please submit a patch to add help text for this item.
104
105 config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
106         bool "  Optimize cursor movement"
107         default y
108         depends on CONFIG_VI
109         help
110           Please submit a patch to add help text for this item.
111
112 endmenu
113