diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-22 15:40:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-12-22 15:40:13 +0000 |
commit | 88adfcd17863361a827551a572f993e43356eefc (patch) | |
tree | 7ea5952f0f96e9488a3c822dcdaa1db9bc41d783 /editors/Config.in | |
parent | ee87ebf3815d37cbdcaf766a06ed40d4ca0dfe81 (diff) |
vi: change MAX_LINELEN meaning: now it is the biggest supported
screen wigth. Introduce MAX_TABSTOP and MAX_INPUT_LEN. Fix redraw
of very long lines and cursor movement past NULs.
Diffstat (limited to 'editors/Config.in')
-rw-r--r-- | editors/Config.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/editors/Config.in b/editors/Config.in index 3361d89f1..7c06678fb 100644 --- a/editors/Config.in +++ b/editors/Config.in @@ -90,14 +90,13 @@ config VI you may wish to use something else. config FEATURE_VI_MAX_LEN - int "Maximum line length in vi" + int "Maximum screen width in vi" range 256 16384 - default 1024 + default 4096 depends on VI help - vi uses on-stack buffers for intermediate line buffers. - You may want to decrease this parameter if your target machine - benefits from smaller stack usage. + Contrary to what you may think, this is not eating much. + Make it smaller than 4k only if you are very limited on memory. config FEATURE_VI_COLON bool "Enable \":\" colon commands (no \"ex\" mode)" |