e03164ffd4
Reviewed by: Sean Eric Fagan
137 lines
3.8 KiB
C
137 lines
3.8 KiB
C
/*-
|
|
* Copyright (c) 1992, 1993, 1994
|
|
* The Regents of the University of California. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by the University of
|
|
* California, Berkeley and its contributors.
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef lint
|
|
static char sccsid[] = "@(#)v_xchar.c 8.10 (Berkeley) 8/17/94";
|
|
#endif /* not lint */
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/queue.h>
|
|
#include <sys/time.h>
|
|
|
|
#include <bitstring.h>
|
|
#include <limits.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <termios.h>
|
|
|
|
#include "compat.h"
|
|
#include <db.h>
|
|
#include <regex.h>
|
|
|
|
#include "vi.h"
|
|
#include "vcmd.h"
|
|
|
|
/*
|
|
* v_xchar -- [count]x
|
|
* Deletes the character(s) on which the cursor sits.
|
|
*/
|
|
int
|
|
v_xchar(sp, ep, vp)
|
|
SCR *sp;
|
|
EXF *ep;
|
|
VICMDARG *vp;
|
|
{
|
|
recno_t lno;
|
|
size_t len;
|
|
|
|
if (file_gline(sp, ep, vp->m_start.lno, &len) == NULL) {
|
|
if (file_lline(sp, ep, &lno))
|
|
return (1);
|
|
if (lno == 0)
|
|
goto nodel;
|
|
GETLINE_ERR(sp, vp->m_start.lno);
|
|
return (1);
|
|
}
|
|
if (len == 0) {
|
|
nodel: msgq(sp, M_BERR, "No characters to delete");
|
|
return (1);
|
|
}
|
|
|
|
/*
|
|
* Delete from the cursor toward the end of line, w/o moving the
|
|
* cursor.
|
|
*
|
|
* !!!
|
|
* Note, "2x" at EOL isn't the same as "xx" because the left movement
|
|
* of the cursor as part of the 'x' command isn't taken into account.
|
|
* Historically correct.
|
|
*/
|
|
if (F_ISSET(vp, VC_C1SET))
|
|
vp->m_stop.cno += vp->count - 1;
|
|
if (vp->m_stop.cno >= len - 1) {
|
|
vp->m_stop.cno = len - 1;
|
|
vp->m_final.cno = vp->m_start.cno ? vp->m_start.cno - 1 : 0;
|
|
} else
|
|
vp->m_final.cno = vp->m_start.cno;
|
|
|
|
if (cut(sp, ep,
|
|
F_ISSET(vp, VC_BUFFER) ? &vp->buffer : NULL,
|
|
&vp->m_start, &vp->m_stop, 0))
|
|
return (1);
|
|
return (delete(sp, ep, &vp->m_start, &vp->m_stop, 0));
|
|
}
|
|
|
|
/*
|
|
* v_Xchar -- [count]X
|
|
* Deletes the character(s) immediately before the current cursor
|
|
* position.
|
|
*/
|
|
int
|
|
v_Xchar(sp, ep, vp)
|
|
SCR *sp;
|
|
EXF *ep;
|
|
VICMDARG *vp;
|
|
{
|
|
u_long cnt;
|
|
|
|
if (vp->m_start.cno == 0) {
|
|
v_sol(sp);
|
|
return (1);
|
|
}
|
|
|
|
cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1;
|
|
if (cnt >= vp->m_start.cno)
|
|
vp->m_start.cno = 0;
|
|
else
|
|
vp->m_start.cno -= cnt;
|
|
--vp->m_stop.cno;
|
|
vp->m_final.cno = vp->m_start.cno;
|
|
|
|
if (cut(sp, ep,
|
|
F_ISSET(vp, VC_BUFFER) ? &vp->buffer : NULL,
|
|
&vp->m_start, &vp->m_stop, 0))
|
|
return (1);
|
|
return (delete(sp, ep, &vp->m_start, &vp->m_stop, 0));
|
|
}
|