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 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815
|
/*
* The routines in this file move the cursor around on the screen. They
* compute a new value for the cursor, then adjust ".". The display code
* always updates the cursor location, so only moves between lines, or
* functions that adjust the top line in the window and invalidate the
* framing, are hard.
*
* $Header: /usr/build/vile/vile/RCS/basic.c,v 1.161 2008/04/06 20:01:15 tom Exp $
*
*/
#include "estruct.h"
#include "edef.h"
#define RegexpLen(exp) ((exp->mlen) ? (int)(exp->mlen) : 1)
/*
* Replace "DOT.o++".
*/
#if OPT_MULTIBYTE
static int
bytes_at0(LINE *lp, int off)
{
return ((llength(lp) > off)
? vl_conv_to_utf32((UINT *) 0,
lvalue(lp) + off,
llength(lp) - off)
: 0);
}
int
bytes_at(LINE *lp, int off)
{
int rc = bytes_at0(lp, off);
return rc ? rc : 1;
}
/*
* Replace "DOT.o--", find the number of bytes of a multibyte character before
* the given offset.
*/
int
bytes_before(LINE *lp, int off)
{
int rc = 0;
int first = off;
int legal = FALSE;
while (off-- > 0) {
++rc;
if (bytes_at0(lp, off) == rc) {
legal = TRUE;
break;
}
}
if (!legal && first)
rc = 1;
return rc;
}
/*
* Count the number of characters from the given offset to the end of the line.
*/
int
chars_to_eol(LINE *lp, int off)
{
int rc = bytes_to_eol(lp, off);
if (b_is_utfXX(curbp)) {
rc = 0;
while (off < llength(lp)) {
off += bytes_at(lp, off);
++rc;
}
}
return rc;
}
/*
* Count the number of characters from the given offset to the beginning of the
* line.
*/
int
chars_to_bol(LINE *lp, int off)
{
int rc = bytes_to_bol(lp, off);
if (b_is_utfXX(curbp)) {
int xx = 0;
rc = 0;
while (xx < off) {
xx += bytes_at(lp, xx);
++rc;
}
}
return rc;
}
/*
* Count the number of bytes in the given number of characters in the line
* starting from the given offset.
*/
int
count_bytes(LINE *lp, int off, int chars)
{
int rc = chars;
if (b_is_utfXX(curbp)) {
int xx = 0;
while (off < llength(lp) && chars-- > 0) {
int value = bytes_at(lp, off);
off += value;
xx += value;
}
rc = xx;
}
return rc;
}
/*
* Count the number of characters in the given number of bytes in the line
* starting from the given offset.
*/
int
count_chars(LINE *lp, int off, int bytes)
{
int rc = bytes;
if (b_is_utfXX(curbp)) {
int xx = 0;
while (off < llength(lp) && bytes > 0) {
int value = bytes_at(lp, off);
off += value;
bytes -= value;
++xx;
}
rc = xx;
}
return rc;
}
int
mb_cellwidth(WINDOW *wp, const char *text, int limit)
{
UINT value;
int rc = COLS_UTF8; /* "\uXXXX" */
vl_conv_to_utf32(&value, text, limit);
if (isPrint(value) && FoldTo8bits(value)) {
rc = 1;
if (w_val(wp, WMDUNICODE_AS_HEX)) {
rc = COLS_UTF8;
} else if (!isPrint(value)) {
rc = COLS_8BIT;
}
} else if (term_is_utfXX()) {
rc = vl_wcwidth(value);
if (rc <= 0)
rc = COLS_UTF8;
}
return rc;
}
#endif /* OPT_MULTIBYTE */
/* utility routine for 'forwpage()' and 'backpage()' */
static int
full_pages(int f, int n)
{
if (f == FALSE) {
n = curwp->w_ntrows - 2; /* Default scroll. */
if (n <= 0) /* Don't blow up if the */
n = 1; /* window is tiny. */
}
#if OPT_CVMVAS
else if (n > 0) /* Convert from pages */
n *= curwp->w_ntrows; /* to lines. */
#endif
return n;
}
/* utility routine for 'forwhpage()' and 'backhpage()' */
static int
half_pages(int f, int n)
{
if (f == FALSE) {
n = curwp->w_ntrows / 2; /* Default scroll. */
if (n <= 0) /* Forget the overlap */
n = 1; /* if tiny window. */
}
#if OPT_CVMVAS
else if (n > 0) /* Convert from pages */
n *= curwp->w_ntrows / 2; /* to lines. */
#endif
return n;
}
static void
skipblanksf(void)
{
while (lforw(DOT.l) != buf_head(curbp) && is_empty_line(DOT))
DOT.l = lforw(DOT.l);
}
static void
skipblanksb(void)
{
while (lback(DOT.l) != buf_head(curbp) && is_empty_line(DOT))
DOT.l = lback(DOT.l);
}
/*
* Implements the vi "0" command.
*
* Move the cursor to the beginning of the current line.
*/
/* ARGSUSED */
int
gotobol(int f GCC_UNUSED, int n GCC_UNUSED)
{
DOT.o = w_left_margin(curwp);
return mvleftwind(TRUE, w_val(curwp, WVAL_SIDEWAYS));
}
/*
* Move the cursor backwards by "n" characters. If "n" is less than zero call
* "forwchar" to actually do the move. Otherwise compute the new cursor
* location. Error if you try and move out of the buffer. Set the flag if the
* line pointer for dot changes.
*/
int
backchar(int f, int n)
{
LINE *lp;
n = need_a_count(f, n, 1);
if (n < 0)
return (forwchar(f, -n));
while (n--) {
if (DOT.o == w_left_margin(curwp)) {
if ((lp = lback(DOT.l)) == buf_head(curbp))
return (FALSE);
DOT.l = lp;
DOT.o = llength(lp);
curwp->w_flag |= WFMOVE;
} else {
DOT.o -= BytesBefore(DOT.l, DOT.o);
}
}
return (TRUE);
}
/*
* Implements the vi "h" command.
*
* Move the cursor backwards by "n" characters. Stop at beginning of line.
*/
int
backchar_to_bol(int f, int n)
{
int rc = TRUE;
n = need_a_count(f, n, 1);
if (n < 0) {
rc = forwchar_to_eol(f, -n);
} else {
while (n--) {
if (DOT.o == w_left_margin(curwp)) {
rc = doingopcmd;
break;
} else {
DOT.o -= BytesBefore(DOT.l, DOT.o);
}
}
}
return rc;
}
/*
* Implements the vi "$" command.
*
* Move the cursor to the end of the current line. Trivial.
*/
int
gotoeol(int f, int n)
{
if (f == TRUE) {
if (n > 0)
--n;
else if (n < 0)
++n;
if (forwline(f, n) != TRUE)
return FALSE;
}
DOT.o = llength(DOT.l);
curgoal = VL_HUGE;
return (TRUE);
}
/*
* Move the cursor forwards by "n" characters. If "n" is less than zero call
* "backchar" to actually do the move. Otherwise compute the new cursor
* location, and move ".". Error if you try and move off the end of the
* buffer. Set the flag if the line pointer for dot changes.
*/
int
forwchar(int f, int n)
{
int rc = TRUE;
n = need_a_count(f, n, 1);
if (n < 0) {
rc = backchar(f, -n);
} else {
while (n--) {
/* if an explicit arg was given, allow us to land
on the newline, else skip it */
if (is_at_end_of_line(DOT) ||
(f == FALSE && !insertmode &&
llength(DOT.l) && DOT.o == llength(DOT.l) - 1)) {
if (is_header_line(DOT, curbp) ||
is_last_line(DOT, curbp)) {
rc = FALSE;
break;
}
DOT.l = lforw(DOT.l);
DOT.o = w_left_margin(curwp);
curwp->w_flag |= WFMOVE;
} else {
DOT.o += BytesAt(DOT.l, DOT.o);
}
}
}
return (rc);
}
/*
* Implements the vi "l" command.
*
* Move the cursor forwards by "n" characters. Don't go past end-of-line
*
* If the flag 'doingopcmd' is set, implements a vi "l"-like motion for
* internal use. The end-of-line test is off-by-one from the true "l" command
* to allow for substitutions at the end of a line.
*/
int
forwchar_to_eol(int f, int n)
{
int rc = TRUE;
int nwas = n;
int lim;
n = need_a_count(f, n, 1);
if (n < 0) {
rc = backchar_to_bol(f, -n);
} else if (n != 0) {
/* normally, we're confined to the text on the line itself. if
we're doing an opcmd, then we're allowed to move to the newline
as well, to take care of the internal cases: 's', 'x', and '~'. */
if (doingopcmd || insertmode)
lim = llength(DOT.l);
else
lim = llength(DOT.l) - 1;
do {
if (DOT.o >= lim) {
rc = (n != nwas); /* return ok if we moved at all */
break;
} else {
DOT.o += BytesAt(DOT.l, DOT.o);
}
} while (--n != 0);
}
return rc;
}
/*
* Move to a particular line (the argument). Count from bottom of file if
* argument is negative.
*/
int
vl_gotoline(int n)
{
int status = TRUE; /* status return */
MARK odot;
if (n == 0) /* if a bogus argument...then leave */
return (FALSE);
odot = DOT;
DOT.o = w_left_margin(curwp);
if (n < 0) {
DOT.l = lback(buf_head(curbp));
status = backline(TRUE, -n - 1);
} else {
DOT.l = lforw(buf_head(curbp));
status = forwline(TRUE, n - 1);
}
if (status != TRUE) {
DOT = odot;
return status;
}
(void) firstnonwhite(FALSE, 1);
curwp->w_flag |= WFMOVE;
return TRUE;
}
/*
* Implements the vi "G" command.
*
* Move to a particular line (the argument). Count from bottom of file if
* argument is negative.
*/
int
gotoline(int f, int n)
{
int status; /* status return */
if (f == FALSE) {
status = gotoeob(f, n);
} else {
status = vl_gotoline(n);
if (status != TRUE)
mlwarn("[Not that many lines in buffer: %d]", absol(n));
}
return status;
}
/*
* Goto the beginning of the buffer. Massive adjustment of dot. This is
* considered to be hard motion; it really isn't if the original value of dot
* is the same as the new value of dot.
*/
/* ARGSUSED */
int
gotobob(int f GCC_UNUSED, int n GCC_UNUSED)
{
DOT.l = lforw(buf_head(curbp));
DOT.o = w_left_margin(curwp);
curwp->w_flag |= WFMOVE;
return (TRUE);
}
/*
* Move to the end of the buffer. Dot is always put at the end of the file.
*/
/* ARGSUSED */
int
gotoeob(int f GCC_UNUSED, int n GCC_UNUSED)
{
DOT.l = lback(buf_head(curbp));
curwp->w_flag |= WFMOVE;
return firstnonwhite(FALSE, 1);
}
/*
* Implements the vi "H" command.
*
* Move to first (or nth) line in window
*/
int
gotobos(int f, int n)
{
LINE *last = DOT.l;
int nn = curwp->w_ntrows;
n = need_at_least(f, n, 1);
DOT.l = curwp->w_line.l;
while (--n != 0) {
if (is_last_line(DOT, curbp))
break;
nn -= line_height(curwp, DOT.l);
DOT.l = lforw(DOT.l);
}
if (DOT.l != last)
curwp->w_flag |= WFMOVE;
return firstnonwhite(FALSE, 1);
}
/*
* Implements the vi "M" command.
*
* Move to the middle of lines displayed in window
*/
/* ARGSUSED */
int
gotomos(int f GCC_UNUSED, int n)
{
LINE *last = DOT.l;
LINE *lp, *head;
int half = (curwp->w_ntrows + 1) / 2;
head = buf_head(curbp);
for (n = 0, lp = curwp->w_line.l; lp != head; lp = lforw(lp)) {
if (n < half)
DOT.l = lp;
if ((n += line_height(curwp, lp)) >= curwp->w_ntrows)
break;
}
if (n < curwp->w_ntrows) { /* then we hit eof before eos */
half = (n + 1) / 2; /* go back up */
for (n = 0, lp = curwp->w_line.l; lp != head; lp = lforw(lp)) {
DOT.l = lp;
if ((n += line_height(curwp, lp)) >= half)
break;
}
}
if (DOT.l != last)
curwp->w_flag |= WFMOVE;
return firstnonwhite(FALSE, 1);
}
/*
* Implements the vi "L" command.
*
* Move to the last (or nth last) line in window
*/
int
gotoeos(int f, int n)
{
LINE *last = DOT.l;
int nn;
n = need_at_least(f, n, 1);
/* first get to the end */
DOT.l = curwp->w_line.l;
nn = curwp->w_ntrows;
while ((nn -= line_height(curwp, DOT.l)) > 0) {
if (is_last_line(DOT, curbp))
break;
DOT.l = lforw(DOT.l);
}
#ifdef WMDLINEWRAP
/* adjust if we pointed to a line-fragment */
if (w_val(curwp, WMDLINEWRAP)
&& nn < 0
&& DOT.l != curwp->w_line.l)
DOT.l = lback(DOT.l);
#endif
/* and then go back up */
/* (we're either at eos or eof) */
while (--n != 0) {
if (sameline(DOT, curwp->w_line))
break;
DOT.l = lback(DOT.l);
}
if (DOT.l != last)
curwp->w_flag |= WFMOVE;
return firstnonwhite(FALSE, 1);
}
/*
* Implements the vi "j" command.
*
* Move forward by full lines. If the number of lines to move is less than
* zero, call the backward line function to actually do it. The last command
* controls how the goal column is set.
*/
int
forwline(int f, int n)
{
int rc;
LINE *dlp;
n = need_a_count(f, n, 1);
if (n < 0) {
rc = backline(f, -n);
} else if (n == 0) {
rc = TRUE;
} else {
/* set the "goal" column if necessary */
if (curgoal < 0)
curgoal = getccol(FALSE);
/* loop downwards */
dlp = DOT.l;
rc = TRUE;
do {
LINE *nlp = lforw(dlp);
if (nlp == buf_head(curbp)) {
rc = FALSE;
break;
}
dlp = nlp;
} while (--n != 0);
if (rc) {
/* set dot */
DOT.l = dlp;
DOT.o = getgoal(dlp);
curwp->w_flag |= WFMOVE;
}
}
return rc;
}
/*
* Implements the vi "^" command.
*
* Move to the first nonwhite character on the current line. No errors are
* returned.
*/
/* ARGSUSED */
int
firstnonwhite(int f GCC_UNUSED, int n GCC_UNUSED)
{
DOT.o = firstchar(DOT.l);
if (DOT.o < w_left_margin(curwp)) {
if (llength(DOT.l) <= w_left_margin(curwp))
DOT.o = w_left_margin(curwp);
else
DOT.o = llength(DOT.l) - 1;
}
return TRUE;
}
/* ARGSUSED */
#if !SMALLER
int
lastnonwhite(int f GCC_UNUSED, int n GCC_UNUSED)
{
DOT.o = lastchar(DOT.l);
if (DOT.o < w_left_margin(curwp))
DOT.o = w_left_margin(curwp);
return TRUE;
}
#endif
/* return the offset of the first non-white character on the line,
or -1 if there are no non-white characters on the line */
int
firstchar(LINE *lp)
{
int off = w_left_margin(curwp);
while (off < llength(lp) && isBlank(lgetc(lp, off)))
off++;
if (off == llength(lp))
return -1;
return off;
}
/* return the offset of the next non-white character on the line,
or -1 if there are no more non-white characters on the line */
int
nextchar(LINE *lp, int off)
{
while (off < llength(lp)) {
if (!isSpace(lgetc(lp, off)))
return off;
off++;
}
return -1;
}
/* return the offset of the last non-white character on the line
or -1 if there are no non-white characters on the line */
int
lastchar(LINE *lp)
{
int off = llength(lp) - 1;
while (off >= 0 && isSpace(lgetc(lp, off)))
off--;
return off;
}
/*
* Implements the vi "^M" command.
*
* Like 'forwline()', but goes to the first non-white character position.
*/
int
forwbline(int f, int n)
{
int s;
n = need_a_count(f, n, 1);
if ((s = forwline(f, n)) != TRUE)
return (s);
return firstnonwhite(FALSE, 1);
}
/*
* Implements the vi "-" command.
*
* Like 'backline()', but goes to the first non-white character position.
*/
int
backbline(int f, int n)
{
int s;
n = need_a_count(f, n, 1);
if ((s = backline(f, n)) != TRUE)
return (s);
return firstnonwhite(FALSE, 1);
}
/*
* Implements the vi "k" command.
*
* This function is like "forwline", but goes backwards.
*/
int
backline(int f, int n)
{
int rc;
LINE *dlp;
n = need_a_count(f, n, 1);
if (n < 0) {
rc = forwline(f, -n);
} else if (is_first_line(DOT, curbp)) {
/* cannot move up */
rc = FALSE;
} else {
/* set the "goal" column if necessary */
if (curgoal < 0)
curgoal = getccol(FALSE);
/* loop upwards */
dlp = DOT.l;
while (n-- && lback(dlp) != buf_head(curbp))
dlp = lback(dlp);
/* set dot */
DOT.l = dlp;
DOT.o = getgoal(dlp);
curwp->w_flag |= WFMOVE;
rc = TRUE;
}
return rc;
}
/*
* Go to the beginning of the current paragraph.
*/
int
gotobop(int f, int n)
{
MARK odot;
int was_on_empty;
int fc;
n = need_a_count(f, n, 1);
was_on_empty = is_empty_line(DOT);
odot = DOT;
fc = firstchar(DOT.l);
if (doingopcmd &&
((fc >= 0 && DOT.o <= fc) || fc < 0) &&
!is_first_line(DOT, curbp)) {
backchar(TRUE, DOT.o + 1);
pre_op_dot = DOT;
}
while (n) {
if (findpat(TRUE, 1, b_val_rexp(curbp, VAL_PARAGRAPHS)->reg,
REVERSE) != TRUE) {
(void) gotobob(f, n);
} else if (is_empty_line(DOT)) {
/* special case -- if we found an empty line,
and it's adjacent to where we started,
skip all adjacent empty lines, and try again */
if ((was_on_empty && lforw(DOT.l) == odot.l) ||
(n > 0 && llength(lforw(DOT.l)) == 0)) {
/* then we haven't really found what we
wanted. keep going */
skipblanksb();
continue;
}
}
n--;
}
if (doingopcmd) {
fc = firstchar(DOT.l);
if (!sameline(DOT, odot) &&
(pre_op_dot.o > lastchar(pre_op_dot.l)) &&
((fc >= 0 && DOT.o <= fc) || fc < 0)) {
regionshape = rgn_FULLLINE;
}
}
return TRUE;
}
/*
* Go to the end of the current paragraph.
*/
int
gotoeop(int f, int n)
{
MARK odot;
int was_at_bol;
int was_on_empty;
int fc;
n = need_a_count(f, n, 1);
fc = firstchar(DOT.l);
was_on_empty = is_empty_line(DOT);
was_at_bol = ((fc >= 0 && DOT.o <= fc) || fc < 0);
odot = DOT;
while (n) {
if (findpat(TRUE, 1, b_val_rexp(curbp, VAL_PARAGRAPHS)->reg,
FORWARD) != TRUE) {
DOT = curbp->b_line;
} else if (is_empty_line(DOT)) {
/* special case -- if we found an empty line. */
/* either as the very next line, or at the end of
our search */
if ((was_on_empty && lback(DOT.l) == odot.l) ||
(n > 0 && llength(lback(DOT.l)) == 0)) {
/* then we haven't really found what we
wanted. keep going */
skipblanksf();
continue;
}
}
n--;
}
if (doingopcmd) {
/* if we're now at the beginning of a line and we can back up,
do so to avoid eating the newline and leading whitespace */
fc = firstchar(DOT.l);
if (((fc >= 0 && DOT.o <= fc) || fc < 0) &&
!is_first_line(DOT, curbp) &&
!sameline(DOT, odot)) {
backchar(TRUE, DOT.o + 1);
}
/* if we started at the start of line, eat the whole line */
if (!sameline(DOT, odot) && was_at_bol)
regionshape = rgn_FULLLINE;
}
return TRUE;
}
#if OPT_STUTTER_SEC_CMD
getstutter(void)
{
int thiskey;
if (!clexec) {
thiskey = lastkey;
kbd_seq();
if (thiskey != lastkey) {
return FALSE;
}
}
return TRUE;
}
#endif
/*
* Go to the beginning of the current section (or paragraph if no section
* marker found).
*/
int
gotobosec(int f, int n)
{
#if OPT_STUTTER_SEC_CMD
if (!getstutter())
return FALSE;
#endif
if (findpat(f, n, b_val_rexp(curbp, VAL_SECTIONS)->reg,
REVERSE) != TRUE) {
(void) gotobob(f, n);
}
return TRUE;
}
/*
* Go to the end of the current section (or paragraph if no section marker
* found).
*/
int
gotoeosec(int f, int n)
{
#if OPT_STUTTER_SEC_CMD
if (!getstutter())
return FALSE;
#endif
if (findpat(f, n, b_val_rexp(curbp, VAL_SECTIONS)->reg,
FORWARD) != TRUE) {
DOT = curbp->b_line;
}
return TRUE;
}
/*
* Go to the beginning of the current sentence. If we skip into an empty line
* (from a non-empty line), return at that point -- that's what vi does.
*/
int
gotobosent(int f, int n)
{
MARK savepos;
int looped = 0;
int extra;
int empty = is_empty_line(DOT);
regexp *exp;
int s = TRUE;
savepos = DOT;
exp = b_val_rexp(curbp, VAL_SENTENCES)->reg;
while (s && (is_at_end_of_line(DOT) || isSpace(char_at(DOT)))) {
s = backchar(TRUE, 1);
if (is_empty_line(DOT) && !empty)
return TRUE;
}
top:
extra = 0;
if (findpat(f, n, exp, REVERSE) != TRUE) {
return gotobob(f, n);
}
s = forwchar(TRUE, RegexpLen(exp));
while (s && (is_at_end_of_line(DOT) || isSpace(char_at(DOT)))) {
s = forwchar(TRUE, 1);
extra++;
}
if (n == 1 && samepoint(savepos, DOT)) { /* try again */
if (looped > 10)
return FALSE;
s = backchar(TRUE, RegexpLen(exp) + extra + looped);
while (s && is_at_end_of_line(DOT)) {
if (!empty && is_empty_line(DOT))
return TRUE;
s = backchar(TRUE, 1);
}
looped++;
goto top;
}
return TRUE;
}
/*
* Go to the end of the current sentence. Like gotobosent(), if we skip into
* an empty line, return at that point.
*/
int
gotoeosent(int f, int n)
{
regexp *exp;
int s;
int empty = is_empty_line(DOT);
exp = b_val_rexp(curbp, VAL_SENTENCES)->reg;
/* if we're on the end of a sentence now, don't bother scanning
further, or we'll miss the immediately following sentence */
if (!(lregexec(exp, DOT.l, DOT.o, llength(DOT.l)) &&
exp->startp[0] - lvalue(DOT.l) == DOT.o)) {
if (findpat(f, n, exp, FORWARD) != TRUE) {
DOT = curbp->b_line;
} else if (empty || !is_at_end_of_line(DOT)) {
s = forwchar(TRUE, RegexpLen(exp));
while (s && (is_at_end_of_line(DOT) || isSpace(char_at(DOT)))) {
LINE *lp = DOT.l;
s = forwchar(TRUE, 1);
if (lp != DOT.l)
break;
}
}
} else {
s = forwchar(TRUE, RegexpLen(exp));
while (s && (is_at_end_of_line(DOT) || isSpace(char_at(DOT))))
s = forwchar(TRUE, 1);
}
return TRUE;
}
/*
* This routine, given a pointer to a LINE, and the current cursor goal
* column, return the best choice for the offset. The offset is returned.
* Used by "C-N" and "C-P".
*/
int
getgoal(LINE *dlp)
{
int col;
int newcol;
int dbo;
col = 0;
dbo = w_left_margin(curwp);
while (dbo < llength(dlp)) {
newcol = next_column(dlp, dbo, col);
if (newcol > curgoal)
break;
col = newcol;
dbo += BytesAt(dlp, dbo);
}
return (dbo);
}
int
next_sw(int col)
{
int width = shiftwid_val(curbp);
return (((col / width) + 1) * width);
}
int
next_tabcol(int col)
{
int t = tabstop_val(curbp);
return (((col / t) + 1) * t);
}
#define NonPrintingCols(c) (((c) & HIGHBIT) ? COLS_8BIT : COLS_CTRL)
/*
* Return the next column index, given the current char and column.
*/
int
next_column(LINE *lp, int off, int col)
{
int rc = 1;
int c;
if (off < llength(lp)) {
c = lgetc(lp, off);
if (c == '\t') {
rc = next_tabcol(col) - col;
}
#if OPT_MULTIBYTE
else if (b_is_utfXX(curbp)) {
if (bytes_at(lp, off) > 1) {
rc = mb_cellwidth(curwp, lvalue(lp) + off, llength(lp) - off);
}
}
#endif
else if (!isPrint(c)) {
rc = NonPrintingCols(c);
}
} else {
rc = 0;
}
return col + rc;
}
/*
* Given a char to add, and the current column, return the next column index,
*/
int
column_after(int c, int col, int list)
{
int rc = (col + 1);
if (!list && (c == '\t')) {
rc = next_tabcol(col);
}
#if OPT_MULTIBYTE
else if (b_is_utfXX(curbp)) {
if (vl_conv_to_utf8((UCHAR *) 0, c, 10) > 1)
rc = col + COLS_UTF8; /* "\uXXXX" */
}
#endif
else if (!isPrint(c)) {
rc = col + NonPrintingCols(c);
}
return rc;
}
/*
* Given a pointer to a LINE's text where we have a "nonprinting" character,
* and the limit on remaining chars to display, return the number of columns
* which are needed to display it, e.g., in hex or octal. As a side-effect,
* set the *used parameter to the number of chars needed for a multibyte
* character if we have one.
*/
int
column_sizes(WINDOW *wp, const char *text, unsigned limit, int *used)
{
int rc = NonPrintingCols(*text);
*used = 1;
#if OPT_MULTIBYTE
if (b_is_utfXX(wp->w_bufp)) {
*used = vl_conv_to_utf32((UINT *) 0, text, limit);
if (*used > 1) {
rc = COLS_UTF8; /* "\uXXXX" */
} else if (*used < 1) {
*used = 1; /* probably a broken character... */
} else if (isPrint(*text)) {
rc = 1;
}
} else
#else
(void) wp;
(void) limit;
#endif
if (isPrint(*text)) {
rc = 1;
}
return rc;
}
/*
* Implements the vi "^F" command.
*
* Scroll forward by a specified number of lines, or by a full page if no
* argument.
*/
int
forwpage(int f, int n)
{
LINE *lp;
int status;
if ((n = full_pages(f, n)) < 0)
return backpage(f, -n);
if ((status = (lforw(DOT.l) != buf_head(curbp))) == TRUE) {
lp = curwp->w_line.l;
n -= line_height(curwp, lp);
while (lp != buf_head(curbp)) {
lp = lforw(lp);
if ((n -= line_height(curwp, lp)) < 0)
break;
}
if (n < 0)
curwp->w_line.l = lp;
DOT.l = lp;
(void) firstnonwhite(FALSE, 1);
curwp->w_flag |= WFHARD | WFMODE;
}
return status;
}
/*
* Implements the vi "^B" command.
*
* This command is like "forwpage", but it goes backwards.
*/
int
backpage(int f, int n)
{
LINE *lp;
int status;
if ((n = full_pages(f, n)) < 0)
return forwpage(f, -n);
lp = curwp->w_line.l;
if (lback(lp) != buf_head(curbp)) {
while ((n -= line_height(curwp, lp)) >= 0
&& lback(lp) != buf_head(curbp))
lp = lback(lp);
curwp->w_line.l = lp;
(void) gotoeos(FALSE, 1);
curwp->w_flag |= WFHARD | WFMODE;
status = TRUE;
} else if (DOT.l != lp) {
DOT.l = lp;
curwp->w_flag |= WFHARD | WFMODE;
status = TRUE;
} else {
status = FALSE;
}
return status;
}
/*
* Implements the vi "^D" command.
*
* Scroll forward by a half-page. If a repeat count is given, interpret that
* as the number of half-pages to scroll.
*
* Unlike vi, the OPT_CVMVAS option causes the repeat-count to be interpreted as
* half-page, rather than lines.
*/
int
forwhpage(int f, int n)
{
LINE *llp, *dlp;
int status;
if ((n = half_pages(f, n)) < 0)
return backhpage(f, -n);
llp = curwp->w_line.l;
dlp = DOT.l;
if ((status = (lforw(dlp) != buf_head(curbp))) == TRUE) {
n -= line_height(curwp, dlp);
while (lforw(dlp) != buf_head(curbp)) {
llp = lforw(llp);
dlp = lforw(dlp);
if ((n -= line_height(curwp, dlp)) < 0)
break;
}
curwp->w_line.l = llp;
DOT.l = dlp;
curwp->w_flag |= WFHARD | WFKILLS;
}
(void) firstnonwhite(FALSE, 1);
return status;
}
/*
* Implements the vi "^U" command.
*
* This command is like "forwpage", but it goes backwards. It returns false
* only if the cursor is on the first line of the buffer.
*
* Unlike vi, the OPT_CVMVAS option causes the repeat-count to be interpreted as
* half-pages, rather than lines.
*/
int
backhpage(int f, int n)
{
LINE *llp, *dlp;
int status;
if ((n = half_pages(f, n)) < 0)
return forwhpage(f, -n);
llp = curwp->w_line.l;
dlp = DOT.l;
if ((status = (lback(dlp) != buf_head(curbp))) == TRUE) {
n -= line_height(curwp, dlp);
while (lback(dlp) != buf_head(curbp)) {
llp = lback(llp);
dlp = lback(dlp);
if ((n -= line_height(curwp, dlp)) < 0)
break;
}
curwp->w_line.l = llp;
DOT.l = dlp;
curwp->w_flag |= WFHARD | WFINS;
}
(void) firstnonwhite(FALSE, 1);
return status;
}
/*
* Move forward n rows on the screen, staying in the same column. It's ok to
* scroll, too.
*/
int
forw_row(int f, int n)
{
int code = TRUE;
int col, next;
n = need_a_count(f, n, 1);
if (n < 0) {
code = back_row(f, -n);
} else if (n > 0) {
/* set the "goal" column if necessary */
if (curgoal < 0)
curgoal = getccol(FALSE);
col = curgoal;
next = col;
while ((n-- > 0) && (code == TRUE)) {
int save = next;
next += term.cols;
if (gotocol(TRUE, next + 1) == FALSE) {
curgoal %= term.cols;
gotocol(TRUE, save);
code = forwline(TRUE, 1);
} else {
curgoal = next;
}
}
}
return code;
}
/*
* Move back n rows on the screen, staying in the same column. It's ok to
* scroll, too.
*/
int
back_row(int f, int n)
{
int code = TRUE;
int col, next;
n = need_a_count(f, n, 1);
if (n < 0) {
code = forw_row(f, -n);
} else if (n > 0) {
/* set the "goal" column if necessary */
if (curgoal < 0)
curgoal = getccol(FALSE);
col = curgoal;
next = col;
while ((n-- > 0) && (code == TRUE)) {
next -= term.cols;
if (next < 0) {
if ((code = backline(TRUE, 1)) == TRUE
&& llength(DOT.l) >= curgoal) {
next = llength(DOT.l) / term.cols;
next = (next * term.cols) + curgoal;
curgoal = next;
}
} else {
if ((code = gotocol(TRUE, next + 1)) == TRUE)
curgoal = next;
}
}
}
return code;
}
#if NMARKS > 26
static int
nmark2inx(int c)
{
if (isDigit(c)) {
return c - '0' + 26;
} else if (isLower(c)) {
return c - 'a';
}
return -1;
}
static int
inx2nmark(int c)
{
if (c > 36 || c < 0) {
return '?';
} else if (c >= 26) {
return c - 26 + '0';
} else {
return c + 'a';
}
}
#else
#define nmark2inx(c) ((c) - 'a')
#define inx2nmark(c) ((c) + 'a')
#endif
#if OPT_SHOW_MARKS
static int
show_mark(int count, BUFFER *bp, MARK mark, int name)
{
static int tab = 8; /* no b_val(bp,VAL_TAB) -- set_rdonly uses 8 */
static int stop;
if (!samepoint(mark, nullmark)) {
if (!count) {
bprintf("\nMark Line Column");
if (stop == 0) {
stop = ((DOT.o + tab - 1) / tab) * tab;
}
bpadc(' ', stop - DOT.o);
bprintf("Text");
bprintf("\n---- -------- ------");
bpadc(' ', stop - DOT.o);
bprintf("----");
}
bprintf("\n%c %8d %8d",
name,
line_no(bp, mark.l),
mk_to_vcol(curwp, mark, FALSE, 0, 0) + 1);
if (llength(mark.l) > 0) {
bpadc(' ', stop - DOT.o);
bputsn(lvalue(mark.l), llength(mark.l));
}
return 1;
}
return 0;
}
static void
makemarkslist(int value GCC_UNUSED, void *dummy GCC_UNUSED)
{
BUFFER *bp = (BUFFER *) dummy;
WINDOW *wp;
int n;
int done = 0;
bprintf("Named marks for %s\n", bp->b_bname);
set_b_val(curbp, VAL_TAB, b_val(bp, VAL_TAB));
for_each_window(wp) {
if (wp->w_bufp == bp) {
done += show_mark(done, bp, wp->w_lastdot, SQUOTE);
}
}
if (bp->b_nmmarks != 0) {
for (n = 0; n < NMARKS; n++) {
done += show_mark(done, bp, bp->b_nmmarks[n], inx2nmark(n));
}
}
#if OPT_SELECTIONS
if (bp == sel_buffer()) {
MARK left, right;
if (sel_get_leftmark(&left)
&& sel_get_rightmark(&right)
&& (left.l != right.l
|| left.o != right.o)) {
done += show_mark(done, bp, left, '<');
done += show_mark(done, bp, right, '>');
}
}
#endif
if (done)
bprintf("\n\n%d mark%s", done, PLURAL(done));
else
bprintf("\n(none)");
}
int
showmarks(int f, int n GCC_UNUSED)
{
return liststuff(MARKS_BufName, FALSE, makemarkslist, f, (void *) curbp);
}
#if OPT_UPBUFF
/* ARGSUSED */
static int
update_marklist(BUFFER *bp GCC_UNUSED)
{
return showmarks(FALSE, 1);
}
#endif
#endif /* OPT_SHOW_MARKS */
static int
invalid_nmmark(void)
{
mlforce("[Invalid mark name]");
return FALSE;
}
int
can_set_nmmark(int c)
{
if (isLower(c) || c == SQUOTE)
return TRUE;
#if !SMALLER
if (isDigit(c))
return TRUE;
#endif
#if OPT_SELECTIONS
if (c == '<' || c == '>')
return TRUE;
#endif
return FALSE;
}
static int
get_nmmark(int c, MARK *markp)
{
int result = TRUE;
*markp = nullmark;
if (c == SQUOTE) { /* use the 'last dot' mark */
*markp = curwp->w_lastdot;
} else {
#if OPT_SELECTIONS
if (c == '<') {
result = sel_get_leftmark(markp);
} else if (c == '>') {
result = sel_get_rightmark(markp);
} else
#endif
if (curbp->b_nmmarks != NULL) {
*markp = curbp->b_nmmarks[nmark2inx(c)];
} else {
result = FALSE;
}
}
TRACE(("get_nmmark(%c) ->%d.%d\n",
c, result ? line_no(curbp, markp->l) : 0, markp->o));
return result;
}
int
show_mark_is_set(int c)
{
if (isLower(c))
mlwrite("[Mark '%c' set]", c);
update_scratch(MARKS_BufName, update_marklist);
return TRUE;
}
/*
* Implements the vi "m" command.
*
* Set the named mark in the current window to the value of "." in the window.
*/
/* ARGSUSED */
int
setnmmark(int f GCC_UNUSED, int n GCC_UNUSED)
{
int c, i;
if (clexec || isnamedcmd) {
int status;
static char cbuf[2];
if ((status = mlreply("Set mark: ", cbuf, 2)) != TRUE)
return status;
c = cbuf[0];
} else {
c = keystroke();
if (ABORTED(c))
return ABORT;
}
if (nmark2inx(c) < 0) {
return invalid_nmmark();
}
if (curbp->b_nmmarks == NULL) {
beginDisplay();
curbp->b_nmmarks = typeallocn(struct MARK, NMARKS);
endofDisplay();
if (curbp->b_nmmarks == NULL)
return no_memory("named-marks");
for (i = 0; i < NMARKS; i++) {
curbp->b_nmmarks[i] = nullmark;
}
}
curbp->b_nmmarks[nmark2inx(c)] = DOT;
return show_mark_is_set(c);
}
/*
* Get the name of the mark to use. interactively, "last dot" is represented
* by stuttering the goto-mark command. From the command line, it's always
* named ' or `. I suppose this is questionable.
*/
static int
getnmmarkname(int *cp)
{
int c;
int thiskey;
int useldmark;
if (clexec || isnamedcmd) {
int status;
static char cbuf[2];
if ((status = mlreply("Goto mark: ", cbuf, 2)) != TRUE)
return status;
c = cbuf[0];
useldmark = (c == SQUOTE || c == BQUOTE);
} else {
thiskey = lastkey;
c = keystroke();
if (ABORTED(c))
return ABORT;
useldmark = (lastkey == thiskey); /* usually '' or `` */
}
if (useldmark)
c = SQUOTE;
*cp = c;
TRACE(("getnmmarkname(%c)\n", c));
return TRUE;
}
/* ARGSUSED */
int
golinenmmark(int f GCC_UNUSED, int n GCC_UNUSED)
{
int c;
int s;
s = getnmmarkname(&c);
if (s != TRUE)
return s;
s = gonmmark(c);
if (s != TRUE)
return s;
return firstnonwhite(FALSE, 1);
}
/* ARGSUSED */
int
goexactnmmark(int f GCC_UNUSED, int n GCC_UNUSED)
{
int c;
int s;
s = getnmmarkname(&c);
if (s != TRUE)
return s;
return gonmmark(c);
}
/* ARGSUSED */
int
gorectnmmark(int f GCC_UNUSED, int n GCC_UNUSED)
{
int c;
int s;
s = getnmmarkname(&c);
if (s != TRUE)
return s;
regionshape = rgn_RECTANGLE;
return gonmmark(c);
}
int
gonmmark(int c)
{
MARK my_mark;
MARK tmark;
TRACE(("gonmmark(%c)\n", c));
if (!can_set_nmmark(c)) {
return invalid_nmmark();
}
/* save current dot */
tmark = DOT;
/* if we have any named marks, and the one we want isn't null */
if (!get_nmmark(c, &my_mark) || !restore_dot(my_mark)) {
mlforce("[Mark not set]");
return (FALSE);
}
if (!doingopcmd) /* reset last-dot-mark to old dot */
curwp->w_lastdot = tmark;
show_mark_is_set(0);
return (TRUE);
}
/*
* Set the mark in the current window to the value of "." in the window. No
* errors are possible.
*/
int
setmark(void)
{
MK = DOT;
return (TRUE);
}
/* ARGSUSED */
int
gomark(int f GCC_UNUSED, int n GCC_UNUSED)
{
DOT = MK;
curwp->w_flag |= WFMOVE;
return (TRUE);
}
/* this odd routine puts us at the internal mark, plus an offset of lines */
/* n == 1 leaves us at mark, n == 2 one line down, etc. */
/* this is for the use of stuttered commands, and line oriented regions */
int
godotplus(int f, int n)
{
int s;
if (!f || n == 1) {
return firstnonwhite(FALSE, 1);
}
if (n < 1)
return (FALSE);
s = forwline(TRUE, n - 1);
if (s && is_header_line(DOT, curbp))
s = backline(FALSE, 1);
if (s == TRUE)
(void) firstnonwhite(FALSE, 1);
return s;
}
/*
* Swap the values of "." and "mark" in the current window. This is pretty
* easy, because all of the hard work gets done by the standard routine
* that moves the mark about. The only possible error is "no mark".
*/
void
swapmark(void)
{
MARK odot;
if (samepoint(MK, nullmark)) {
mlforce("BUG: No mark ");
return;
}
odot = DOT;
DOT = MK;
MK = odot;
curwp->w_flag |= WFMOVE;
return;
}
#if OPT_MOUSE
/*
* Given row & column from the screen, set the MK value.
* The resulting position will not be past end-of-buffer unless the buffer
* is empty.
*/
int
setwmark(int row, int col)
{
MARK save;
LINE *dlp;
save = DOT;
if (row == mode_row(curwp)) {
(void) gotoeos(FALSE, 1);
DOT.l = lforw(DOT.l);
DOT.o = w_left_margin(curwp);
} else { /* move to the right row */
row -= curwp->w_toprow + curwp->w_line.o;
/*
* In the statement above, wp->w_line.o will
* normally be zero. But when the top line of the
* window is wrapped and the beginning of the line
* is not visible, it will have the number of
* lines that would appear before the top line
* negated. (E.g, if the wrapped line occupied
* 2 lines before the top window line, then wp->w_line.o
* will have the value -2.)
*/
dlp = curwp->w_line.l; /* get pointer to 1st line */
while ((row -= line_height(curwp, dlp)) >= 0
&& dlp != buf_head(curbp))
dlp = lforw(dlp);
DOT.l = dlp; /* set dot line pointer */
/* now move the dot over until near the requested column */
#ifdef WMDLINEWRAP
if (w_val(curwp, WMDLINEWRAP))
col += term.cols * (row + line_height(curwp, dlp));
#endif
DOT.o = col2offs(curwp, dlp, col);
#ifdef OPT_MOUSE_NEWLINE
/* don't allow the cursor to be set past end of line unless we
* are in insert mode
*/
if (DOT.o >= llength(dlp) && DOT.o > w_left_margin(curwp) &&
!insertmode) {
DOT.o -= BytesBefore(DOT.l, DOT.o);
}
#endif
}
if (is_header_line(DOT, curwp->w_bufp)) {
DOT.l = lback(DOT.l);
DOT.o = llength(DOT.l);
}
MK = DOT;
DOT = save;
TRACE(("setwmark -> line %d, col %d\n", line_no(curwp->w_bufp, MK.l), MK.o));
return TRUE;
}
/*
* Given row & column from the screen, set the curwp and DOT values.
*/
int
setcursor(int row, int col)
{
int code = FALSE;
WINDOW *wp0 = curwp;
WINDOW *wp1;
MARK saveMK;
TRACE((T_CALLED "setcursor(%d,%d)\n", row, col));
if ((wp1 = row2window(row)) != 0) {
if (!(doingsweep && curwp != wp1)) {
saveMK = MK;
if (set_curwp(wp1)
&& setwmark(row, col)) {
if (insertmode != FALSE
&& b_val(wp1->w_bufp, MDVIEW)
&& b_val(wp1->w_bufp, MDSHOWMODE)) {
if (b_val(wp0->w_bufp, MDSHOWMODE))
wp0->w_flag |= WFMODE;
if (b_val(wp1->w_bufp, MDSHOWMODE))
wp1->w_flag |= WFMODE;
insertmode = FALSE;
}
DOT = MK;
if (wp0 == wp1)
MK = saveMK;
curwp->w_flag |= WFMOVE;
code = TRUE;
}
}
}
returnCode(code);
}
#endif
|