1 /* $NetBSD: ex_shift.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: ex_shift.c,v 10.17 2001/06/25 15:19:20 skimo Exp (Berkeley) Date: 2001/06/25 15:19:20 ";
19 __RCSID("$NetBSD: ex_shift.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
25 #include <bitstring.h>
31 #include "../common/common.h"
33 enum which
{LEFT
, RIGHT
};
34 static int shift
__P((SCR
*, EXCMD
*, enum which
));
37 * ex_shiftl -- :<[<...]
40 * PUBLIC: int ex_shiftl __P((SCR *, EXCMD *));
43 ex_shiftl(SCR
*sp
, EXCMD
*cmdp
)
45 return (shift(sp
, cmdp
, LEFT
));
49 * ex_shiftr -- :>[>...]
51 * PUBLIC: int ex_shiftr __P((SCR *, EXCMD *));
54 ex_shiftr(SCR
*sp
, EXCMD
*cmdp
)
56 return (shift(sp
, cmdp
, RIGHT
));
64 shift(SCR
*sp
, EXCMD
*cmdp
, enum which rl
)
67 size_t blen
, len
, newcol
, newidx
, oldcol
, oldidx
, sw
;
74 if (O_VAL(sp
, O_SHIFTWIDTH
) == 0) {
75 msgq(sp
, M_INFO
, "152|shiftwidth option set to 0");
79 /* Copy the lines being shifted into the unnamed buffer. */
80 if (cut(sp
, NULL
, &cmdp
->addr1
, &cmdp
->addr2
, CUT_LINEMODE
))
84 * The historic version of vi permitted the user to string any number
85 * of '>' or '<' characters together, resulting in an indent of the
86 * appropriate levels. There's a special hack in ex_cmd() so that
87 * cmdp->argv[0] points to the string of '>' or '<' characters.
89 * Q: What's the difference between the people adding features
90 * to vi and the Girl Scouts?
91 * A: The Girl Scouts have mint cookies and adult supervision.
93 for (p
= cmdp
->argv
[0]->bp
, sw
= 0; *p
== '>' || *p
== '<'; ++p
)
94 sw
+= O_VAL(sp
, O_SHIFTWIDTH
);
96 GET_SPACE_RETW(sp
, bp
, blen
, 256);
99 for (from
= cmdp
->addr1
.lno
, to
= cmdp
->addr2
.lno
; from
<= to
; ++from
) {
100 if (db_get(sp
, from
, DBG_FATAL
, &p
, &len
))
109 * Calculate the old indent amount and the number of
110 * characters it used.
112 for (oldidx
= 0, oldcol
= 0; oldidx
< len
; ++oldidx
)
113 if (p
[oldidx
] == ' ')
115 else if (p
[oldidx
] == '\t')
116 oldcol
+= O_VAL(sp
, O_TABSTOP
) -
117 oldcol
% O_VAL(sp
, O_TABSTOP
);
121 /* Calculate the new indent amount. */
123 newcol
= oldcol
+ sw
;
125 newcol
= oldcol
< sw
? 0 : oldcol
- sw
;
126 if (newcol
== oldcol
) {
133 /* Get a buffer that will hold the new line. */
134 ADD_SPACE_RETW(sp
, bp
, blen
, newcol
+ len
);
137 * Build a new indent string and count the number of
138 * characters it uses.
142 if (!O_ISSET(sp
, O_EXPANDTAB
)) {
143 for (; newcol
>= O_VAL(sp
, O_TABSTOP
); ++newidx
) {
145 newcol
-= O_VAL(sp
, O_TABSTOP
);
148 for (; newcol
> 0; --newcol
, ++newidx
)
151 /* Add the original line. */
152 MEMCPYW(tbp
, p
+ oldidx
, len
- oldidx
);
154 /* Set the replacement line. */
155 if (db_set(sp
, from
, bp
, (tbp
+ (len
- oldidx
)) - bp
)) {
156 err
: FREE_SPACEW(sp
, bp
, blen
);
162 * The shift command in historic vi had the usual bizarre
163 * collection of cursor semantics. If called from vi, the
164 * cursor was repositioned to the first non-blank character
165 * of the lowest numbered line shifted. If called from ex,
166 * the cursor was repositioned to the first non-blank of the
167 * highest numbered line shifted. Here, if the cursor isn't
168 * part of the set of lines that are moved, move it to the
169 * first non-blank of the last line shifted. (This makes
170 * ":3>>" in vi work reasonably.) If the cursor is part of
171 * the shifted lines, it doesn't get moved at all. This
172 * permits shifting of marked areas, i.e. ">'a." shifts the
173 * marked area twice, something that couldn't be done with
176 if (sp
->lno
== from
) {
179 sp
->cno
+= newidx
- oldidx
;
180 else if (sp
->cno
>= oldidx
- newidx
)
181 sp
->cno
-= oldidx
- newidx
;
187 (void)nonblank(sp
, to
, &sp
->cno
);
190 FREE_SPACEW(sp
, bp
, blen
);
192 sp
->rptlines
[L_SHIFT
] += cmdp
->addr2
.lno
- cmdp
->addr1
.lno
+ 1;