Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yad
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
yad
Commits
648b2ba7
Commit
648b2ba7
authored
Dec 06, 2022
by
Victor Ananjevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add --auto-scroll
parent
c0e26db7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
yad.1
data/yad.1
+2
-2
option.c
src/option.c
+2
-0
No files found.
data/yad.1
View file @
648b2ba7
...
...
@@ -778,7 +778,7 @@ Set precision of floating point numbers. By default precision is three digits af
.B \-\-add-on-top
Add new records at the top of the list.
.TP
.B \-\-tail
.B \-\-tail
| \-\-auto-scroll
Autoscroll to the end of the list when a new row will be added.
.TP
.B \-\-iec-format
...
...
@@ -977,7 +977,7 @@ Default is \fIleft\fP.
.B \-\-margins=\fINUMBER\fP
Set text margins to \fINUMBER\fP.
.TP
.B \-\-tail
.B \-\-tail
| \-\-auto-scroll
Autoscroll to end when new text appears. This option works only when text is read from stdin.
.TP
.B \-\-line=\fINUMBER\fP
...
...
src/option.c
View file @
648b2ba7
...
...
@@ -202,6 +202,8 @@ static GOptionEntry common_options[] = {
N_
(
"Allow changes to text in some cases"
),
NULL
},
{
"tail"
,
0
,
0
,
G_OPTION_ARG_NONE
,
&
options
.
common_data
.
tail
,
N_
(
"Autoscroll to end of text"
),
NULL
},
{
"auto-scroll"
,
0
,
0
,
G_OPTION_ARG_NONE
,
&
options
.
common_data
.
tail
,
N_
(
"Autoscroll to end of text (alias to tail)"
),
NULL
},
{
"quoted-output"
,
0
,
0
,
G_OPTION_ARG_NONE
,
&
options
.
common_data
.
quoted_output
,
N_
(
"Quote dialogs output"
),
NULL
},
{
"num-output"
,
0
,
0
,
G_OPTION_ARG_NONE
,
&
options
.
common_data
.
num_output
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment