⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 v_ch.c

📁 早期freebsd实现
💻 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 lintstatic char sccsid[] = "@(#)v_ch.c	8.8 (Berkeley) 4/9/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 <stdlib.h>#include <termios.h>#include "compat.h"#include <db.h>#include <regex.h>#include "vi.h"#include "vcmd.h"static void notfound __P((SCR *, ARG_CHAR_T));static void noprev __P((SCR *));/* * v_chrepeat -- [count]; *	Repeat the last F, f, T or t search. */intv_chrepeat(sp, ep, vp)	SCR *sp;	EXF *ep;	VICMDARG *vp;{	vp->character = VIP(sp)->lastckey;	switch (VIP(sp)->csearchdir) {	case CNOTSET:		noprev(sp);		return (1);	case FSEARCH:		return (v_chF(sp, ep, vp));	case fSEARCH:		return (v_chf(sp, ep, vp));	case TSEARCH:		return (v_chT(sp, ep, vp));	case tSEARCH:		return (v_cht(sp, ep, vp));	default:		abort();	}	/* NOTREACHED */}/* * v_chrrepeat -- [count], *	Repeat the last F, f, T or t search in the reverse direction. */intv_chrrepeat(sp, ep, vp)	SCR *sp;	EXF *ep;	VICMDARG *vp;{	enum cdirection savedir;	int rval;	vp->character = VIP(sp)->lastckey;	savedir = VIP(sp)->csearchdir;	switch (VIP(sp)->csearchdir) {	case CNOTSET:		noprev(sp);		return (1);	case FSEARCH:		rval = v_chf(sp, ep, vp);		break;	case fSEARCH:		rval = v_chF(sp, ep, vp);		break;	case TSEARCH:		rval = v_cht(sp, ep, vp);		break;	case tSEARCH:		rval = v_chT(sp, ep, vp);		break;	default:		abort();	}	VIP(sp)->csearchdir = savedir;	return (rval);}/* * v_cht -- [count]tc *	Search forward in the line for the next occurrence of the character. *	Place the cursor on it if it's a motion command, to its left if not. */intv_cht(sp, ep, vp)	SCR *sp;	EXF *ep;	VICMDARG *vp;{	if (v_chf(sp, ep, vp))		return (1);	/*	 * v_chf places the cursor on the character, and the 't' command	 * wants it to its left.  We know this is safe since we had to	 * have moved right for v_chf() to have succeeded.	 */	--vp->m_stop.cno;	VIP(sp)->csearchdir = tSEARCH;	return (0);}/* * v_chf -- [count]fc *	Search forward in the line for the next occurrence of the character. */intv_chf(sp, ep, vp)	SCR *sp;	EXF *ep;	VICMDARG *vp;{	size_t len;	recno_t lno;	u_long cnt;	int key;	char *endp, *p, *startp;	/*	 * !!!	 * If it's a dot command, it doesn't reset the key for which we're	 * searching, e.g. in "df1|f2|.|;", the ';' searches for a '2'.	 */	key = vp->character;	if (!F_ISSET(vp, VC_ISDOT))		VIP(sp)->lastckey = key;	VIP(sp)->csearchdir = fSEARCH;	if ((p = file_gline(sp, ep, vp->m_start.lno, &len)) == NULL) {		if (file_lline(sp, ep, &lno))			return (1);		if (lno == 0) {			notfound(sp, key);			return (1);		}		GETLINE_ERR(sp, vp->m_start.lno);		return (1);	}	if (len == 0) {		notfound(sp, key);		return (1);	}	endp = (startp = p) + len;	p += vp->m_start.cno;	for (cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1; cnt--;) {		while (++p < endp && *p != key);		if (p == endp) {			notfound(sp, key);			return (1);		}	}	vp->m_stop.cno = p - startp;	/*	 * Non-motion commands move to the end of the range.  VC_D and	 * VC_Y stay at the start.  Ignore VC_C and VC_S.	 */	vp->m_final = ISMOTION(vp) ? vp->m_start : vp->m_stop;	return (0);}/* * v_chT -- [count]Tc *	Search backward in the line for the next occurrence of the character. *	Place the cursor to its right. */intv_chT(sp, ep, vp)	SCR *sp;	EXF *ep;	VICMDARG *vp;{	if (v_chF(sp, ep, vp))		return (1);	/*	 * v_chF places the cursor on the character, and the 'T' command	 * wants it to its right.  We know this is safe since we had to	 * have moved left for v_chF() to have succeeded.	 */	++vp->m_stop.cno;	++vp->m_final.cno;	VIP(sp)->csearchdir = TSEARCH;	return (0);}/* * v_chF -- [count]Fc *	Search backward in the line for the next occurrence of the character. *	Place the cursor on it. */intv_chF(sp, ep, vp)	SCR *sp;	EXF *ep;	VICMDARG *vp;{	recno_t lno;	size_t len;	u_long cnt;	int key;	char *endp, *p;	/*	 * !!!	 * If it's a dot command, it doesn't reset the key for which	 * we're searching, e.g. in "df1|f2|.|;", the ';' searches	 * for a '2'.	 */	key = vp->character;	if (!F_ISSET(vp, VC_ISDOT))		VIP(sp)->lastckey = key;	VIP(sp)->csearchdir = FSEARCH;	if ((p = file_gline(sp, ep, vp->m_start.lno, &len)) == NULL) {		if (file_lline(sp, ep, &lno))			return (1);		if (lno == 0) {			notfound(sp, key);			return (1);		}		GETLINE_ERR(sp, vp->m_start.lno);		return (1);	}	if (len == 0) {		notfound(sp, key);		return (1);	}	endp = p - 1;	p += vp->m_start.cno;	for (cnt = F_ISSET(vp, VC_C1SET) ? vp->count : 1; cnt--;) {		while (--p > endp && *p != key);		if (p == endp) {			notfound(sp, key);			return (1);		}	}	vp->m_stop.cno = (p - endp) - 1;	/*	 * VC_D and non-motion commands move to the end of the range,	 * VC_Y stays at the start.  Ignore VC_C and VC_S.  Motion	 * commands adjust the starting point to the character before	 * the current one.	 */	vp->m_final = F_ISSET(vp, VC_Y) ? vp->m_start : vp->m_stop;	if (ISMOTION(vp))		--vp->m_start.cno;	return (0);}static voidnoprev(sp)	SCR *sp;{	msgq(sp, M_BERR, "No previous F, f, T or t search.");}static voidnotfound(sp, ch)	SCR *sp;	ARG_CHAR_T ch;{	msgq(sp, M_BERR, "%s not found.", KEY_NAME(sp, ch));}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -