aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/Config.in104
-rw-r--r--editors/config.in28
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
6menu "Editors"
7
8config CONFIG_AWK
9 bool "awk"
10 default n
11 help
12 Please submit a patch to add help text for this item.
13
14config 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
21config CONFIG_SED
22 bool "sed"
23 default n
24 help
25 Please submit a patch to add help text for this item.
26
27config CONFIG_VI
28 bool "vi"
29 default n
30 help
31 Please submit a patch to add help text for this item.
32
33config 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
40config 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
47config 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
54config 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
61config 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
68config 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
75config 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
82config 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
89config 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
96config 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
103endmenu
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
6mainmenu_option next_comment
7comment 'Editors'
8
9bool 'awk' CONFIG_AWK
10if [ "$CONFIG_AWK" = "y" ]; then
11 bool ' Enable math functions (requires libm)' CONFIG_FEATURE_AWK_MATH
12fi
13bool 'sed' CONFIG_SED
14bool 'vi' CONFIG_VI
15if [ "$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
26fi
27endmenu
28