Fixing the position parameter and adding the documentation for it.

This commit is contained in:
Christoph Lohmann 2012-12-26 00:02:50 +01:00
parent 0a5c707488
commit 82fdff0023
2 changed files with 18 additions and 3 deletions

View file

@ -10,6 +10,8 @@ tabbed \- generic tabbed interface
.RB [ \-v ]
.RB [ \-n
.IR name ]
.RB [ \-p
.IR [ s +/- ] pos ]
.RB [ \-r
.IR narg ]
.IR [ command ... ]
@ -39,6 +41,16 @@ will print the usage of tabbed.
will set the WM_CLASS attribute to
.I name.
.TP
.BI \-p " [ s +/-] pos"
will set the absolute or relative position of where to start a new tab. When
.I pos
is is given without 's' in front it is an absolute position. Then negative
numbers will be the position from the last tab, where -1 is the last tab.
If 's' is given, then
.I pos
is a relative position to the current selected tab. If this reaches the limits
of the tabs; those limits then apply.
.TP
.BI \-r " narg"
will replace the
.I narg

View file

@ -1089,7 +1089,7 @@ char *argv0;
void
usage(void) {
die("usage: %s [-dfhsv] [-n name] [-p [+/-]pos] [-r narg]"
die("usage: %s [-dfhsv] [-n name] [-p [s+/-]pos] [-r narg]"
" command...\n", argv0);
}
@ -1114,9 +1114,12 @@ main(int argc, char *argv[]) {
break;
case 'p':
pstr = EARGF(usage());
if (pstr[0] == '-' || pstr[0] == '+')
if(pstr[0] == 's') {
npisrelative = True;
newposition = atoi(pstr);
newposition = atoi(&pstr[1]);
} else {
newposition = atoi(pstr);
}
break;
case 'r':
replace = atoi(EARGF(usage()));