diff options
author | Denis Vlasenko | 2008-10-24 22:43:27 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-10-24 22:43:27 +0000 |
commit | 53c80f09723fa5e9bccd6fbab9c11b14ed520404 (patch) | |
tree | 1c05b9eb8166124b0ac9fb74587aca6459634755 /miscutils/Config.in | |
parent | aa2a1c000c360d89c36c9b1138473ab5f57a946f (diff) | |
download | busybox-53c80f09723fa5e9bccd6fbab9c11b14ed520404.zip busybox-53c80f09723fa5e9bccd6fbab9c11b14ed520404.tar.gz |
less: add optional line number toggle and resizing on SIGWINCH.
Diffstat (limited to 'miscutils/Config.in')
-rw-r--r-- | miscutils/Config.in | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index 15f677a..40edf23 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in @@ -293,13 +293,13 @@ config FEATURE_LESS_FLAGS The -M flag enables a more sophisticated status line. The -m flag enables a simpler status line with a percentage. -config FEATURE_LESS_FLAGCS - bool "Enable flag changes" +config FEATURE_LESS_DASHCMD + bool "Enable flag changes ('-' command)" default n depends on LESS help This enables the ability to change command-line flags within - less itself. + less itself ('-' keyboard command). config FEATURE_LESS_MARKS bool "Enable marks" @@ -315,6 +315,20 @@ config FEATURE_LESS_REGEXP help Enable regular expressions, allowing complex file searches. +config FEATURE_LESS_LINENUMS + bool "Enable dynamic switching of line numbers" + default n + depends on LESS + help + Enable "-N" command. + +config FEATURE_LESS_WINCH + bool "Enable automatic resizing on window size changes" + default n + depends on LESS + help + Makes less track window size changes. + config HDPARM bool "hdparm" default n |