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 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968
|
/*-
* Copyright (c) 1993, 1994
* The Regents of the University of California. All rights reserved.
* Copyright (c) 1992, 1993, 1994, 1995, 1996
* Keith Bostic. All rights reserved.
*
* See the LICENSE file for redistribution information.
*/
#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)v_txt.c 10.87 (Berkeley) 10/13/96";
#endif /* not lint */
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <bitstring.h>
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "../common/common.h"
#include "vi.h"
static int txt_abbrev __P((SCR *, TEXT *, CHAR_T *, int, int *, int *));
static void txt_ai_resolve __P((SCR *, TEXT *, int *));
static TEXT *txt_backup __P((SCR *, TEXTH *, TEXT *, u_int32_t *));
static int txt_dent __P((SCR *, TEXT *, int));
static int txt_emark __P((SCR *, TEXT *, size_t));
static void txt_err __P((SCR *, TEXTH *));
static int txt_fc __P((SCR *, TEXT *, int *));
static int txt_fc_col __P((SCR *, int, ARGS **));
static int txt_hex __P((SCR *, TEXT *));
static int txt_insch __P((SCR *, TEXT *, CHAR_T *, u_int));
static int txt_isrch __P((SCR *, VICMD *, TEXT *, u_int8_t *));
static int txt_map_end __P((SCR *));
static int txt_map_init __P((SCR *));
static int txt_margin __P((SCR *, TEXT *, TEXT *, int *, u_int32_t));
static void txt_nomorech __P((SCR *));
static void txt_Rresolve __P((SCR *, TEXTH *, TEXT *, const size_t));
static int txt_resolve __P((SCR *, TEXTH *, u_int32_t));
static int txt_showmatch __P((SCR *, TEXT *));
static void txt_unmap __P((SCR *, TEXT *, u_int32_t *));
/* Cursor character (space is hard to track on the screen). */
#if defined(DEBUG) && 0
#undef CH_CURSOR
#define CH_CURSOR '+'
#endif
/*
* v_tcmd --
* Fill a buffer from the terminal for vi.
*
* PUBLIC: int v_tcmd __P((SCR *, VICMD *, ARG_CHAR_T, u_int));
*/
int
v_tcmd(sp, vp, prompt, flags)
SCR *sp;
VICMD *vp;
ARG_CHAR_T prompt;
u_int flags;
{
/* Normally, we end up where we started. */
vp->m_final.lno = sp->lno;
vp->m_final.cno = sp->cno;
/* Initialize the map. */
if (txt_map_init(sp))
return (1);
/* Move to the last line. */
sp->lno = TMAP[0].lno;
sp->cno = 0;
/* Don't update the modeline for now. */
F_SET(sp, SC_TINPUT_INFO);
/* Set the input flags. */
LF_SET(TXT_APPENDEOL |
TXT_CR | TXT_ESCAPE | TXT_INFOLINE | TXT_MAPINPUT);
if (O_ISSET(sp, O_ALTWERASE))
LF_SET(TXT_ALTWERASE);
if (O_ISSET(sp, O_TTYWERASE))
LF_SET(TXT_TTYWERASE);
/* Do the input thing. */
if (v_txt(sp, vp, NULL, NULL, 0, prompt, 0, 1, flags))
return (1);
/* Reenable the modeline updates. */
F_CLR(sp, SC_TINPUT_INFO);
/* Clean up the map. */
if (txt_map_end(sp))
return (1);
if (IS_ONELINE(sp))
F_SET(sp, SC_SCR_REDRAW); /* XXX */
/* Set the cursor to the resulting position. */
sp->lno = vp->m_final.lno;
sp->cno = vp->m_final.cno;
return (0);
}
/*
* txt_map_init
* Initialize the screen map for colon command-line input.
*/
static int
txt_map_init(sp)
SCR *sp;
{
SMAP *esmp;
VI_PRIVATE *vip;
vip = VIP(sp);
if (!IS_ONELINE(sp)) {
/*
* Fake like the user is doing input on the last line of the
* screen. This makes all of the scrolling work correctly,
* and allows us the use of the vi text editing routines, not
* to mention practically infinite length ex commands.
*
* Save the current location.
*/
vip->sv_tm_lno = TMAP->lno;
vip->sv_tm_soff = TMAP->soff;
vip->sv_tm_coff = TMAP->coff;
vip->sv_t_maxrows = sp->t_maxrows;
vip->sv_t_minrows = sp->t_minrows;
vip->sv_t_rows = sp->t_rows;
/*
* If it's a small screen, TMAP may be small for the screen.
* Fix it, filling in fake lines as we go.
*/
if (IS_SMALL(sp))
for (esmp =
HMAP + (sp->t_maxrows - 1); TMAP < esmp; ++TMAP) {
TMAP[1].lno = TMAP[0].lno + 1;
TMAP[1].coff = HMAP->coff;
TMAP[1].soff = 1;
}
/* Build the fake entry. */
TMAP[1].lno = TMAP[0].lno + 1;
TMAP[1].soff = 1;
TMAP[1].coff = 0;
SMAP_FLUSH(&TMAP[1]);
++TMAP;
/* Reset the screen information. */
sp->t_rows = sp->t_minrows = ++sp->t_maxrows;
}
return (0);
}
/*
* txt_map_end
* Reset the screen map for colon command-line input.
*/
static int
txt_map_end(sp)
SCR *sp;
{
VI_PRIVATE *vip;
size_t cnt;
vip = VIP(sp);
if (!IS_ONELINE(sp)) {
/* Restore the screen information. */
sp->t_rows = vip->sv_t_rows;
sp->t_minrows = vip->sv_t_minrows;
sp->t_maxrows = vip->sv_t_maxrows;
/*
* If it's a small screen, TMAP may be wrong. Clear any
* lines that might have been overwritten.
*/
if (IS_SMALL(sp)) {
for (cnt = sp->t_rows; cnt <= sp->t_maxrows; ++cnt) {
(void)sp->gp->scr_move(sp, cnt, 0);
(void)sp->gp->scr_clrtoeol(sp);
}
TMAP = HMAP + (sp->t_rows - 1);
} else
--TMAP;
/*
* The map may be wrong if the user entered more than one
* (logical) line. Fix it. If the user entered a whole
* screen, this will be slow, but we probably don't care.
*/
if (!O_ISSET(sp, O_LEFTRIGHT))
while (vip->sv_tm_lno != TMAP->lno ||
vip->sv_tm_soff != TMAP->soff)
if (vs_sm_1down(sp))
return (1);
}
/*
* Invalidate the cursor and the line size cache, the line never
* really existed. This fixes bugs where the user searches for
* the last line on the screen + 1 and the refresh routine thinks
* that's where we just were.
*/
VI_SCR_CFLUSH(vip);
F_SET(vip, VIP_CUR_INVALID);
return (0);
}
/*
* If doing input mapping on the colon command line, may need to unmap
* based on the command.
*/
#define UNMAP_TST \
FL_ISSET(ec_flags, EC_MAPINPUT) && LF_ISSET(TXT_INFOLINE)
/*
* Internally, we maintain tp->lno and tp->cno, externally, everyone uses
* sp->lno and sp->cno. Make them consistent as necessary.
*/
#define UPDATE_POSITION(sp, tp) { \
(sp)->lno = (tp)->lno; \
(sp)->cno = (tp)->cno; \
}
/*
* v_txt --
* Vi text input.
*
* PUBLIC: int v_txt __P((SCR *, VICMD *, MARK *,
* PUBLIC: const char *, size_t, ARG_CHAR_T, recno_t, u_long, u_int32_t));
*/
int
v_txt(sp, vp, tm, lp, len, prompt, ai_line, rcount, flags)
SCR *sp;
VICMD *vp;
MARK *tm; /* To MARK. */
const char *lp; /* Input line. */
size_t len; /* Input line length. */
ARG_CHAR_T prompt; /* Prompt to display. */
recno_t ai_line; /* Line number to use for autoindent count. */
u_long rcount; /* Replay count. */
u_int32_t flags; /* TXT_* flags. */
{
EVENT ev, *evp; /* Current event. */
EVENT fc; /* File name completion event. */
GS *gp;
TEXT *ntp, *tp; /* Input text structures. */
TEXT ait; /* Autoindent text structure. */
TEXT wmt; /* Wrapmargin text structure. */
TEXTH *tiqh;
VI_PRIVATE *vip;
abb_t abb; /* State of abbreviation checks. */
carat_t carat; /* State of the "[^0]^D" sequences. */
quote_t quote; /* State of quotation. */
size_t owrite, insert; /* Temporary copies of TEXT fields. */
size_t margin; /* Wrapmargin value. */
size_t rcol; /* 0-N: insert offset in the replay buffer. */
size_t tcol; /* Temporary column. */
u_int32_t ec_flags; /* Input mapping flags. */
#define IS_RESTART 0x01 /* Reset the incremental search. */
#define IS_RUNNING 0x02 /* Incremental search turned on. */
u_int8_t is_flags;
int abcnt, ab_turnoff; /* Abbreviation character count, switch. */
int filec_redraw; /* Redraw after the file completion routine. */
int hexcnt; /* Hex character count. */
int showmatch; /* Showmatch set on this character. */
int wm_set, wm_skip; /* Wrapmargin happened, blank skip flags. */
int max, tmp;
char *p;
static int intro = 1; /* Introduce insert mode */
gp = sp->gp;
vip = VIP(sp);
if (!prompt) {
vigor_maybe_confirm(25, "\"Do you wish to enter insert mode?\"", gp);
if (intro) {
intro = 0;
vigor_comment("\"You have not entered insert mode before. While you're in insert mode, remember that you need to return to command mode before entering Vigor commands!\"", gp);
}
}
/*
* Set the input flag, so tabs get displayed correctly
* and everyone knows that the text buffer is in use.
*/
F_SET(sp, SC_TINPUT);
/*
* Get one TEXT structure with some initial buffer space, reusing
* the last one if it's big enough. (All TEXT bookkeeping fields
* default to 0 -- text_init() handles this.) If changing a line,
* copy it into the TEXT buffer.
*/
tiqh = &sp->tiq;
if (tiqh->cqh_first != (void *)tiqh) {
tp = tiqh->cqh_first;
if (tp->q.cqe_next != (void *)tiqh || tp->lb_len < len + 32) {
text_lfree(tiqh);
goto newtp;
}
tp->ai = tp->insert = tp->offset = tp->owrite = 0;
if (lp != NULL) {
tp->len = len;
memmove(tp->lb, lp, len);
} else
tp->len = 0;
} else {
newtp: if ((tp = text_init(sp, lp, len, len + 32)) == NULL)
return (1);
CIRCLEQ_INSERT_HEAD(tiqh, tp, q);
}
/* Set default termination condition. */
tp->term = TERM_OK;
/* Set the starting line, column. */
tp->lno = sp->lno;
tp->cno = sp->cno;
/*
* Set the insert and overwrite counts. If overwriting characters,
* do insertion afterward. If not overwriting characters, assume
* doing insertion. If change is to a mark, emphasize it with an
* CH_ENDMARK character.
*/
if (len) {
if (LF_ISSET(TXT_OVERWRITE)) {
tp->owrite = (tm->cno - tp->cno) + 1;
tp->insert = (len - tm->cno) - 1;
} else
tp->insert = len - tp->cno;
if (LF_ISSET(TXT_EMARK) && txt_emark(sp, tp, tm->cno))
return (1);
}
/*
* Many of the special cases in text input are to handle autoindent
* support. Somebody decided that it would be a good idea if "^^D"
* and "0^D" deleted all of the autoindented characters. In an editor
* that takes single character input from the user, this beggars the
* imagination. Note also, "^^D" resets the next lines' autoindent,
* but "0^D" doesn't.
*
* We assume that autoindent only happens on empty lines, so insert
* and overwrite will be zero. If doing autoindent, figure out how
* much indentation we need and fill it in. Update input column and
* screen cursor as necessary.
*/
if (LF_ISSET(TXT_AUTOINDENT) && ai_line != OOBLNO) {
if (v_txt_auto(sp, ai_line, NULL, 0, tp))
return (1);
tp->cno = tp->ai;
} else {
/*
* The cc and S commands have a special feature -- leading
* <blank> characters are handled as autoindent characters.
* Beauty!
*/
if (LF_ISSET(TXT_AICHARS)) {
tp->offset = 0;
tp->ai = tp->cno;
} else
tp->offset = tp->cno;
}
/* If getting a command buffer from the user, there may be a prompt. */
if (LF_ISSET(TXT_PROMPT)) {
tp->lb[tp->cno++] = prompt;
++tp->len;
++tp->offset;
}
/*
* If appending after the end-of-line, add a space into the buffer
* and move the cursor right. This space is inserted, i.e. pushed
* along, and then deleted when the line is resolved. Assumes that
* the cursor is already positioned at the end of the line. This
* avoids the nastiness of having the cursor reside on a magical
* column, i.e. a column that doesn't really exist. The only down
* side is that we may wrap lines or scroll the screen before it's
* strictly necessary. Not a big deal.
*/
if (LF_ISSET(TXT_APPENDEOL)) {
tp->lb[tp->cno] = CH_CURSOR;
++tp->len;
++tp->insert;
(void)vs_change(sp, tp->lno, LINE_RESET);
}
/*
* Historic practice is that the wrapmargin value was a distance
* from the RIGHT-HAND margin, not the left. It's more useful to
* us as a distance from the left-hand margin, i.e. the same as
* the wraplen value. The wrapmargin option is historic practice.
* Nvi added the wraplen option so that it would be possible to
* edit files with consistent margins without knowing the number of
* columns in the window.
*
* XXX
* Setting margin causes a significant performance hit. Normally
* we don't update the screen if there are keys waiting, but we
* have to if margin is set, otherwise the screen routines don't
* know where the cursor is.
*
* !!!
* Abbreviated keys were affected by the wrapmargin option in the
* historic 4BSD vi. Mapped keys were usually, but sometimes not.
* See the comment in vi/v_text():set_txt_std for more information.
*
* !!!
* One more special case. If an inserted <blank> character causes
* wrapmargin to split the line, the next user entered character is
* discarded if it's a <space> character.
*/
wm_set = wm_skip = 0;
if (LF_ISSET(TXT_WRAPMARGIN))
if ((margin = O_VAL(sp, O_WRAPMARGIN)) != 0)
margin = sp->cols - margin;
else
margin = O_VAL(sp, O_WRAPLEN);
else
margin = 0;
/* Initialize abbreviation checks. */
abcnt = ab_turnoff = 0;
abb = F_ISSET(gp, G_ABBREV) &&
LF_ISSET(TXT_MAPINPUT) ? AB_INWORD : AB_NOTSET;
/*
* Set up the dot command. Dot commands are done by saving the actual
* characters and then reevaluating them so that things like wrapmargin
* can change between the insert and the replay.
*
* !!!
* Historically, vi did not remap or reabbreviate replayed input. (It
* did beep at you if you changed an abbreviation and then replayed the
* input. We're not that compatible.) We don't have to do anything to
* avoid remapping, as we're not getting characters from the terminal
* routines. Turn the abbreviation check off.
*
* XXX
* It would be nice if we could swallow backspaces and such, but it's
* not all that easy to do. What we can do is turn off the common
* error messages during the replay. Otherwise, when the user enters
* an illegal command, e.g., "Ia<erase><erase><erase><erase>b<escape>",
* and then does a '.', they get a list of error messages after command
* completion.
*/
rcol = 0;
if (LF_ISSET(TXT_REPLAY)) {
abb = AB_NOTSET;
LF_CLR(TXT_RECORD);
}
/* Other text input mode setup. */
quote = Q_NOTSET;
carat = C_NOTSET;
FL_INIT(is_flags,
LF_ISSET(TXT_SEARCHINCR) ? IS_RESTART | IS_RUNNING : 0);
filec_redraw = hexcnt = showmatch = 0;
/* Initialize input flags. */
ec_flags = LF_ISSET(TXT_MAPINPUT) ? EC_MAPINPUT : 0;
/* Refresh the screen. */
UPDATE_POSITION(sp, tp);
if (vs_refresh(sp, 1))
return (1);
/* If it's dot, just do it now. */
if (F_ISSET(vp, VC_ISDOT))
goto replay;
/* Get an event. */
evp = &ev;
next: if (v_event_get(sp, evp, 0, ec_flags))
return (1);
/*
* If file completion overwrote part of the screen and nothing else has
* been displayed, clean up. We don't do this as part of the normal
* message resolution because we know the user is on the colon command
* line and there's no reason to enter explicit characters to continue.
*/
if (filec_redraw && !F_ISSET(sp, SC_SCR_EXWROTE)) {
filec_redraw = 0;
fc.e_event = E_REPAINT;
fc.e_flno = vip->totalcount >=
sp->rows ? 1 : sp->rows - vip->totalcount;
fc.e_tlno = sp->rows;
vip->linecount = vip->lcontinue = vip->totalcount = 0;
(void)vs_repaint(sp, &fc);
(void)vs_refresh(sp, 1);
}
/* Deal with all non-character events. */
switch (evp->e_event) {
case E_CHARACTER:
break;
case E_ERR:
case E_EOF:
F_SET(sp, SC_EXIT_FORCE);
return (1);
case E_INTERRUPT:
/*
* !!!
* Historically, <interrupt> exited the user from text input
* mode or cancelled a colon command, and returned to command
* mode. It also beeped the terminal, but that seems a bit
* excessive.
*/
goto k_escape;
case E_REPAINT:
if (vs_repaint(sp, &ev))
return (1);
goto next;
case E_WRESIZE:
/* <resize> interrupts the input mode. */
v_emsg(sp, NULL, VIM_WRESIZE);
goto k_escape;
default:
v_event_err(sp, evp);
goto k_escape;
}
/*
* !!!
* If the first character of the input is a nul, replay the previous
* input. (Historically, it's okay to replay non-existent input.)
* This was not documented as far as I know, and is a great test of vi
* clones.
*/
if (rcol == 0 && !LF_ISSET(TXT_REPLAY) && evp->e_c == '\0') {
if (vip->rep == NULL)
goto done;
abb = AB_NOTSET;
LF_CLR(TXT_RECORD);
LF_SET(TXT_REPLAY);
goto replay;
}
/*
* File name completion and colon command-line editing. We don't
* have enough meta characters, so we expect people to overload
* them. If the two characters are the same, then we do file name
* completion if the cursor is past the first column, and do colon
* command-line editing if it's not.
*/
if (quote == Q_NOTSET) {
int L__cedit, L__filec;
L__cedit = L__filec = 0;
if (LF_ISSET(TXT_CEDIT) && O_STR(sp, O_CEDIT) != NULL &&
O_STR(sp, O_CEDIT)[0] == evp->e_c)
L__cedit = 1;
if (LF_ISSET(TXT_FILEC) && O_STR(sp, O_FILEC) != NULL &&
O_STR(sp, O_FILEC)[0] == evp->e_c)
L__filec = 1;
if (L__cedit == 1 && (L__filec == 0 || tp->cno == tp->offset)) {
tp->term = TERM_CEDIT;
goto k_escape;
}
if (L__filec == 1) {
if (txt_fc(sp, tp, &filec_redraw))
goto err;
goto resolve;
}
}
/* Abbreviation overflow check. See comment in txt_abbrev(). */
#define MAX_ABBREVIATION_EXPANSION 256
if (F_ISSET(&evp->e_ch, CH_ABBREVIATED)) {
if (++abcnt > MAX_ABBREVIATION_EXPANSION) {
if (v_event_flush(sp, CH_ABBREVIATED))
msgq(sp, M_ERR,
"191|Abbreviation exceeded expansion limit: characters discarded");
abcnt = 0;
if (LF_ISSET(TXT_REPLAY))
goto done;
goto resolve;
}
} else
abcnt = 0;
/* Check to see if the character fits into the replay buffers. */
if (LF_ISSET(TXT_RECORD)) {
BINC_GOTO(sp, vip->rep,
vip->rep_len, (rcol + 1) * sizeof(EVENT));
vip->rep[rcol++] = *evp;
}
replay: if (LF_ISSET(TXT_REPLAY))
evp = vip->rep + rcol++;
/* Wrapmargin check for leading space. */
if (wm_skip) {
wm_skip = 0;
if (evp->e_c == ' ')
goto resolve;
}
/* If quoted by someone else, simply insert the character. */
if (F_ISSET(&evp->e_ch, CH_QUOTED))
goto insq_ch;
/*
* !!!
* If this character was quoted by a K_VLNEXT or a backslash, replace
* the placeholder (a carat or a backslash) with the new character.
* If it was quoted by a K_VLNEXT, we've already adjusted the cursor
* because it has to appear on top of the placeholder character. If
* it was quoted by a backslash, adjust the cursor now, the cursor
* doesn't appear on top of it. Historic practice in both cases.
*
* Skip tests for abbreviations; ":ab xa XA" followed by "ixa^V<space>"
* doesn't perform an abbreviation. Special case, ^V^J (not ^V^M) is
* the same as ^J, historically.
*/
if (quote == Q_BTHIS || quote == Q_VTHIS) {
FL_CLR(ec_flags, EC_QUOTED);
if (LF_ISSET(TXT_MAPINPUT))
FL_SET(ec_flags, EC_MAPINPUT);
if (quote == Q_BTHIS &&
(evp->e_value == K_VERASE || evp->e_value == K_VKILL)) {
quote = Q_NOTSET;
--tp->cno;
++tp->owrite;
goto insl_ch;
}
if (quote == Q_VTHIS && evp->e_value != K_NL) {
quote = Q_NOTSET;
goto insl_ch;
}
quote = Q_NOTSET;
}
/*
* !!!
* Translate "<CH_HEX>[isxdigit()]*" to a character with a hex value:
* this test delimits the value by any non-hex character. Offset by
* one, we use 0 to mean that we've found <CH_HEX>.
*/
if (hexcnt > 1 && !isxdigit(evp->e_c)) {
hexcnt = 0;
if (txt_hex(sp, tp))
goto err;
}
switch (evp->e_value) {
case K_CR: /* Carriage return. */
case K_NL: /* New line. */
/* Return in script windows and the command line. */
k_cr: if (LF_ISSET(TXT_CR)) {
/*
* If this was a map, we may have not displayed
* the line. Display it, just in case.
*
* If a script window and not the colon line,
* push a <cr> so it gets executed.
*/
if (LF_ISSET(TXT_INFOLINE)) {
if (vs_change(sp, tp->lno, LINE_RESET))
goto err;
} else if (F_ISSET(sp, SC_SCRIPT))
(void)v_event_push(sp, NULL, "\r", 1, CH_NOMAP);
/* Set term condition: if empty. */
if (tp->cno <= tp->offset)
tp->term = TERM_CR;
/*
* Set term condition: if searching incrementally and
* the user entered a pattern, return a completed
* search, regardless if the entire pattern was found.
*/
if (FL_ISSET(is_flags, IS_RUNNING) &&
tp->cno >= tp->offset + 1)
tp->term = TERM_SEARCH;
goto k_escape;
}
#define LINE_RESOLVE { \
/* \
* Handle abbreviations. If there was one, discard the \
* replay characters. \
*/ \
if (abb == AB_INWORD && \
!LF_ISSET(TXT_REPLAY) && F_ISSET(gp, G_ABBREV)) { \
if (txt_abbrev(sp, tp, &evp->e_c, \
LF_ISSET(TXT_INFOLINE), &tmp, \
&ab_turnoff)) \
goto err; \
if (tmp) { \
if (LF_ISSET(TXT_RECORD)) \
rcol -= tmp + 1; \
goto resolve; \
} \
} \
if (abb != AB_NOTSET) \
abb = AB_NOTWORD; \
if (UNMAP_TST) \
txt_unmap(sp, tp, &ec_flags); \
/* \
* Delete any appended cursor. It's possible to get in \
* situations where TXT_APPENDEOL is set but tp->insert \
* is 0 when using the R command and all the characters \
* are tp->owrite characters. \
*/ \
if (LF_ISSET(TXT_APPENDEOL) && tp->insert > 0) { \
--tp->len; \
--tp->insert; \
} \
}
LINE_RESOLVE;
/*
* Save the current line information for restoration in
* txt_backup(), and set the line final length.
*/
tp->sv_len = tp->len;
tp->sv_cno = tp->cno;
tp->len = tp->cno;
/* Update the old line. */
if (vs_change(sp, tp->lno, LINE_RESET))
goto err;
/*
* Historic practice, when the autoindent edit option was set,
* was to delete <blank> characters following the inserted
* newline. This affected the 'R', 'c', and 's' commands; 'c'
* and 's' retained the insert characters only, 'R' moved the
* overwrite and insert characters into the next TEXT structure.
* We keep track of the number of characters erased for the 'R'
* command so that the final resolution of the line is correct.
*/
tp->R_erase = 0;
owrite = tp->owrite;
insert = tp->insert;
if (LF_ISSET(TXT_REPLACE) && owrite != 0) {
for (p = tp->lb + tp->cno; owrite > 0 && isblank(*p);
++p, --owrite, ++tp->R_erase);
if (owrite == 0)
for (; insert > 0 && isblank(*p);
++p, ++tp->R_erase, --insert);
} else {
p = tp->lb + tp->cno + owrite;
if (O_ISSET(sp, O_AUTOINDENT))
for (; insert > 0 &&
isblank(*p); ++p, --insert);
owrite = 0;
}
/*
* !!!
* Create a new line and insert the new TEXT into the queue.
* DON'T insert until the old line has been updated, or the
* inserted line count in line.c:db_get() will be wrong.
*/
if ((ntp = text_init(sp, p,
insert + owrite, insert + owrite + 32)) == NULL)
goto err;
CIRCLEQ_INSERT_TAIL(&sp->tiq, ntp, q);
/* Set up bookkeeping for the new line. */
ntp->insert = insert;
ntp->owrite = owrite;
ntp->lno = tp->lno + 1;
/*
* Reset the autoindent line value. 0^D keeps the autoindent
* line from changing, ^D changes the level, even if there were
* no characters in the old line. Note, if using the current
* tp structure, use the cursor as the length, the autoindent
* characters may have been erased.
*/
if (LF_ISSET(TXT_AUTOINDENT)) {
if (carat == C_NOCHANGE) {
if (v_txt_auto(sp, OOBLNO, &ait, ait.ai, ntp))
goto err;
FREE_SPACE(sp, ait.lb, ait.lb_len);
} else
if (v_txt_auto(sp, OOBLNO, tp, tp->cno, ntp))
goto err;
carat = C_NOTSET;
}
/* Reset the cursor. */
ntp->cno = ntp->ai;
/*
* If we're here because wrapmargin was set and we've broken a
* line, there may be additional information (i.e. the start of
* a line) in the wmt structure.
*/
if (wm_set) {
if (wmt.offset != 0 ||
wmt.owrite != 0 || wmt.insert != 0) {
#define WMTSPACE wmt.offset + wmt.owrite + wmt.insert
BINC_GOTO(sp, ntp->lb,
ntp->lb_len, ntp->len + WMTSPACE + 32);
memmove(ntp->lb + ntp->cno, wmt.lb, WMTSPACE);
ntp->len += WMTSPACE;
ntp->cno += wmt.offset;
ntp->owrite = wmt.owrite;
ntp->insert = wmt.insert;
}
wm_set = 0;
}
/* New lines are TXT_APPENDEOL. */
if (ntp->owrite == 0 && ntp->insert == 0) {
BINC_GOTO(sp, ntp->lb, ntp->lb_len, ntp->len + 1);
LF_SET(TXT_APPENDEOL);
ntp->lb[ntp->cno] = CH_CURSOR;
++ntp->insert;
++ntp->len;
}
/* Swap old and new TEXT's, and update the new line. */
tp = ntp;
if (vs_change(sp, tp->lno, LINE_INSERT))
goto err;
goto resolve;
case K_ESCAPE: /* Escape. */
if (!LF_ISSET(TXT_ESCAPE))
goto ins_ch;
/* If we have a count, start replaying the input. */
if (rcount > 1) {
--rcount;
rcol = 0;
abb = AB_NOTSET;
LF_CLR(TXT_RECORD);
LF_SET(TXT_REPLAY);
/*
* Some commands (e.g. 'o') need a <newline> for each
* repetition.
*/
if (LF_ISSET(TXT_ADDNEWLINE))
goto k_cr;
/*
* The R command turns into the 'a' command after the
* first repetition.
*/
if (LF_ISSET(TXT_REPLACE)) {
tp->insert = tp->owrite;
tp->owrite = 0;
LF_CLR(TXT_REPLACE);
}
goto replay;
}
/* Set term condition: if empty. */
if (tp->cno <= tp->offset)
tp->term = TERM_ESC;
/*
* Set term condition: if searching incrementally and the user
* entered a pattern, return a completed search, regardless if
* the entire pattern was found.
*/
if (FL_ISSET(is_flags, IS_RUNNING) && tp->cno >= tp->offset + 1)
tp->term = TERM_SEARCH;
k_escape: LINE_RESOLVE;
/*
* Clean up for the 'R' command, restoring overwrite
* characters, and making them into insert characters.
*/
if (LF_ISSET(TXT_REPLACE))
txt_Rresolve(sp, &sp->tiq, tp, len);
/*
* If there are any overwrite characters, copy down
* any insert characters, and decrement the length.
*/
if (tp->owrite) {
if (tp->insert)
memmove(tp->lb + tp->cno,
tp->lb + tp->cno + tp->owrite, tp->insert);
tp->len -= tp->owrite;
}
/*
* Optionally resolve the lines into the file. If not
* resolving the lines into the file, end the line with
* a nul. If the line is empty, then set the length to
* 0, the termination condition has already been set.
*
* XXX
* This is wrong, should pass back a length.
*/
if (LF_ISSET(TXT_RESOLVE)) {
if (txt_resolve(sp, &sp->tiq, flags))
goto err;
} else {
BINC_GOTO(sp, tp->lb, tp->lb_len, tp->len + 1);
tp->lb[tp->len] = '\0';
}
/*
* Set the return cursor position to rest on the last
* inserted character.
*/
if (tp->cno != 0)
--tp->cno;
/* Update the last line. */
if (vs_change(sp, tp->lno, LINE_RESET))
return (1);
goto done;
case K_CARAT: /* Delete autoindent chars. */
if (tp->cno <= tp->ai && LF_ISSET(TXT_AUTOINDENT))
carat = C_CARATSET;
goto ins_ch;
case K_ZERO: /* Delete autoindent chars. */
if (tp->cno <= tp->ai && LF_ISSET(TXT_AUTOINDENT))
carat = C_ZEROSET;
goto ins_ch;
case K_CNTRLD: /* Delete autoindent char. */
/*
* If in the first column or no characters to erase, ignore
* the ^D (this matches historic practice). If not doing
* autoindent or already inserted non-ai characters, it's a
* literal. The latter test is done in the switch, as the
* CARAT forms are N + 1, not N.
*/
if (!LF_ISSET(TXT_AUTOINDENT))
goto ins_ch;
if (tp->cno == 0)
goto resolve;
switch (carat) {
case C_CARATSET: /* ^^D */
if (tp->ai == 0 || tp->cno > tp->ai + tp->offset + 1)
goto ins_ch;
/* Save the ai string for later. */
ait.lb = NULL;
ait.lb_len = 0;
BINC_GOTO(sp, ait.lb, ait.lb_len, tp->ai);
memmove(ait.lb, tp->lb, tp->ai);
ait.ai = ait.len = tp->ai;
carat = C_NOCHANGE;
goto leftmargin;
case C_ZEROSET: /* 0^D */
if (tp->ai == 0 || tp->cno > tp->ai + tp->offset + 1)
goto ins_ch;
carat = C_NOTSET;
leftmargin: tp->lb[tp->cno - 1] = ' ';
tp->owrite += tp->cno - tp->offset;
tp->ai = 0;
tp->cno = tp->offset;
break;
case C_NOTSET: /* ^D */
if (tp->ai == 0 || tp->cno > tp->ai + tp->offset)
goto ins_ch;
(void)txt_dent(sp, tp, 0);
break;
default:
abort();
}
break;
case K_VERASE: /* Erase the last character. */
/* If can erase over the prompt, return. */
if (tp->cno <= tp->offset && LF_ISSET(TXT_BS)) {
tp->term = TERM_BS;
goto done;
}
/*
* If at the beginning of the line, try and drop back to a
* previously inserted line.
*/
if (tp->cno == 0) {
if ((ntp =
txt_backup(sp, &sp->tiq, tp, &flags)) == NULL)
goto err;
tp = ntp;
break;
}
/* If nothing to erase, bell the user. */
if (tp->cno <= tp->offset) {
if (!LF_ISSET(TXT_REPLAY))
txt_nomorech(sp);
break;
}
/* Drop back one character. */
--tp->cno;
/*
* Historically, vi didn't replace the erased characters with
* <blank>s, presumably because it's easier to fix a minor
* typing mistake and continue on if the previous letters are
* already there. This is a problem for incremental searching,
* because the user can no longer tell where they are in the
* colon command line because the cursor is at the last search
* point in the screen. So, if incrementally searching, erase
* the erased characters from the screen.
*/
if (FL_ISSET(is_flags, IS_RUNNING))
tp->lb[tp->cno] = ' ';
/*
* Increment overwrite, decrement ai if deleted.
*
* !!!
* Historic vi did not permit users to use erase characters
* to delete autoindent characters. We do. Eat hot death,
* POSIX.
*/
++tp->owrite;
if (tp->cno < tp->ai)
--tp->ai;
/* Reset if we deleted an incremental search character. */
if (FL_ISSET(is_flags, IS_RUNNING))
FL_SET(is_flags, IS_RESTART);
break;
case K_VWERASE: /* Skip back one word. */
/*
* If at the beginning of the line, try and drop back to a
* previously inserted line.
*/
if (tp->cno == 0) {
if ((ntp =
txt_backup(sp, &sp->tiq, tp, &flags)) == NULL)
goto err;
tp = ntp;
}
/*
* If at offset, nothing to erase so bell the user.
*/
if (tp->cno <= tp->offset) {
if (!LF_ISSET(TXT_REPLAY))
txt_nomorech(sp);
break;
}
/*
* The first werase goes back to any autoindent column and the
* second werase goes back to the offset.
*
* !!!
* Historic vi did not permit users to use erase characters to
* delete autoindent characters.
*/
if (tp->ai && tp->cno > tp->ai)
max = tp->ai;
else {
tp->ai = 0;
max = tp->offset;
}
/* Skip over trailing space characters. */
while (tp->cno > max && isblank(tp->lb[tp->cno - 1])) {
--tp->cno;
++tp->owrite;
}
if (tp->cno == max)
break;
/*
* There are three types of word erase found on UNIX systems.
* They can be identified by how the string /a/b/c is treated
* -- as 1, 3, or 6 words. Historic vi had two classes of
* characters, and strings were delimited by them and
* <blank>'s, so, 6 words. The historic tty interface used
* <blank>'s to delimit strings, so, 1 word. The algorithm
* offered in the 4.4BSD tty interface (as stty altwerase)
* treats it as 3 words -- there are two classes of
* characters, and strings are delimited by them and
* <blank>'s. The difference is that the type of the first
* erased character erased is ignored, which is exactly right
* when erasing pathname components. The edit options
* TXT_ALTWERASE and TXT_TTYWERASE specify the 4.4BSD tty
* interface and the historic tty driver behavior,
* respectively, and the default is the same as the historic
* vi behavior.
*
* Overwrite erased characters if doing incremental search;
* see comment above.
*/
if (LF_ISSET(TXT_TTYWERASE))
while (tp->cno > max) {
--tp->cno;
++tp->owrite;
if (FL_ISSET(is_flags, IS_RUNNING))
tp->lb[tp->cno] = ' ';
if (isblank(tp->lb[tp->cno - 1]))
break;
}
else {
if (LF_ISSET(TXT_ALTWERASE)) {
--tp->cno;
++tp->owrite;
if (FL_ISSET(is_flags, IS_RUNNING))
tp->lb[tp->cno] = ' ';
if (isblank(tp->lb[tp->cno - 1]))
break;
}
if (tp->cno > max)
tmp = inword(tp->lb[tp->cno - 1]);
while (tp->cno > max) {
--tp->cno;
++tp->owrite;
if (FL_ISSET(is_flags, IS_RUNNING))
tp->lb[tp->cno] = ' ';
if (tmp != inword(tp->lb[tp->cno - 1])
|| isblank(tp->lb[tp->cno - 1]))
break;
}
}
/* Reset if we deleted an incremental search character. */
if (FL_ISSET(is_flags, IS_RUNNING))
FL_SET(is_flags, IS_RESTART);
break;
case K_VKILL: /* Restart this line. */
/*
* !!!
* If at the beginning of the line, try and drop back to a
* previously inserted line. Historic vi did not permit
* users to go back to previous lines.
*/
if (tp->cno == 0) {
if ((ntp =
txt_backup(sp, &sp->tiq, tp, &flags)) == NULL)
goto err;
tp = ntp;
}
/* If at offset, nothing to erase so bell the user. */
if (tp->cno <= tp->offset) {
if (!LF_ISSET(TXT_REPLAY))
txt_nomorech(sp);
break;
}
/*
* First kill goes back to any autoindent and second kill goes
* back to the offset.
*
* !!!
* Historic vi did not permit users to use erase characters to
* delete autoindent characters.
*/
if (tp->ai && tp->cno > tp->ai)
max = tp->ai;
else {
tp->ai = 0;
max = tp->offset;
}
tp->owrite += tp->cno - max;
/*
* Overwrite erased characters if doing incremental search;
* see comment above.
*/
if (FL_ISSET(is_flags, IS_RUNNING))
do {
tp->lb[--tp->cno] = ' ';
} while (tp->cno > max);
else
tp->cno = max;
/* Reset if we deleted an incremental search character. */
if (FL_ISSET(is_flags, IS_RUNNING))
FL_SET(is_flags, IS_RESTART);
break;
case K_CNTRLT: /* Add autoindent characters. */
if (!LF_ISSET(TXT_CNTRLT))
goto ins_ch;
if (txt_dent(sp, tp, 1))
goto err;
goto ebuf_chk;
case K_RIGHTBRACE:
case K_RIGHTPAREN:
if (LF_ISSET(TXT_SHOWMATCH))
showmatch = 1;
goto ins_ch;
case K_BACKSLASH: /* Quote next erase/kill. */
/*
* !!!
* Historic vi tried to make abbreviations after a backslash
* escape work. If you did ":ab x y", and inserted "x\^H",
* (assuming the erase character was ^H) you got "x^H", and
* no abbreviation was done. If you inserted "x\z", however,
* it tried to back up and do the abbreviation, i.e. replace
* 'x' with 'y'. The problem was it got it wrong, and you
* ended up with "zy\".
*
* This is really hard to do (you have to remember the
* word/non-word state, for example), and doesn't make any
* sense to me. Both backslash and the characters it
* (usually) escapes will individually trigger the
* abbreviation, so I don't see why the combination of them
* wouldn't. I don't expect to get caught on this one,
* particularly since it never worked right, but I've been
* wrong before.
*
* Do the tests for abbreviations, so ":ab xa XA",
* "ixa\<K_VERASE>" performs the abbreviation.
*/
quote = Q_BNEXT;
goto insq_ch;
case K_VLNEXT: /* Quote next character. */
evp->e_c = '^';
quote = Q_VNEXT;
/*
* Turn on the quote flag so that the underlying routines
* quote the next character where it's possible. Turn off
* the input mapbiting flag so that we don't remap the next
* character.
*/
FL_SET(ec_flags, EC_QUOTED);
FL_CLR(ec_flags, EC_MAPINPUT);
/*
* !!!
* Skip the tests for abbreviations, so ":ab xa XA",
* "ixa^V<space>" doesn't perform the abbreviation.
*/
goto insl_ch;
case K_HEXCHAR:
hexcnt = 1;
goto insq_ch;
default: /* Insert the character. */
ins_ch: /*
* Historically, vi eliminated nul's out of hand. If the
* beautify option was set, it also deleted any unknown
* ASCII value less than space (040) and the del character
* (0177), except for tabs. Unknown is a key word here.
* Most vi documentation claims that it deleted everything
* but <tab>, <nl> and <ff>, as that's what the original
* 4BSD documentation said. This is obviously wrong,
* however, as <esc> would be included in that list. What
* we do is eliminate any unquoted, iscntrl() character that
* wasn't a replay and wasn't handled specially, except
* <tab> or <ff>.
*/
if (LF_ISSET(TXT_BEAUTIFY) && iscntrl(evp->e_c) &&
evp->e_value != K_FORMFEED && evp->e_value != K_TAB) {
msgq(sp, M_BERR,
"192|Illegal character; quote to enter");
if (LF_ISSET(TXT_REPLAY))
goto done;
break;
}
insq_ch: /*
* If entering a non-word character after a word, check for
* abbreviations. If there was one, discard replay characters.
* If entering a blank character, check for unmap commands,
* as well.
*/
if (!inword(evp->e_c)) {
if (abb == AB_INWORD &&
!LF_ISSET(TXT_REPLAY) && F_ISSET(gp, G_ABBREV)) {
if (txt_abbrev(sp, tp, &evp->e_c,
LF_ISSET(TXT_INFOLINE), &tmp, &ab_turnoff))
goto err;
if (tmp) {
if (LF_ISSET(TXT_RECORD))
rcol -= tmp + 1;
goto resolve;
}
}
if (isblank(evp->e_c) && UNMAP_TST)
txt_unmap(sp, tp, &ec_flags);
}
if (abb != AB_NOTSET)
abb = inword(evp->e_c) ? AB_INWORD : AB_NOTWORD;
insl_ch: if (txt_insch(sp, tp, &evp->e_c, flags))
goto err;
/*
* If we're using K_VLNEXT to quote the next character, then
* we want the cursor to position itself on the ^ placeholder
* we're displaying, to match historic practice.
*/
if (quote == Q_VNEXT) {
--tp->cno;
++tp->owrite;
}
/*
* !!!
* Translate "<CH_HEX>[isxdigit()]*" to a character with
* a hex value: this test delimits the value by the max
* number of hex bytes. Offset by one, we use 0 to mean
* that we've found <CH_HEX>.
*/
if (hexcnt != 0 && hexcnt++ == sizeof(CHAR_T) * 2 + 1) {
hexcnt = 0;
if (txt_hex(sp, tp))
goto err;
}
/*
* Check to see if we've crossed the margin.
*
* !!!
* In the historic vi, the wrapmargin value was figured out
* using the display widths of the characters, i.e. <tab>
* characters were counted as two characters if the list edit
* option is set, but as the tabstop edit option number of
* characters otherwise. That's what the vs_column() function
* gives us, so we use it.
*/
if (margin != 0) {
if (vs_column(sp, &tcol))
goto err;
if (tcol >= margin) {
if (txt_margin(sp, tp, &wmt, &tmp, flags))
goto err;
if (tmp) {
if (isblank(evp->e_c))
wm_skip = 1;
wm_set = 1;
goto k_cr;
}
}
}
/*
* If we've reached the end of the buffer, then we need to
* switch into insert mode. This happens when there's a
* change to a mark and the user puts in more characters than
* the length of the motion.
*/
ebuf_chk: if (tp->cno >= tp->len) {
BINC_GOTO(sp, tp->lb, tp->lb_len, tp->len + 1);
LF_SET(TXT_APPENDEOL);
tp->lb[tp->cno] = CH_CURSOR;
++tp->insert;
++tp->len;
}
/* Step the quote state forward. */
if (quote != Q_NOTSET) {
if (quote == Q_BNEXT)
quote = Q_BTHIS;
if (quote == Q_VNEXT)
quote = Q_VTHIS;
}
break;
}
#ifdef DEBUG
if (tp->cno + tp->insert + tp->owrite != tp->len) {
msgq(sp, M_ERR,
"len %u != cno: %u ai: %u insert %u overwrite %u",
tp->len, tp->cno, tp->ai, tp->insert, tp->owrite);
if (LF_ISSET(TXT_REPLAY))
goto done;
tp->len = tp->cno + tp->insert + tp->owrite;
}
#endif
resolve:/*
* 1: If we don't need to know where the cursor really is and we're
* replaying text, keep going.
*/
if (margin == 0 && LF_ISSET(TXT_REPLAY))
goto replay;
/*
* 2: Reset the line. Don't bother unless we're about to wait on
* a character or we need to know where the cursor really is.
* We have to do this before showing matching characters so the
* user can see what they're matching.
*/
if ((margin != 0 || !KEYS_WAITING(sp)) &&
vs_change(sp, tp->lno, LINE_RESET))
return (1);
/*
* 3: If there aren't keys waiting, display the matching character.
* We have to do this before resolving any messages, otherwise
* the error message from a missing match won't appear correctly.
*/
if (showmatch) {
if (!KEYS_WAITING(sp) && txt_showmatch(sp, tp))
return (1);
showmatch = 0;
}
/*
* 4: If there have been messages and we're not editing on the colon
* command line or doing file name completion, resolve them.
*/
if ((vip->totalcount != 0 || F_ISSET(gp, G_BELLSCHED)) &&
!F_ISSET(sp, SC_TINPUT_INFO) && !filec_redraw &&
vs_resolve(sp, NULL, 0))
return (1);
/*
* 5: Refresh the screen if we're about to wait on a character or we
* need to know where the cursor really is.
*/
if (margin != 0 || !KEYS_WAITING(sp)) {
UPDATE_POSITION(sp, tp);
if (vs_refresh(sp, margin != 0))
return (1);
}
/* 6: Proceed with the incremental search. */
if (FL_ISSET(is_flags, IS_RUNNING) && txt_isrch(sp, vp, tp, &is_flags))
return (1);
/* 7: Next character... */
if (LF_ISSET(TXT_REPLAY))
goto replay;
goto next;
done: /* Leave input mode. */
F_CLR(sp, SC_TINPUT);
/* If recording for playback, save it. */
if (LF_ISSET(TXT_RECORD))
vip->rep_cnt = rcol;
/*
* If not working on the colon command line, set the final cursor
* position.
*/
if (!F_ISSET(sp, SC_TINPUT_INFO)) {
vp->m_final.lno = tp->lno;
vp->m_final.cno = tp->cno;
}
return (0);
err:
alloc_err:
txt_err(sp, &sp->tiq);
return (1);
}
/*
* txt_abbrev --
* Handle abbreviations.
*/
static int
txt_abbrev(sp, tp, pushcp, isinfoline, didsubp, turnoffp)
SCR *sp;
TEXT *tp;
CHAR_T *pushcp;
int isinfoline, *didsubp, *turnoffp;
{
VI_PRIVATE *vip;
CHAR_T ch, *p;
SEQ *qp;
size_t len, off;
/* Check to make sure we're not at the start of an append. */
*didsubp = 0;
if (tp->cno == tp->offset)
return (0);
vip = VIP(sp);
/*
* Find the start of the "word".
*
* !!!
* We match historic practice, which, as far as I can tell, had an
* off-by-one error. The way this worked was that when the inserted
* text switched from a "word" character to a non-word character,
* vi would check for possible abbreviations. It would then take the
* type (i.e. word/non-word) of the character entered TWO characters
* ago, and move backward in the text until reaching a character that
* was not that type, or the beginning of the insert, the line, or
* the file. For example, in the string "abc<space>", when the <space>
* character triggered the abbreviation check, the type of the 'b'
* character was used for moving through the string. Maybe there's a
* reason for not using the first (i.e. 'c') character, but I can't
* think of one.
*
* Terminate at the beginning of the insert or the character after the
* offset character -- both can be tested for using tp->offset.
*/
off = tp->cno - 1; /* Previous character. */
p = tp->lb + off;
len = 1; /* One character test. */
if (off == tp->offset || isblank(p[-1]))
goto search;
if (inword(p[-1])) /* Move backward to change. */
for (;;) {
--off; --p; ++len;
if (off == tp->offset || !inword(p[-1]))
break;
}
else
for (;;) {
--off; --p; ++len;
if (off == tp->offset ||
inword(p[-1]) || isblank(p[-1]))
break;
}
/*
* !!!
* Historic vi exploded abbreviations on the command line. This has
* obvious problems in that unabbreviating the string can be extremely
* tricky, particularly if the string has, say, an embedded escape
* character. Personally, I think it's a stunningly bad idea. Other
* examples of problems this caused in historic vi are:
* :ab foo bar
* :ab foo baz
* results in "bar" being abbreviated to "baz", which wasn't what the
* user had in mind at all. Also, the commands:
* :ab foo bar
* :unab foo<space>
* resulted in an error message that "bar" wasn't mapped. Finally,
* since the string was already exploded by the time the unabbreviate
* command got it, all it knew was that an abbreviation had occurred.
* Cleverly, it checked the replacement string for its unabbreviation
* match, which meant that the commands:
* :ab foo1 bar
* :ab foo2 bar
* :unab foo2
* unabbreviate "foo1", and the commands:
* :ab foo bar
* :ab bar baz
* unabbreviate "foo"!
*
* Anyway, people neglected to first ask my opinion before they wrote
* macros that depend on this stuff, so, we make this work as follows.
* When checking for an abbreviation on the command line, if we get a
* string which is <blank> terminated and which starts at the beginning
* of the line, we check to see it is the abbreviate or unabbreviate
* commands. If it is, turn abbreviations off and return as if no
* abbreviation was found. Note also, minor trickiness, so that if
* the user erases the line and starts another command, we turn the
* abbreviations back on.
*
* This makes the layering look like a Nachos Supreme.
*/
search: if (isinfoline)
if (off == tp->ai || off == tp->offset)
if (ex_is_abbrev(p, len)) {
*turnoffp = 1;
return (0);
} else
*turnoffp = 0;
else
if (*turnoffp)
return (0);
/* Check for any abbreviations. */
if ((qp = seq_find(sp, NULL, NULL, p, len, SEQ_ABBREV, NULL)) == NULL)
return (0);
/*
* Push the abbreviation onto the tty stack. Historically, characters
* resulting from an abbreviation expansion were themselves subject to
* map expansions, O_SHOWMATCH matching etc. This means the expanded
* characters will be re-tested for abbreviations. It's difficult to
* know what historic practice in this case was, since abbreviations
* were applied to :colon command lines, so entering abbreviations that
* looped was tricky, although possible. In addition, obvious loops
* didn't work as expected. (The command ':ab a b|ab b c|ab c a' will
* silently only implement and/or display the last abbreviation.)
*
* This implementation doesn't recover well from such abbreviations.
* The main input loop counts abbreviated characters, and, when it
* reaches a limit, discards any abbreviated characters on the queue.
* It's difficult to back up to the original position, as the replay
* queue would have to be adjusted, and the line state when an initial
* abbreviated character was received would have to be saved.
*/
ch = *pushcp;
if (v_event_push(sp, NULL, &ch, 1, CH_ABBREVIATED))
return (1);
if (v_event_push(sp, NULL, qp->output, qp->olen, CH_ABBREVIATED))
return (1);
/*
* If the size of the abbreviation is larger than or equal to the size
* of the original text, move to the start of the replaced characters,
* and add their length to the overwrite count.
*
* If the abbreviation is smaller than the original text, we have to
* delete the additional overwrite characters and copy down any insert
* characters.
*/
tp->cno -= len;
if (qp->olen >= len)
tp->owrite += len;
else {
if (tp->insert)
memmove(tp->lb + tp->cno + qp->olen,
tp->lb + tp->cno + tp->owrite + len, tp->insert);
tp->owrite += qp->olen;
tp->len -= len - qp->olen;
}
/*
* We return the length of the abbreviated characters. This is so
* the calling routine can replace the replay characters with the
* abbreviation. This means that subsequent '.' commands will produce
* the same text, regardless of intervening :[un]abbreviate commands.
* This is historic practice.
*/
*didsubp = len;
return (0);
}
/*
* txt_unmap --
* Handle the unmap command.
*/
static void
txt_unmap(sp, tp, ec_flagsp)
SCR *sp;
TEXT *tp;
u_int32_t *ec_flagsp;
{
size_t len, off;
char *p;
/* Find the beginning of this "word". */
for (off = tp->cno - 1, p = tp->lb + off, len = 0;; --p, --off) {
if (isblank(*p)) {
++p;
break;
}
++len;
if (off == tp->ai || off == tp->offset)
break;
}
/*
* !!!
* Historic vi exploded input mappings on the command line. See the
* txt_abbrev() routine for an explanation of the problems inherent
* in this.
*
* We make this work as follows. If we get a string which is <blank>
* terminated and which starts at the beginning of the line, we check
* to see it is the unmap command. If it is, we return that the input
* mapping should be turned off. Note also, minor trickiness, so that
* if the user erases the line and starts another command, we go ahead
* an turn mapping back on.
*/
if ((off == tp->ai || off == tp->offset) && ex_is_unmap(p, len))
FL_CLR(*ec_flagsp, EC_MAPINPUT);
else
FL_SET(*ec_flagsp, EC_MAPINPUT);
}
/*
* txt_ai_resolve --
* When a line is resolved by <esc>, review autoindent characters.
*/
static void
txt_ai_resolve(sp, tp, changedp)
SCR *sp;
TEXT *tp;
int *changedp;
{
u_long ts;
int del;
size_t cno, len, new, old, scno, spaces, tab_after_sp, tabs;
char *p;
*changedp = 0;
/*
* If the line is empty, has an offset, or no autoindent
* characters, we're done.
*/
if (!tp->len || tp->offset || !tp->ai)
return;
/*
* If the length is less than or equal to the autoindent
* characters, delete them.
*/
if (tp->len <= tp->ai) {
tp->ai = tp->cno = tp->len = 0;
return;
}
/*
* The autoindent characters plus any leading <blank> characters
* in the line are resolved into the minimum number of characters.
* Historic practice.
*/
ts = O_VAL(sp, O_TABSTOP);
/* Figure out the last <blank> screen column. */
for (p = tp->lb, scno = 0, len = tp->len,
spaces = tab_after_sp = 0; len-- && isblank(*p); ++p)
if (*p == '\t') {
if (spaces)
tab_after_sp = 1;
scno += COL_OFF(scno, ts);
} else {
++spaces;
++scno;
}
/*
* If there are no spaces, or no tabs after spaces and less than
* ts spaces, it's already minimal.
*/
if (!spaces || !tab_after_sp && spaces < ts)
return;
/* Count up spaces/tabs needed to get to the target. */
for (cno = 0, tabs = 0; cno + COL_OFF(cno, ts) <= scno; ++tabs)
cno += COL_OFF(cno, ts);
spaces = scno - cno;
/*
* Figure out how many characters we're dropping -- if we're not
* dropping any, it's already minimal, we're done.
*/
old = p - tp->lb;
new = spaces + tabs;
if (old == new)
return;
/* Shift the rest of the characters down, adjust the counts. */
del = old - new;
memmove(p - del, p, tp->len - old);
tp->len -= del;
tp->cno -= del;
/* Fill in space/tab characters. */
for (p = tp->lb; tabs--;)
*p++ = '\t';
while (spaces--)
*p++ = ' ';
*changedp = 1;
}
/*
* v_txt_auto --
* Handle autoindent. If aitp isn't NULL, use it, otherwise,
* retrieve the line.
*
* PUBLIC: int v_txt_auto __P((SCR *, recno_t, TEXT *, size_t, TEXT *));
*/
int
v_txt_auto(sp, lno, aitp, len, tp)
SCR *sp;
recno_t lno;
TEXT *aitp, *tp;
size_t len;
{
size_t nlen;
char *p, *t;
if (aitp == NULL) {
/*
* If the ex append command is executed with an address of 0,
* it's possible to get here with a line number of 0. Return
* an indent of 0.
*/
if (lno == 0) {
tp->ai = 0;
return (0);
}
if (db_get(sp, lno, DBG_FATAL, &t, &len))
return (1);
} else
t = aitp->lb;
/* Count whitespace characters. */
for (p = t; len > 0; ++p, --len)
if (!isblank(*p))
break;
/* Set count, check for no indentation. */
if ((nlen = (p - t)) == 0)
return (0);
/* Make sure the buffer's big enough. */
BINC_RET(sp, tp->lb, tp->lb_len, tp->len + nlen);
/* Copy the buffer's current contents up. */
if (tp->len != 0)
memmove(tp->lb + nlen, tp->lb, tp->len);
tp->len += nlen;
/* Copy the indentation into the new buffer. */
memmove(tp->lb, t, nlen);
/* Set the autoindent count. */
tp->ai = nlen;
return (0);
}
/*
* txt_backup --
* Back up to the previously edited line.
*/
static TEXT *
txt_backup(sp, tiqh, tp, flagsp)
SCR *sp;
TEXTH *tiqh;
TEXT *tp;
u_int32_t *flagsp;
{
VI_PRIVATE *vip;
TEXT *ntp;
/* Get a handle on the previous TEXT structure. */
if ((ntp = tp->q.cqe_prev) == (void *)tiqh) {
if (!FL_ISSET(*flagsp, TXT_REPLAY))
msgq(sp, M_BERR,
"193|Already at the beginning of the insert");
return (tp);
}
/* Bookkeeping. */
ntp->len = ntp->sv_len;
/* Handle appending to the line. */
vip = VIP(sp);
if (ntp->owrite == 0 && ntp->insert == 0) {
ntp->lb[ntp->len] = CH_CURSOR;
++ntp->insert;
++ntp->len;
FL_SET(*flagsp, TXT_APPENDEOL);
} else
FL_CLR(*flagsp, TXT_APPENDEOL);
/* Release the current TEXT. */
CIRCLEQ_REMOVE(tiqh, tp, q);
text_free(tp);
/* Update the old line on the screen. */
if (vs_change(sp, ntp->lno + 1, LINE_DELETE))
return (NULL);
/* Return the new/current TEXT. */
return (ntp);
}
/*
* Text indentation is truly strange. ^T and ^D do movements to the next or
* previous shiftwidth value, i.e. for a 1-based numbering, with shiftwidth=3,
* ^T moves a cursor on the 7th, 8th or 9th column to the 10th column, and ^D
* moves it back.
*
* !!!
* The ^T and ^D characters in historical vi had special meaning only when they
* were the first characters entered after entering text input mode. As normal
* erase characters couldn't erase autoindent characters (^T in this case), it
* meant that inserting text into previously existing text was strange -- ^T
* only worked if it was the first keystroke(s), and then could only be erased
* using ^D. This implementation treats ^T specially anywhere it occurs in the
* input, and permits the standard erase characters to erase the characters it
* inserts.
*
* !!!
* A fun test is to try:
* :se sw=4 ai list
* i<CR>^Tx<CR>^Tx<CR>^Tx<CR>^Dx<CR>^Dx<CR>^Dx<esc>
* Historic vi loses some of the '$' marks on the line ends, but otherwise gets
* it right.
*
* XXX
* Technically, txt_dent should be part of the screen interface, as it requires
* knowledge of character sizes, including <space>s, on the screen. It's here
* because it's a complicated little beast, and I didn't want to shove it down
* into the screen. It's probable that KEY_LEN will call into the screen once
* there are screens with different character representations.
*
* txt_dent --
* Handle ^T indents, ^D outdents.
*
* If anything changes here, check the ex version to see if it needs similar
* changes.
*/
static int
txt_dent(sp, tp, isindent)
SCR *sp;
TEXT *tp;
int isindent;
{
CHAR_T ch;
u_long sw, ts;
size_t cno, current, spaces, target, tabs, off;
int ai_reset;
ts = O_VAL(sp, O_TABSTOP);
sw = O_VAL(sp, O_SHIFTWIDTH);
/*
* Since we don't know what precedes the character(s) being inserted
* (or deleted), the preceding whitespace characters must be resolved.
* An example is a <tab>, which doesn't need a full shiftwidth number
* of columns because it's preceded by <space>s. This is easy to get
* if the user sets shiftwidth to a value less than tabstop (or worse,
* something for which tabstop isn't a multiple) and then uses ^T to
* indent, and ^D to outdent.
*
* Figure out the current and target screen columns. In the historic
* vi, the autoindent column was NOT determined using display widths
* of characters as was the wrapmargin column. For that reason, we
* can't use the vs_column() function, but have to calculate it here.
* This is slow, but it's normally only on the first few characters of
* a line.
*/
for (current = cno = 0; cno < tp->cno; ++cno)
current += tp->lb[cno] == '\t' ?
COL_OFF(current, ts) : KEY_LEN(sp, tp->lb[cno]);
target = current;
if (isindent)
target += COL_OFF(target, sw);
else
target -= --target % sw;
/*
* The AI characters will be turned into overwrite characters if the
* cursor immediately follows them. We test both the cursor position
* and the indent flag because there's no single test. (^T can only
* be detected by the cursor position, and while we know that the test
* is always true for ^D, the cursor can be in more than one place, as
* "0^D" and "^D" are different.)
*/
ai_reset = !isindent || tp->cno == tp->ai + tp->offset;
/*
* Back up over any previous <blank> characters, changing them into
* overwrite characters (including any ai characters). Then figure
* out the current screen column.
*/
for (; tp->cno > tp->offset &&
(tp->lb[tp->cno - 1] == ' ' || tp->lb[tp->cno - 1] == '\t');
--tp->cno, ++tp->owrite);
for (current = cno = 0; cno < tp->cno; ++cno)
current += tp->lb[cno] == '\t' ?
COL_OFF(current, ts) : KEY_LEN(sp, tp->lb[cno]);
/*
* If we didn't move up to or past the target, it's because there
* weren't enough characters to delete, e.g. the first character
* of the line was a tp->offset character, and the user entered
* ^D to move to the beginning of a line. An example of this is:
*
* :set ai sw=4<cr>i<space>a<esc>i^T^D
*
* Otherwise, count up the total spaces/tabs needed to get from the
* beginning of the line (or the last non-<blank> character) to the
* target.
*/
if (current >= target)
spaces = tabs = 0;
else {
for (cno = current,
tabs = 0; cno + COL_OFF(cno, ts) <= target; ++tabs)
cno += COL_OFF(cno, ts);
spaces = target - cno;
}
/* If we overwrote ai characters, reset the ai count. */
if (ai_reset)
tp->ai = tabs + spaces;
/*
* Call txt_insch() to insert each character, so that we get the
* correct effect when we add a <tab> to replace N <spaces>.
*/
for (ch = '\t'; tabs > 0; --tabs)
(void)txt_insch(sp, tp, &ch, 0);
for (ch = ' '; spaces > 0; --spaces)
(void)txt_insch(sp, tp, &ch, 0);
return (0);
}
/*
* txt_fc --
* File name completion.
*/
static int
txt_fc(sp, tp, redrawp)
SCR *sp;
TEXT *tp;
int *redrawp;
{
struct stat sb;
ARGS **argv;
CHAR_T s_ch;
EXCMD cmd;
size_t indx, len, nlen, off;
int argc, trydir;
char *p, *t;
trydir = 0;
*redrawp = 0;
/*
* Find the beginning of this "word" -- if we're at the beginning
* of the line, it's a special case.
*/
if (tp->cno == 1) {
len = 0;
p = tp->lb;
} else
retry: for (len = 0,
off = tp->cno - 1, p = tp->lb + off;; --off, --p) {
if (isblank(*p)) {
++p;
break;
}
++len;
if (off == tp->ai || off == tp->offset)
break;
}
/*
* Get enough space for a wildcard character.
*
* XXX
* This won't work for "foo\", since the \ will escape the expansion
* character. I'm not sure if that's a bug or not...
*/
off = p - tp->lb;
BINC_RET(sp, tp->lb, tp->lb_len, tp->len + 1);
p = tp->lb + off;
s_ch = p[len];
p[len] = '*';
/* Build an ex command, and call the ex expansion routines. */
ex_cinit(&cmd, 0, 0, OOBLNO, OOBLNO, 0, NULL);
if (argv_init(sp, &cmd))
return (1);
if (argv_exp2(sp, &cmd, p, len + 1)) {
p[len] = s_ch;
return (0);
}
argc = cmd.argc;
argv = cmd.argv;
p[len] = s_ch;
switch (argc) {
case 0: /* No matches. */
if (!trydir)
(void)sp->gp->scr_bell(sp);
return (0);
case 1: /* One match. */
/* If something changed, do the exchange. */
nlen = strlen(cmd.argv[0]->bp);
if (len != nlen || memcmp(cmd.argv[0]->bp, p, len))
break;
/* If haven't done a directory test, do it now. */
if (!trydir &&
!stat(cmd.argv[0]->bp, &sb) && S_ISDIR(sb.st_mode)) {
p += len;
goto isdir;
}
/* If nothing changed, period, ring the bell. */
if (!trydir)
(void)sp->gp->scr_bell(sp);
return (0);
default: /* Multiple matches. */
*redrawp = 1;
if (txt_fc_col(sp, argc, argv))
return (1);
/* Find the length of the shortest match. */
for (nlen = cmd.argv[0]->len; --argc > 0;) {
if (cmd.argv[argc]->len < nlen)
nlen = cmd.argv[argc]->len;
for (indx = 0; indx < nlen &&
cmd.argv[argc]->bp[indx] == cmd.argv[0]->bp[indx];
++indx);
nlen = indx;
}
break;
}
/* Overwrite the expanded text first. */
for (t = cmd.argv[0]->bp; len > 0 && nlen > 0; --len, --nlen)
*p++ = *t++;
/* If lost text, make the remaining old text overwrite characters. */
if (len) {
tp->cno -= len;
tp->owrite += len;
}
/* Overwrite any overwrite characters next. */
for (; nlen > 0 && tp->owrite > 0; --nlen, --tp->owrite, ++tp->cno)
*p++ = *t++;
/* Shift remaining text up, and move the cursor to the end. */
if (nlen) {
off = p - tp->lb;
BINC_RET(sp, tp->lb, tp->lb_len, tp->len + nlen);
p = tp->lb + off;
tp->cno += nlen;
tp->len += nlen;
if (tp->insert != 0)
(void)memmove(p + nlen, p, tp->insert);
while (nlen--)
*p++ = *t++;
}
/* If a single match and it's a directory, retry it. */
if (argc == 1 && !stat(cmd.argv[0]->bp, &sb) && S_ISDIR(sb.st_mode)) {
isdir: if (tp->owrite == 0) {
off = p - tp->lb;
BINC_RET(sp, tp->lb, tp->lb_len, tp->len + 1);
p = tp->lb + off;
if (tp->insert != 0)
(void)memmove(p + 1, p, tp->insert);
++tp->len;
} else
--tp->owrite;
++tp->cno;
*p++ = '/';
trydir = 1;
goto retry;
}
return (0);
}
/*
* txt_fc_col --
* Display file names for file name completion.
*/
static int
txt_fc_col(sp, argc, argv)
SCR *sp;
int argc;
ARGS **argv;
{
ARGS **av;
CHAR_T *p;
GS *gp;
size_t base, cnt, col, colwidth, numrows, numcols, prefix, row;
int ac, nf, reset;
gp = sp->gp;
/* Trim any directory prefix common to all of the files. */
if ((p = strrchr(argv[0]->bp, '/')) == NULL)
prefix = 0;
else {
prefix = (p - argv[0]->bp) + 1;
for (ac = argc - 1, av = argv + 1; ac > 0; --ac, ++av)
if (av[0]->len < prefix ||
memcmp(av[0]->bp, argv[0]->bp, prefix)) {
prefix = 0;
break;
}
}
/*
* Figure out the column width for the longest name. Output is done on
* 6 character "tab" boundaries for no particular reason. (Since we
* don't output tab characters, we ignore the terminal's tab settings.)
* Ignore the user's tab setting because we have no idea how reasonable
* it is.
*/
for (ac = argc, av = argv, colwidth = 0; ac > 0; --ac, ++av) {
for (col = 0, p = av[0]->bp + prefix; *p != '\0'; ++p)
col += KEY_LEN(sp, *p);
if (col > colwidth)
colwidth = col;
}
colwidth += COL_OFF(colwidth, 6);
/*
* Writing to the bottom line of the screen is always turned off when
* SC_TINPUT_INFO is set. Turn it back on, we know what we're doing.
*/
if (F_ISSET(sp, SC_TINPUT_INFO)) {
reset = 1;
F_CLR(sp, SC_TINPUT_INFO);
} else
reset = 0;
#define CHK_INTR \
if (F_ISSET(gp, G_INTERRUPTED)) \
goto intr;
/* If the largest file name is too large, just print them. */
if (colwidth > sp->cols) {
p = msg_print(sp, av[0]->bp + prefix, &nf);
for (ac = argc, av = argv; ac > 0; --ac, ++av) {
(void)ex_printf(sp, "%s\n", p);
if (F_ISSET(gp, G_INTERRUPTED))
break;
}
if (nf)
FREE_SPACE(sp, p, 0);
CHK_INTR;
} else {
/* Figure out the number of columns. */
numcols = (sp->cols - 1) / colwidth;
if (argc > numcols) {
numrows = argc / numcols;
if (argc % numcols)
++numrows;
} else
numrows = 1;
/* Display the files in sorted order. */
for (row = 0; row < numrows; ++row) {
for (base = row, col = 0; col < numcols; ++col) {
p = msg_print(sp, argv[base]->bp + prefix, &nf);
cnt = ex_printf(sp, "%s", p);
if (nf)
FREE_SPACE(sp, p, 0);
CHK_INTR;
if ((base += numrows) >= argc)
break;
(void)ex_printf(sp,
"%*s", (int)(colwidth - cnt), "");
CHK_INTR;
}
(void)ex_puts(sp, "\n");
CHK_INTR;
}
(void)ex_puts(sp, "\n");
CHK_INTR;
}
(void)ex_fflush(sp);
if (0) {
intr: F_CLR(gp, G_INTERRUPTED);
}
if (reset)
F_SET(sp, SC_TINPUT_INFO);
return (0);
}
/*
* txt_emark --
* Set the end mark on the line.
*/
static int
txt_emark(sp, tp, cno)
SCR *sp;
TEXT *tp;
size_t cno;
{
CHAR_T ch, *kp;
size_t chlen, nlen, olen;
char *p;
ch = CH_ENDMARK;
/*
* The end mark may not be the same size as the current character.
* Don't let the line shift.
*/
nlen = KEY_LEN(sp, ch);
if (tp->lb[cno] == '\t')
(void)vs_columns(sp, tp->lb, tp->lno, &cno, &olen);
else
olen = KEY_LEN(sp, tp->lb[cno]);
/*
* If the line got longer, well, it's weird, but it's easy. If
* it's the same length, it's easy. If it got shorter, we have
* to fix it up.
*/
if (olen > nlen) {
BINC_RET(sp, tp->lb, tp->lb_len, tp->len + olen);
chlen = olen - nlen;
if (tp->insert != 0)
memmove(tp->lb + cno + 1 + chlen,
tp->lb + cno + 1, tp->insert);
tp->len += chlen;
tp->owrite += chlen;
p = tp->lb + cno;
if (tp->lb[cno] == '\t')
for (cno += chlen; chlen--;)
*p++ = ' ';
else
for (kp = KEY_NAME(sp, tp->lb[cno]),
cno += chlen; chlen--;)
*p++ = *kp++;
}
tp->lb[cno] = ch;
return (vs_change(sp, tp->lno, LINE_RESET));
}
/*
* txt_err --
* Handle an error during input processing.
*/
static void
txt_err(sp, tiqh)
SCR *sp;
TEXTH *tiqh;
{
recno_t lno;
/*
* The problem with input processing is that the cursor is at an
* indeterminate position since some input may have been lost due
* to a malloc error. So, try to go back to the place from which
* the cursor started, knowing that it may no longer be available.
*
* We depend on at least one line number being set in the text
* chain.
*/
for (lno = tiqh->cqh_first->lno;
!db_exist(sp, lno) && lno > 0; --lno);
sp->lno = lno == 0 ? 1 : lno;
sp->cno = 0;
/* Redraw the screen, just in case. */
F_SET(sp, SC_SCR_REDRAW);
}
/*
* txt_hex --
* Let the user insert any character value they want.
*
* !!!
* This is an extension. The pattern "^X[0-9a-fA-F]*" is a way
* for the user to specify a character value which their keyboard
* may not be able to enter.
*/
static int
txt_hex(sp, tp)
SCR *sp;
TEXT *tp;
{
CHAR_T savec;
size_t len, off;
u_long value;
char *p, *wp;
/*
* Null-terminate the string. Since nul isn't a legal hex value,
* this should be okay, and lets us use a local routine, which
* presumably understands the character set, to convert the value.
*/
savec = tp->lb[tp->cno];
tp->lb[tp->cno] = 0;
/* Find the previous CH_HEX character. */
for (off = tp->cno - 1, p = tp->lb + off, len = 0;; --p, --off, ++len) {
if (*p == CH_HEX) {
wp = p + 1;
break;
}
/* Not on this line? Shouldn't happen. */
if (off == tp->ai || off == tp->offset)
goto nothex;
}
/* If length of 0, then it wasn't a hex value. */
if (len == 0)
goto nothex;
/* Get the value. */
errno = 0;
value = strtol(wp, NULL, 16);
if (errno || value > MAX_CHAR_T) {
nothex: tp->lb[tp->cno] = savec;
return (0);
}
/* Restore the original character. */
tp->lb[tp->cno] = savec;
/* Adjust the bookkeeping. */
tp->cno -= len;
tp->len -= len;
tp->lb[tp->cno - 1] = value;
/* Copy down any overwrite characters. */
if (tp->owrite)
memmove(tp->lb + tp->cno, tp->lb + tp->cno + len, tp->owrite);
/* Copy down any insert characters. */
if (tp->insert)
memmove(tp->lb + tp->cno + tp->owrite,
tp->lb + tp->cno + tp->owrite + len, tp->insert);
return (0);
}
/*
* txt_insch --
*
* !!!
* Historic vi did a special screen optimization for tab characters. As an
* example, for the keystrokes "iabcd<esc>0C<tab>", the tab overwrote the
* rest of the string when it was displayed.
*
* Because early versions of this implementation redisplayed the entire line
* on each keystroke, the "bcd" was pushed to the right as it ignored that
* the user had "promised" to change the rest of the characters. However,
* the historic vi implementation had an even worse bug: given the keystrokes
* "iabcd<esc>0R<tab><esc>", the "bcd" disappears, and magically reappears
* on the second <esc> key.
*
* POSIX 1003.2 requires (will require) that this be fixed, specifying that
* vi overwrite characters the user has committed to changing, on the basis
* of the screen space they require, but that it not overwrite other characters.
*/
static int
txt_insch(sp, tp, chp, flags)
SCR *sp;
TEXT *tp;
CHAR_T *chp;
u_int flags;
{
CHAR_T *kp, savech;
size_t chlen, cno, copydown, olen, nlen;
char *p;
/*
* This probably isn't the best place for the Vigor handling.
* More particularly, we should ideally ensure that the screen
* is up-to-date at this point. However, I have completely ignored
* screen updates in Vigor so far, so I suppose I can carry on
* this perfectly fine tradition.
*/
vigor_gotchar(*chp);
/*
* The 'R' command does one-for-one replacement, because there's
* no way to know how many characters the user intends to replace.
*/
if (LF_ISSET(TXT_REPLACE)) {
if (tp->owrite) {
--tp->owrite;
tp->lb[tp->cno++] = *chp;
return (0);
}
} else if (tp->owrite) { /* Overwrite a character. */
cno = tp->cno;
/*
* If the old or new characters are tabs, then the length of the
* display depends on the character position in the display. We
* don't even try to handle this here, just ask the screen.
*/
if (*chp == '\t') {
savech = tp->lb[cno];
tp->lb[cno] = '\t';
(void)vs_columns(sp, tp->lb, tp->lno, &cno, &nlen);
tp->lb[cno] = savech;
} else
nlen = KEY_LEN(sp, *chp);
/*
* Eat overwrite characters until we run out of them or we've
* handled the length of the new character. If we only eat
* part of an overwrite character, break it into its component
* elements and display the remaining components.
*/
for (copydown = 0; nlen != 0 && tp->owrite != 0;) {
--tp->owrite;
if (tp->lb[cno] == '\t')
(void)vs_columns(sp,
tp->lb, tp->lno, &cno, &olen);
else
olen = KEY_LEN(sp, tp->lb[cno]);
if (olen == nlen) {
nlen = 0;
break;
}
if (olen < nlen) {
++copydown;
nlen -= olen;
} else {
BINC_RET(sp,
tp->lb, tp->lb_len, tp->len + olen);
chlen = olen - nlen;
memmove(tp->lb + cno + 1 + chlen,
tp->lb + cno + 1, tp->owrite + tp->insert);
tp->len += chlen;
tp->owrite += chlen;
if (tp->lb[cno] == '\t')
for (p = tp->lb + cno + 1; chlen--;)
*p++ = ' ';
else
for (kp =
KEY_NAME(sp, tp->lb[cno]) + nlen,
p = tp->lb + cno + 1; chlen--;)
*p++ = *kp++;
nlen = 0;
break;
}
}
/*
* If had to erase several characters, we adjust the total
* count, and if there are any characters left, shift them
* into position.
*/
if (copydown != 0 && (tp->len -= copydown) != 0)
memmove(tp->lb + cno, tp->lb + cno + copydown,
tp->owrite + tp->insert + copydown);
/* If we had enough overwrite characters, we're done. */
if (nlen == 0) {
tp->lb[tp->cno++] = *chp;
return (0);
}
}
/* Check to see if the character fits into the input buffer. */
BINC_RET(sp, tp->lb, tp->lb_len, tp->len + 1);
++tp->len;
if (tp->insert) { /* Insert a character. */
if (tp->insert == 1)
tp->lb[tp->cno + 1] = tp->lb[tp->cno];
else
memmove(tp->lb + tp->cno + 1,
tp->lb + tp->cno, tp->owrite + tp->insert);
}
tp->lb[tp->cno++] = *chp;
return (0);
}
/*
* txt_isrch --
* Do an incremental search.
*/
static int
txt_isrch(sp, vp, tp, is_flagsp)
SCR *sp;
VICMD *vp;
TEXT *tp;
u_int8_t *is_flagsp;
{
MARK start;
recno_t lno;
u_int sf;
/* If it's a one-line screen, we don't do incrementals. */
if (IS_ONELINE(sp)) {
FL_CLR(*is_flagsp, IS_RUNNING);
return (0);
}
/*
* If the user erases back to the beginning of the buffer, there's
* nothing to search for. Reset the cursor to the starting point.
*/
if (tp->cno <= 1) {
vp->m_final = vp->m_start;
return (0);
}
/*
* If it's an RE quote character, and not quoted, ignore it until
* we get another character.
*/
if (tp->lb[tp->cno - 1] == '\\' &&
(tp->cno == 2 || tp->lb[tp->cno - 2] != '\\'))
return (0);
/*
* If it's a magic shell character, and not quoted, reset the cursor
* to the starting point.
*/
if (strchr(O_STR(sp, O_SHELLMETA), tp->lb[tp->cno - 1]) != NULL &&
(tp->cno == 2 || tp->lb[tp->cno - 2] != '\\'))
vp->m_final = vp->m_start;
/*
* If we see the search pattern termination character, then quit doing
* an incremental search. There may be more, e.g., ":/foo/;/bar/",
* and we can't handle that incrementally. Also, reset the cursor to
* the original location, the ex search routines don't know anything
* about incremental searches.
*/
if (tp->lb[0] == tp->lb[tp->cno - 1] &&
(tp->cno == 2 || tp->lb[tp->cno - 2] != '\\')) {
vp->m_final = vp->m_start;
FL_CLR(*is_flagsp, IS_RUNNING);
return (0);
}
/*
* Remember the input line and discard the special input map,
* but don't overwrite the input line on the screen.
*/
lno = tp->lno;
F_SET(VIP(sp), VIP_S_MODELINE);
F_CLR(sp, SC_TINPUT | SC_TINPUT_INFO);
if (txt_map_end(sp))
return (1);
/*
* Specify a starting point and search. If we find a match, move to
* it and refresh the screen. If we didn't find the match, then we
* beep the screen. When searching from the original cursor position,
* we have to move the cursor, otherwise, we don't want to move the
* cursor in case the text at the current position continues to match.
*/
if (FL_ISSET(*is_flagsp, IS_RESTART)) {
start = vp->m_start;
sf = SEARCH_SET;
} else {
start = vp->m_final;
sf = SEARCH_INCR | SEARCH_SET;
}
if (tp->lb[0] == '/' ?
!f_search(sp,
&start, &vp->m_final, tp->lb + 1, tp->cno - 1, NULL, sf) :
!b_search(sp,
&start, &vp->m_final, tp->lb + 1, tp->cno - 1, NULL, sf)) {
sp->lno = vp->m_final.lno;
sp->cno = vp->m_final.cno;
FL_CLR(*is_flagsp, IS_RESTART);
if (!KEYS_WAITING(sp) && vs_refresh(sp, 0))
return (1);
} else
FL_SET(*is_flagsp, IS_RESTART);
/* Reinstantiate the special input map. */
if (txt_map_init(sp))
return (1);
F_CLR(VIP(sp), VIP_S_MODELINE);
F_SET(sp, SC_TINPUT | SC_TINPUT_INFO);
/* Reset the line number of the input line. */
tp->lno = TMAP[0].lno;
/*
* If the colon command-line moved, i.e. the screen scrolled,
* refresh the input line.
*
* XXX
* We shouldn't be calling vs_line, here -- we need dirty bits
* on entries in the SMAP array.
*/
if (lno != TMAP[0].lno) {
if (vs_line(sp, &TMAP[0], NULL, NULL))
return (1);
(void)sp->gp->scr_refresh(sp, 0);
}
return (0);
}
/*
* txt_resolve --
* Resolve the input text chain into the file.
*/
static int
txt_resolve(sp, tiqh, flags)
SCR *sp;
TEXTH *tiqh;
u_int32_t flags;
{
VI_PRIVATE *vip;
TEXT *tp;
recno_t lno;
int changed;
/*
* The first line replaces a current line, and all subsequent lines
* are appended into the file. Resolve autoindented characters for
* each line before committing it. If the latter causes the line to
* change, we have to redisplay it, otherwise the information cached
* about the line will be wrong.
*/
vip = VIP(sp);
tp = tiqh->cqh_first;
if (LF_ISSET(TXT_AUTOINDENT))
txt_ai_resolve(sp, tp, &changed);
else
changed = 0;
if (db_set(sp, tp->lno, tp->lb, tp->len) ||
changed && vs_change(sp, tp->lno, LINE_RESET))
return (1);
for (lno = tp->lno; (tp = tp->q.cqe_next) != (void *)&sp->tiq; ++lno) {
if (LF_ISSET(TXT_AUTOINDENT))
txt_ai_resolve(sp, tp, &changed);
else
changed = 0;
if (db_append(sp, 0, lno, tp->lb, tp->len) ||
changed && vs_change(sp, tp->lno, LINE_RESET))
return (1);
}
/*
* Clear the input flag, the look-aside buffer is no longer valid.
* Has to be done as part of text resolution, or upon return we'll
* be looking at incorrect data.
*/
F_CLR(sp, SC_TINPUT);
return (0);
}
/*
* txt_showmatch --
* Show a character match.
*
* !!!
* Historic vi tried to display matches even in the :colon command line.
* I think not.
*/
static int
txt_showmatch(sp, tp)
SCR *sp;
TEXT *tp;
{
GS *gp;
VCS cs;
MARK m;
int cnt, endc, startc;
gp = sp->gp;
/*
* Do a refresh first, in case we haven't done one in awhile,
* so the user can see what we're complaining about.
*/
UPDATE_POSITION(sp, tp);
if (vs_refresh(sp, 1))
return (1);
/*
* We don't display the match if it's not on the screen. Find
* out what the first character on the screen is.
*/
if (vs_sm_position(sp, &m, 0, P_TOP))
return (1);
/* Initialize the getc() interface. */
cs.cs_lno = tp->lno;
cs.cs_cno = tp->cno - 1;
if (cs_init(sp, &cs))
return (1);
startc = (endc = cs.cs_ch) == ')' ? '(' : '{';
/* Search for the match. */
for (cnt = 1;;) {
if (cs_prev(sp, &cs))
return (1);
if (cs.cs_flags != 0) {
if (cs.cs_flags == CS_EOF || cs.cs_flags == CS_SOF) {
msgq(sp, M_BERR,
"Unmatched %s", KEY_NAME(sp, endc));
return (0);
}
continue;
}
if (cs.cs_ch == endc)
++cnt;
else if (cs.cs_ch == startc && --cnt == 0)
break;
}
/* If the match is on the screen, move to it. */
if (cs.cs_lno < m.lno || cs.cs_lno == m.lno && cs.cs_cno < m.cno)
return (0);
sp->lno = cs.cs_lno;
sp->cno = cs.cs_cno;
if (vs_refresh(sp, 1))
return (1);
/* Wait for timeout or character arrival. */
return (v_event_get(sp,
NULL, O_VAL(sp, O_MATCHTIME) * 100, EC_TIMEOUT));
}
/*
* txt_margin --
* Handle margin wrap.
*/
static int
txt_margin(sp, tp, wmtp, didbreak, flags)
SCR *sp;
TEXT *tp, *wmtp;
int *didbreak;
u_int32_t flags;
{
VI_PRIVATE *vip;
size_t len, off;
char *p, *wp;
/* Find the nearest previous blank. */
for (off = tp->cno - 1, p = tp->lb + off, len = 0;; --off, --p, ++len) {
if (isblank(*p)) {
wp = p + 1;
break;
}
/*
* If reach the start of the line, there's nowhere to break.
*
* !!!
* Historic vi belled each time a character was entered after
* crossing the margin until a space was entered which could
* be used to break the line. I don't as it tends to wake the
* cats.
*/
if (off == tp->ai || off == tp->offset) {
*didbreak = 0;
return (0);
}
}
/*
* Store saved information about the rest of the line in the
* wrapmargin TEXT structure.
*
* !!!
* The offset field holds the length of the current characters
* that the user entered, but which are getting split to the new
* line -- it's going to be used to set the cursor value when we
* move to the new line.
*/
vip = VIP(sp);
wmtp->lb = p + 1;
wmtp->offset = len;
wmtp->insert = LF_ISSET(TXT_APPENDEOL) ? tp->insert - 1 : tp->insert;
wmtp->owrite = tp->owrite;
/* Correct current bookkeeping information. */
tp->cno -= len;
if (LF_ISSET(TXT_APPENDEOL)) {
tp->len -= len + tp->owrite + (tp->insert - 1);
tp->insert = 1;
} else {
tp->len -= len + tp->owrite + tp->insert;
tp->insert = 0;
}
tp->owrite = 0;
/*
* !!!
* Delete any trailing whitespace from the current line.
*/
for (;; --p, --off) {
if (!isblank(*p))
break;
--tp->cno;
--tp->len;
if (off == tp->ai || off == tp->offset)
break;
}
*didbreak = 1;
return (0);
}
/*
* txt_Rresolve --
* Resolve the input line for the 'R' command.
*/
static void
txt_Rresolve(sp, tiqh, tp, orig_len)
SCR *sp;
TEXTH *tiqh;
TEXT *tp;
const size_t orig_len;
{
TEXT *ttp;
size_t input_len, retain;
char *p;
/*
* Check to make sure that the cursor hasn't moved beyond
* the end of the line.
*/
if (tp->owrite == 0)
return;
/*
* Calculate how many characters the user has entered,
* plus the blanks erased by <carriage-return>/<newline>s.
*/
for (ttp = tiqh->cqh_first, input_len = 0;;) {
input_len += ttp == tp ? tp->cno : ttp->len + ttp->R_erase;
if ((ttp = ttp->q.cqe_next) == (void *)&sp->tiq)
break;
}
/*
* If the user has entered less characters than the original line
* was long, restore any overwriteable characters to the original
* characters. These characters are entered as "insert characters",
* because they're after the cursor and we don't want to lose them.
* (This is okay because the R command has no insert characters.)
* We set owrite to 0 so that the insert characters don't get copied
* to somewhere else, which means that the line and the length have
* to be adjusted here as well.
*
* We have to retrieve the original line because the original pinned
* page has long since been discarded. If it doesn't exist, that's
* okay, the user just extended the file.
*/
if (input_len < orig_len) {
retain = MIN(tp->owrite, orig_len - input_len);
if (db_get(sp,
tiqh->cqh_first->lno, DBG_FATAL | DBG_NOCACHE, &p, NULL))
return;
memcpy(tp->lb + tp->cno, p + input_len, retain);
tp->len -= tp->owrite - retain;
tp->owrite = 0;
tp->insert += retain;
}
}
/*
* txt_nomorech --
* No more characters message.
*/
static void
txt_nomorech(sp)
SCR *sp;
{
msgq(sp, M_BERR, "194|No more characters to erase");
}
|