1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/* $Id: match.c,v 1.3.2.1 2003/03/08 01:22:35 amura Exp $ */
/*
* Name: MicroEMACS
* Limited parenthesis matching routines
*
* The hacks in this file implement automatic matching
* of (), [], {}, and other characters. It would be
* better to have a full-blown syntax table, but there's
* enough overhead in the editor as it is.
*
* Since I often edit Scribe code, I've made it possible to
* blink arbitrary characters -- just bind delimiter characters
* to "blink-matching-paren-hack"
*/
/*
* $Log: match.c,v $
* Revision 1.3.2.1 2003/03/08 01:22:35 amura
* NOTAB is always enabled
*
* Revision 1.3 2001/02/11 15:38:05 amura
* bugfix on VARIABLE_TAB suggested by ng1.3.1L6
*
* Revision 1.2 2000/11/16 14:31:13 amura
* fix some typos which cause compile error when using
* strict ANSI-C compiler (ex ACK, gcc-1.x)
*
* Revision 1.1.1.1 2000/06/27 01:47:56 amura
* import to CVS
*
*/
/* Nov 1991. Modified by bsh to add electric-c-brace-blink and
* goto-matching-fence.
*/
#include "config.h" /* 90.12.20 by S.Yoshida */
#include "def.h"
#include "key.h"
static VOID displaymatch();
static int getmatch(); /* Nov 91. Added by bsh */
/* Balance table. When balance() encounters a character
* that is to be matched, it first searches this table
* for a balancing left-side character. If the character
* is not in the table, the character is balanced by itself.
* This is to allow delimiters in Scribe documents to be matched.
*/
static struct balance {
char left, right;
} bal[] = {
{ '(', ')' },
{ '[', ']' },
{ '{', '}' },
{ '<', '>' },
{ '\0','\0'}
};
/*
* Self-insert character, then show matching character,
* if any. Bound to "blink-matching-paren-command".
*/
int
showmatch(f, n)
int f, n;
{
register int i, s;
LINE *clp;
int cbo;
for (i = 0; i < n; i++) {
if ((s = selfinsert(FFRAND|f, 1)) != TRUE)
return s;
if( !getmatch(curwp->w_dotp, curwp->w_doto - 1, &clp, &cbo, -1))
ttbeep();
else
displaymatch(clp,cbo);
}
return TRUE;
}
/*
* goto-matching-fence a la kemacs.
* Nov 1991. Added by bsh.
*/
int
gotomatch(f,n)
int f, n;
{
LINE *clp;
int cbo;
int dir = 0;
if( f & FFNEGARG ) dir = -1;
else if( f & FFUNIV ) dir = n;
if( !getmatch(curwp->w_dotp, curwp->w_doto, &clp, &cbo, dir)){
ttbeep();
return FALSE;
}
curwp->w_dotp = clp;
curwp->w_doto = cbo;
curwp->w_flag |= WFMOVE;
return TRUE;
}
/* bsh: Mainly for cm_brace_blink */
int
blinkmatch( clp, cbo )
LINE *clp;
int cbo;
{
LINE *mlp;
int mbo;
if( !getmatch(clp,cbo,&mlp,&mbo,-1) )
return FALSE;
displaymatch(mlp,mbo);
return TRUE;
}
static
int
getmatch( clp, cbo, mlp, mbo, dir )
register LINE *clp;
register int cbo;
LINE **mlp;
int *mbo;
int dir; /* Default direction if not decided from the char at dot*/
{
int i, rbal, lbal;
int depth, c;
rbal = lbal = cbo >=llength(clp) ? '\n' : lgetc(clp,cbo);
for (i = 0; bal[i].right != '\0'; i++)
if (bal[i].right == rbal) {
lbal = bal[i].left;
dir = -1; /* Backward */
break;
}
else if(bal[i].left == lbal){
rbal = bal[i].right;
dir = 1; /* Forward */
break;
}
if( dir == 0 ) return FALSE;
depth = 0;
if( dir < 0 ) for (;;) {
if (cbo == 0) { /* beginning of line */
clp = lback(clp);
if (clp == curbp->b_linep)
return (FALSE);
cbo = llength(clp); /* End of line */
c = '\n';
}
else {
--cbo;
c = lgetc(clp,cbo); /* somewhere in middle */
}
/* Check for a matching character. If still in a nested */
/* level, pop out of it and continue search. This check */
/* is done before the nesting check so single-character */
/* matches will work too. */
if (c == lbal) {
if (depth == 0) {
*mlp = clp;
*mbo = cbo;
return (TRUE);
}
else
depth--;
}
/* Check for another level of nesting. */
if (c == rbal)
depth++;
}
else for(++cbo;;++cbo){
if( cbo > llength(clp) ){
if ((clp= lforw(clp)) == curbp->b_linep) return FALSE;
cbo = 0;
}
if( cbo == llength(clp) ) c = '\n';
else c = lgetc(clp,cbo);
if( c == rbal ){
if( depth == 0 ){
*mlp = clp;
*mbo = cbo;
return TRUE;
}
--depth;
}
if( c == lbal ) ++depth;
}
return FALSE;
}
/*
* Display matching character.
* Matching characters that are not in the current window
* are displayed in the echo line. If in the current
* window, move dot to the matching character,
* sit there a while, then move back.
*/
static VOID displaymatch(clp, cbo)
register LINE *clp;
register int cbo;
{
register LINE *tlp;
register int tbo;
register int cp;
register int bufo;
register int c;
int inwindow;
char buf[NLINE];
/* Figure out if matching char is in current window by */
/* searching from the top of the window to dot. */
inwindow = FALSE;
for (tlp = curwp->w_linep; tlp != lforw(curwp->w_dotp); tlp = lforw(tlp))
if (tlp == clp)
inwindow = TRUE;
if (inwindow == TRUE) {
tlp = curwp->w_dotp; /* save current position */
tbo = curwp->w_doto;
curwp->w_dotp = clp; /* move to new position */
curwp->w_doto = cbo;
curwp->w_flag |= WFMOVE;
update(); /* show match */
#ifdef ADDFUNC /* 91.01.23 by Sawayanagi Yosirou */
ttwait(); /* wait 1 sec. or key press. */
#else /* NOT ADDFUNC */
sleep(1); /* wait a bit */
#endif /* ADDFUNC */
curwp->w_dotp = tlp; /* return to old position */
curwp->w_doto = tbo;
curwp->w_flag |= WFMOVE;
update();
}
else { /* match not in this window so display line in echo area */
bufo = 0;
for (cp = 0; cp < llength(clp); cp++) { /* expand tabs */
c = lgetc(clp,cp);
if (c != '\t' || (curbp->b_flag & BFNOTAB))
if(ISCTRL(c)) {
buf[bufo++] = '^';
buf[bufo++] = CCHR(c);
} else buf[bufo++] = c;
else
do {
buf[bufo++] = ' ';
#ifdef VARIABLE_TABWIDTH
} while (bufo % curbp->b_tabwidth);
#else
} while (bufo & 7);
#endif
}
buf[bufo++] = '\0';
ewprintf("Matches %s",buf);
}
}
|