diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Config.in | 104 | ||||
-rw-r--r-- | editors/config.in | 28 |
2 files changed, 104 insertions, 28 deletions
diff --git a/editors/Config.in b/editors/Config.in new file mode 100644 index 000000000..4f2817598 --- /dev/null +++ b/editors/Config.in | |||
@@ -0,0 +1,104 @@ | |||
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_VI | ||
28 | bool "vi" | ||
29 | default n | ||
30 | help | ||
31 | Please submit a patch to add help text for this item. | ||
32 | |||
33 | config CONFIG_FEATURE_VI_COLON | ||
34 | bool " Enable \":\" colon commands (no \"ex\" mode)" | ||
35 | default y | ||
36 | depends on CONFIG_VI | ||
37 | help | ||
38 | Please submit a patch to add help text for this item. | ||
39 | |||
40 | config CONFIG_FEATURE_VI_YANKMARK | ||
41 | bool " Enable yank/put commands and mark cmds" | ||
42 | default y | ||
43 | depends on CONFIG_VI | ||
44 | help | ||
45 | Please submit a patch to add help text for this item. | ||
46 | |||
47 | config CONFIG_FEATURE_VI_SEARCH | ||
48 | bool " Enable search and replace cmds" | ||
49 | default y | ||
50 | depends on CONFIG_VI | ||
51 | help | ||
52 | Please submit a patch to add help text for this item. | ||
53 | |||
54 | config CONFIG_FEATURE_VI_USE_SIGNALS | ||
55 | bool " Catch signals" | ||
56 | default y | ||
57 | depends on CONFIG_VI | ||
58 | help | ||
59 | Please submit a patch to add help text for this item. | ||
60 | |||
61 | config CONFIG_FEATURE_VI_DOT_CMD | ||
62 | bool " Remember previous cmd and \".\" cmd" | ||
63 | default y | ||
64 | depends on CONFIG_VI | ||
65 | help | ||
66 | Please submit a patch to add help text for this item. | ||
67 | |||
68 | config CONFIG_FEATURE_VI_READONLY | ||
69 | bool " Enable -R option and \"view\" mode" | ||
70 | default y | ||
71 | depends on CONFIG_VI | ||
72 | help | ||
73 | Please submit a patch to add help text for this item. | ||
74 | |||
75 | config CONFIG_FEATURE_VI_SETOPTS | ||
76 | bool " Enable set-able options, ai ic showmatch" | ||
77 | default y | ||
78 | depends on CONFIG_VI | ||
79 | help | ||
80 | Please submit a patch to add help text for this item. | ||
81 | |||
82 | config CONFIG_FEATURE_VI_SET | ||
83 | bool " Support for :set" | ||
84 | default y | ||
85 | depends on CONFIG_VI | ||
86 | help | ||
87 | Please submit a patch to add help text for this item. | ||
88 | |||
89 | config CONFIG_FEATURE_VI_WIN_RESIZE | ||
90 | bool " Handle window resize" | ||
91 | default y | ||
92 | depends on CONFIG_VI | ||
93 | help | ||
94 | Please submit a patch to add help text for this item. | ||
95 | |||
96 | config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR | ||
97 | bool " Optimize cursor movement" | ||
98 | default y | ||
99 | depends on CONFIG_VI | ||
100 | help | ||
101 | Please submit a patch to add help text for this item. | ||
102 | |||
103 | endmenu | ||
104 | |||
diff --git a/editors/config.in b/editors/config.in deleted file mode 100644 index 54e1a90e9..000000000 --- a/editors/config.in +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | # | ||
2 | # For a description of the syntax of this configuration file, | ||
3 | # see scripts/kbuild/config-language.txt. | ||
4 | # | ||
5 | |||
6 | mainmenu_option next_comment | ||
7 | comment 'Editors' | ||
8 | |||
9 | bool 'awk' CONFIG_AWK | ||
10 | if [ "$CONFIG_AWK" = "y" ]; then | ||
11 | bool ' Enable math functions (requires libm)' CONFIG_FEATURE_AWK_MATH | ||
12 | fi | ||
13 | bool 'sed' CONFIG_SED | ||
14 | bool 'vi' CONFIG_VI | ||
15 | if [ "$CONFIG_VI" = "y" ]; then | ||
16 | bool ' Enable ":" colon commands (no "ex" mode)' CONFIG_FEATURE_VI_COLON | ||
17 | bool ' Enable yank/put commands and mark cmds' CONFIG_FEATURE_VI_YANKMARK | ||
18 | bool ' Enable search and replace cmds' CONFIG_FEATURE_VI_SEARCH | ||
19 | bool ' Catch signals' CONFIG_FEATURE_VI_USE_SIGNALS | ||
20 | bool ' Remember previous cmd and "." cmd' CONFIG_FEATURE_VI_DOT_CMD | ||
21 | bool ' Enable -R option and "view" mode' CONFIG_FEATURE_VI_READONLY | ||
22 | bool ' Enable set-able options, ai ic showmatch' CONFIG_FEATURE_VI_SETOPTS | ||
23 | bool ' Support for :set' CONFIG_FEATURE_VI_SET | ||
24 | bool ' Handle window resize' CONFIG_FEATURE_VI_WIN_RESIZE | ||
25 | bool ' Optimize cursor movement' CONFIG_FEATURE_VI_OPTIMIZE_CURSOR | ||
26 | fi | ||
27 | endmenu | ||
28 | |||