aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/Config.in24
1 files changed, 15 insertions, 9 deletions
diff --git a/editors/Config.in b/editors/Config.in
index 22908de4d..14b698f5d 100644
--- a/editors/Config.in
+++ b/editors/Config.in
@@ -56,35 +56,40 @@ config CONFIG_FEATURE_VI_COLON
56 default y 56 default y
57 depends on CONFIG_VI 57 depends on CONFIG_VI
58 help 58 help
59 Please submit a patch to add help text for this item. 59 Enable a limited set of colon commands for vi. This does not
60 provide an "ex" mode.
60 61
61config CONFIG_FEATURE_VI_YANKMARK 62config CONFIG_FEATURE_VI_YANKMARK
62 bool " Enable yank/put commands and mark cmds" 63 bool " Enable yank/put commands and mark cmds"
63 default y 64 default y
64 depends on CONFIG_VI 65 depends on CONFIG_VI
65 help 66 help
66 Please submit a patch to add help text for this item. 67 This will enable you to use yank and put, as well as mark in
68 busybox vi.
67 69
68config CONFIG_FEATURE_VI_SEARCH 70config CONFIG_FEATURE_VI_SEARCH
69 bool " Enable search and replace cmds" 71 bool " Enable search and replace cmds"
70 default y 72 default y
71 depends on CONFIG_VI 73 depends on CONFIG_VI
72 help 74 help
73 Please submit a patch to add help text for this item. 75 Select this if you wish to be able to do search and replace in
76 busybox vi.
74 77
75config CONFIG_FEATURE_VI_USE_SIGNALS 78config CONFIG_FEATURE_VI_USE_SIGNALS
76 bool " Catch signals" 79 bool " Catch signals"
77 default y 80 default y
78 depends on CONFIG_VI 81 depends on CONFIG_VI
79 help 82 help
80 Please submit a patch to add help text for this item. 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.
81 86
82config CONFIG_FEATURE_VI_DOT_CMD 87config CONFIG_FEATURE_VI_DOT_CMD
83 bool " Remember previous cmd and \".\" cmd" 88 bool " Remember previous cmd and \".\" cmd"
84 default y 89 default y
85 depends on CONFIG_VI 90 depends on CONFIG_VI
86 help 91 help
87 Please submit a patch to add help text for this item. 92 Make busybox vi remember the last command and be able to repeat it.
88 93
89config CONFIG_FEATURE_VI_READONLY 94config CONFIG_FEATURE_VI_READONLY
90 bool " Enable -R option and \"view\" mode" 95 bool " Enable -R option and \"view\" mode"
@@ -99,28 +104,29 @@ config CONFIG_FEATURE_VI_SETOPTS
99 default y 104 default y
100 depends on CONFIG_VI 105 depends on CONFIG_VI
101 help 106 help
102 Please submit a patch to add help text for this item. 107 Enable the editor to set some (ai, ic, showmatch) options.
103 108
104config CONFIG_FEATURE_VI_SET 109config CONFIG_FEATURE_VI_SET
105 bool " Support for :set" 110 bool " Support for :set"
106 default y 111 default y
107 depends on CONFIG_VI 112 depends on CONFIG_VI
108 help 113 help
109 Please submit a patch to add help text for this item. 114 Support for ":set".
110 115
111config CONFIG_FEATURE_VI_WIN_RESIZE 116config CONFIG_FEATURE_VI_WIN_RESIZE
112 bool " Handle window resize" 117 bool " Handle window resize"
113 default y 118 default y
114 depends on CONFIG_VI 119 depends on CONFIG_VI
115 help 120 help
116 Please submit a patch to add help text for this item. 121 Make busybox vi behave nicely with terminals that get resized.
117 122
118config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR 123config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
119 bool " Optimize cursor movement" 124 bool " Optimize cursor movement"
120 default y 125 default y
121 depends on CONFIG_VI 126 depends on CONFIG_VI
122 help 127 help
123 Please submit a patch to add help text for this item. 128 This will make the cursor movement faster, but requires more memory
129 and it makes the applet a tiny bit larger.
124 130
125endmenu 131endmenu
126 132