aboutsummaryrefslogtreecommitdiff
path: root/miscutils/less.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/less.c')
-rw-r--r--miscutils/less.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/miscutils/less.c b/miscutils/less.c
index a4ef1518f..c1d5e1b39 100644
--- a/miscutils/less.c
+++ b/miscutils/less.c
@@ -25,8 +25,8 @@
25//config: bool "less (15 kb)" 25//config: bool "less (15 kb)"
26//config: default y 26//config: default y
27//config: help 27//config: help
28//config: 'less' is a pager, meaning that it displays text files. It possesses 28//config: 'less' is a pager, meaning that it displays text files. It possesses
29//config: a wide array of features, and is an improvement over 'more'. 29//config: a wide array of features, and is an improvement over 'more'.
30//config: 30//config:
31//config:config FEATURE_LESS_MAXLINES 31//config:config FEATURE_LESS_MAXLINES
32//config: int "Max number of input lines less will try to eat" 32//config: int "Max number of input lines less will try to eat"
@@ -38,64 +38,64 @@
38//config: default y 38//config: default y
39//config: depends on LESS 39//config: depends on LESS
40//config: help 40//config: help
41//config: This option adds the capability to search for matching left and right 41//config: This option adds the capability to search for matching left and right
42//config: brackets, facilitating programming. 42//config: brackets, facilitating programming.
43//config: 43//config:
44//config:config FEATURE_LESS_FLAGS 44//config:config FEATURE_LESS_FLAGS
45//config: bool "Enable -m/-M" 45//config: bool "Enable -m/-M"
46//config: default y 46//config: default y
47//config: depends on LESS 47//config: depends on LESS
48//config: help 48//config: help
49//config: The -M/-m flag enables a more sophisticated status line. 49//config: The -M/-m flag enables a more sophisticated status line.
50//config: 50//config:
51//config:config FEATURE_LESS_TRUNCATE 51//config:config FEATURE_LESS_TRUNCATE
52//config: bool "Enable -S" 52//config: bool "Enable -S"
53//config: default y 53//config: default y
54//config: depends on LESS 54//config: depends on LESS
55//config: help 55//config: help
56//config: The -S flag causes long lines to be truncated rather than 56//config: The -S flag causes long lines to be truncated rather than
57//config: wrapped. 57//config: wrapped.
58//config: 58//config:
59//config:config FEATURE_LESS_MARKS 59//config:config FEATURE_LESS_MARKS
60//config: bool "Enable marks" 60//config: bool "Enable marks"
61//config: default y 61//config: default y
62//config: depends on LESS 62//config: depends on LESS
63//config: help 63//config: help
64//config: Marks enable positions in a file to be stored for easy reference. 64//config: Marks enable positions in a file to be stored for easy reference.
65//config: 65//config:
66//config:config FEATURE_LESS_REGEXP 66//config:config FEATURE_LESS_REGEXP
67//config: bool "Enable regular expressions" 67//config: bool "Enable regular expressions"
68//config: default y 68//config: default y
69//config: depends on LESS 69//config: depends on LESS
70//config: help 70//config: help
71//config: Enable regular expressions, allowing complex file searches. 71//config: Enable regular expressions, allowing complex file searches.
72//config: 72//config:
73//config:config FEATURE_LESS_WINCH 73//config:config FEATURE_LESS_WINCH
74//config: bool "Enable automatic resizing on window size changes" 74//config: bool "Enable automatic resizing on window size changes"
75//config: default y 75//config: default y
76//config: depends on LESS 76//config: depends on LESS
77//config: help 77//config: help
78//config: Makes less track window size changes. 78//config: Makes less track window size changes.
79//config: 79//config:
80//config:config FEATURE_LESS_ASK_TERMINAL 80//config:config FEATURE_LESS_ASK_TERMINAL
81//config: bool "Use 'tell me cursor position' ESC sequence to measure window" 81//config: bool "Use 'tell me cursor position' ESC sequence to measure window"
82//config: default y 82//config: default y
83//config: depends on FEATURE_LESS_WINCH 83//config: depends on FEATURE_LESS_WINCH
84//config: help 84//config: help
85//config: Makes less track window size changes. 85//config: Makes less track window size changes.
86//config: If terminal size can't be retrieved and $LINES/$COLUMNS are not set, 86//config: If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
87//config: this option makes less perform a last-ditch effort to find it: 87//config: this option makes less perform a last-ditch effort to find it:
88//config: position cursor to 999,999 and ask terminal to report real 88//config: position cursor to 999,999 and ask terminal to report real
89//config: cursor position using "ESC [ 6 n" escape sequence, then read stdin. 89//config: cursor position using "ESC [ 6 n" escape sequence, then read stdin.
90//config: This is not clean but helps a lot on serial lines and such. 90//config: This is not clean but helps a lot on serial lines and such.
91//config: 91//config:
92//config:config FEATURE_LESS_DASHCMD 92//config:config FEATURE_LESS_DASHCMD
93//config: bool "Enable flag changes ('-' command)" 93//config: bool "Enable flag changes ('-' command)"
94//config: default y 94//config: default y
95//config: depends on LESS 95//config: depends on LESS
96//config: help 96//config: help
97//config: This enables the ability to change command-line flags within 97//config: This enables the ability to change command-line flags within
98//config: less itself ('-' keyboard command). 98//config: less itself ('-' keyboard command).
99//config: 99//config:
100//config:config FEATURE_LESS_LINENUMS 100//config:config FEATURE_LESS_LINENUMS
101//config: bool "Enable -N (dynamic switching of line numbers)" 101//config: bool "Enable -N (dynamic switching of line numbers)"