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 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143
|
;;; matlab.el --- major mode for MATLAB(R) dot-m files -*- lexical-binding: t -*-
;; Copyright (C) 2024 Free Software Foundation, Inc.
;; Version: 6.3
;; URL: https://github.com/mathworks/Emacs-MATLAB-Mode
;; SPDX-License-Identifier: GPL-3.0-or-later
;; Author: Matt Wette <mwette@alumni.caltech.edu>,
;; Eric M. Ludlam <eludlam@mathworks.com>
;; Maintainer: Eric M. Ludlam <eludlam@mathworks.com>, Uwe Brauer <oub@mat.ucm.es>
;; Created: 04 Jan 91
;; Keywords: MATLAB(R)
;; Package-Requires: ((emacs "27.2"))
(defconst matlab-mode-version "6.3"
"Current version of MATLAB(R) mode.")
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;
;;; Commentary:
;;
;; This major mode for GNU Emacs provides support for editing MATLAB(R) dot-m
;; files. It automatically indents for block structures (including nested
;; functions), line continuations (e.g., ...), and comments.
;;
;; Additional features include auto-fill including auto-additions of
;; ellipsis for commands, and even strings. Block/end construct
;; highlighting as you edit. Primitive code-verification and
;; identification. Templates and other code editing functions.
;; Advanced symbol completion. Code highlighting via font-lock.
;; There are many navigation commands that let you move across blocks
;; of code at different levels.
;;
;; Lastly, there is support for running MATLAB(R) in an Emacs buffer,
;; with full shell history and debugger support (when used with the db
;; commands.) The shell can be used as an online help while editing
;; code, providing help on functions, variables, or running arbitrary
;; blocks of code from the buffer you are editing.
;;; Code:
(require 'matlab-compat)
(require 'matlab-org)
(require 'matlab-scan)
(require 'matlab-sections)
(require 'matlab-syntax)
(require 'derived)
(require 'easymenu)
(eval-when-compile
(require 'elec-pair))
;;; User-changeable variables =================================================
;;
;; Variables which the user can change
(defgroup matlab nil
"MATLAB(R) mode."
:prefix "matlab-"
:group 'languages)
(defcustom matlab-mode-for-new-mfiles 'maybe
"*Enter `matlab-mode' for new *.m files.
Enter `matlab-mode' when the first part of a *.m file is not
Objective-C comments or # characters. If you want new (empty)
files to automatically enter `matlab-mode', specify this item as
t (always). If you specify \\='maybe, new files will enter
`matlab-mode' when you have an existing MATLAB buffer.
Specifying nil (never) means that new *.m files will not enter
`matlab-mode', and with default Emacs settings they will enter
`objc-mode'"
:group 'matlab
:type '(choice (const :tag "Always" t)
(const :tag "Never" nil)
(const :tag "Maybe" maybe)))
(defcustom matlab-indent-level 4
"*The basic indentation amount in `matlab-mode'."
:group 'matlab
:type 'integer)
(defcustom matlab-continuation-indent-level 4
"*Basic indentation after continuation if no other methods are found."
:group 'matlab
:type 'integer)
(defcustom matlab-array-continuation-indent-level 2
"*Basic indentation after continuation within an array.
Applies when no other methods are found."
:group 'matlab
:type 'integer)
(defcustom matlab-cont-requires-ellipsis t
"*Specify if ellipses are required at the end of a line for continuation.
Future versions of Matlab may not require ellipses ... , so a heuristic
determining if there is to be continuation is used instead."
:group 'matlab
:type 'integer)
(defcustom matlab-case-indent-level '(2 . 2)
"*How far to indent case/otherwise statements in a switch.
This can be an integer, which is the distance to indent the CASE and
OTHERWISE commands, and how far to indent commands appearing in CASE
and OTHERWISE blocks. It can also be a cons cell which is of form
(CASEINDENT . COMMANDINDENT)
where CASEINDENT is the indentation of the CASE and OTHERWISE
statements, and COMMANDINDENT is the indentation of commands appearing
after the CASE or OTHERWISE command.
Note: Currently a bug exists if:
CASEINDENT+COMMANDINDENT != `matlab-indent-level'
so if you customize these variables, follow the above rule, and you
should be ok."
:group 'matlab
:type 'sexp)
(defcustom matlab-indent-past-arg1-functions
"\\_<\\([sg]et\\(_param\\)?\\|waitfor\\|notify\\)\\_>"
"*Regex describing functions whose first arg is special.
This specialness means that all following parameters which appear on
continued lines should appear indented to line up with the second
argument, not the first argument."
:group 'matlab
:type 'string)
(defcustom matlab-arg1-max-indent-length 15
"*The maximum length to indent when indenting past arg1.
If arg1 is exceptionally long, then only this number of characters
will be indented beyond the open paren starting the parameter list."
:group 'matlab
:type 'integer)
(defcustom matlab-maximum-indents '(;; = is a convenience. Don't go too far
(?= . (10 . 4))
;; Fns should provide hard limits
(?\( . 50)
;; Matrix/Cell arrays
(?\[ . 20)
(?\{ . 20))
"Alist of maximum indentations when lining up code.
Each element is of the form (CHAR . INDENT) where char is a character
the indent engine is using, and INDENT is the maximum indentation
allowed. Indent could be of the form (MAXIMUM . INDENT), where
MAXIMUM is the maximum allowed calculated indent, and INDENT is the
amount to use if MAXIMUM is reached."
:group 'matlab
:type '(repeat (cons (character :tag "Open List Character")
(sexp :tag "Number (max) or cons (max indent)"))))
(defcustom matlab-align-to-paren t
"*Whether continuation lines should be aligned to the opening parenthesis.
When non-nil, continuation lines are aligned to the opening parenthesis if the
opening is not followed by only spaces and ellipses. When nil, continued lines
are simply indented by `matlab-continuation-indent-level'."
:group 'matlab
:type 'boolean
)
(defcustom matlab-indent-function-body 'MathWorks-Standard
"*If non-nil, indent body of function.
If the global value is nil, do not indent function bodies.
If the global value is t, always indent function bodies.
If the global value is \\='guess, then the local value will be set to
either nil or t when the MATLAB mode is started in a buffer based on the
file's current indentation.
If the global value is \\='MathWorks-Standard, then the local value is not
changed, and functions are indented based on `matlab-functions-have-end'."
:group 'matlab
:type '(choice (const :tag "Always" t)
(const :tag "Never" nil)
(const :tag "Guess" guess)
(const :tag "MathWorks Standard"
MathWorks-Standard))
)
(make-variable-buffer-local 'matlab-indent-function-body)
(put 'matlab-indent-function-body 'safe-local-variable #'symbolp)
(defcustom matlab-functions-have-end 'guess
"*If non-nil, functions-have-end minor mode is on by default.
If the value is \\='guess, then we guess if a file has end when
`matlab-mode' is initialized."
:group 'matlab
:type 'boolean)
(make-variable-buffer-local 'matlab-functions-have-end)
(put 'matlab-functions-have-end 'safe-local-variable #'symbolp)
(defun matlab-toggle-functions-have-end ()
"Toggle `matlab-functions-have-end-minor-mode'."
(interactive)
(matlab-toggle-functions-have-end-minor-mode))
;; The following minor mode is on if and only if the above variable is true;
(define-minor-mode
matlab-functions-have-end-minor-mode
"Toggle functions-have-end minor mode, indicating function/end pairing."
:init-value nil
:lighter (:eval (cond ((eq matlab-functions-have-end 'guess)
" function... ?")
((eq matlab-functions-have-end 'class)
" classdef...end")
(matlab-functions-have-end
" function...end")
(t
" function...")))
:keymap: nil ; empty mode-map
;; body of matlab-functions-have-end-minor-mode
(let ((type (matlab-guess-script-type)))
(if matlab-functions-have-end-minor-mode
(if (eq type 'empty)
(setq matlab-functions-have-end 'guess)
(setq matlab-functions-have-end type))
(setq matlab-functions-have-end nil)
)
;; Depending on the kind of end, lets set other variables.
(cond ((eq matlab-functions-have-end 'guess)
;;(setq matlab-syntax-support-command-dual t)
)
((eq matlab-functions-have-end 'class)
;;(setq matlab-syntax-support-command-dual nil)
)
(matlab-functions-have-end
;;(setq matlab-syntax-support-command-dual t)
)
(t
;;(setq matlab-syntax-support-command-dual nil)
))
))
(defvar matlab-last-script-type-guess nil
"The last time we guessed the script type, what was it?")
(defun matlab-last-guess-decl-p ()
"Return non-nil if our last guess at a script type was function or class."
(memq matlab-last-script-type-guess '(function class)))
(defun matlab-guess-script-type ()
"Guess the type of script this `matlab-mode' file is.
Returns one of \\='empty, \\='script, \\='function, \\='class."
(setq
matlab-last-script-type-guess
(cond
((not buffer-file-name)
;; Consider the case of exporting an org-mode '#+begin_src matlab' code block. In this case
;; org-mode will create a temporary buffer in matlab-mode, then insert the content. To ensure
;; keywords such as enumeration are syntactically recognized, we set the type to 'class which
;; covers all matlab language keywords. This works for both classdef's and non-classdef's.
'class)
(t
(save-excursion
(goto-char (point-min))
(let ((lvl1 nil))
(cond ((not (matlab-find-code-line))
'empty)
;; We found some code, what is it?
((and (setq lvl1 (matlab-compute-line-context 1))
(matlab-line-declaration-p lvl1))
;; We are on a decl - distinguish between type
(let ((str (matlab-line-first-word-text lvl1)))
(cond ((string= str "function")
'function)
((string= str "classdef")
'class)
(t (error "Error in script guessing algorithm")))))
(t
;; No function or class - just a script.
'script))))))))
(defun matlab-do-functions-have-end-p (&optional no-navigate)
"Do functions have end statements based on buffer content?
Look at the contents of the current buffer and decide if functions
have end. If the current value of `matlab-functions-have-end' is
\\='guess, look @ the buffer. If the value is t, then return that.
Specify NO-NAVIGATE to avoid searching."
(if (eq matlab-functions-have-end 'guess)
;; Lets guess what we think the answer is.
(let ((type (matlab-guess-script-type)))
(cond ((eq type 'empty)
'guess) ;; Keep guessing until we get some code.
((eq type 'script)
'script) ;; modern scripts can have functions, and they are required to have an end.
((eq type 'class)
'class) ;; classes always have ends.
(no-navigate
;; Functions, but don't navigate ... stay in guess mode.
'guess)
(t
;; functions but do navigate - we need to see if there is an end.
(save-excursion
(goto-char (point-min))
(matlab-find-code-line)
(let ((matlab-functions-have-end t)) ;; pretend we have ends
(back-to-indentation)
(if (eq (matlab-on-keyword-p) 'decl)
;; If block scanning returns state, then that means
;; there is a missing end, so value is nil.
;; If it returns empty, then there is a matching end.
(if (matlab--scan-block-forward)
nil
t)
;; Not on a decl, therefore just say nil, since block scanning would fail.
nil)
))))
)
;; Else, just return the default.
matlab-functions-have-end))
(defun matlab-toggle-functions-have-end-minor-mode ()
"Toggle `matlab-functions-have-end-minor-mode' only for `matlab-mode' buffers."
(matlab-functions-have-end-minor-mode)
(if (and matlab-functions-have-end-minor-mode (not (eq major-mode 'matlab-mode)))
(progn
(matlab-functions-have-end-minor-mode -1)
(error "Mode `matlab-functions-have-end' minor mode is only for MATLAB Major mode")))
)
(defun matlab-indent-function-body-p ()
"Non-nil if functions bodies are indented.
See `matlab-indent-function-body' variable."
(if (eq matlab-indent-function-body 'MathWorks-Standard)
;; Dec '09
;; The MathWorks standard is the same as if functions have end.
matlab-functions-have-end
;; Else, just return the variable.
matlab-indent-function-body))
(defun matlab-guess-function-indentation ()
"Look at the current buffer and determine if functions are indented.
Setup various variables based on what we find."
(let ((st (matlab-guess-script-type))
)
(cond
((not (eq st 'function))
;; Anything not a function should follow the mathworks standard.
(setq matlab-indent-function-body 'MathWorks-Standard)
)
;; If we are guessing, keep guessing (vaguely true)
((eq (matlab-do-functions-have-end-p t) 'guess)
(setq matlab-indent-function-body 'guess))
;; Here it is a function, and there are no ends.
(t
;; Functions in guess mode we need to find the function decl
;; and then look at the first code line and see if it is indented
;; to guess what to do.
(save-excursion
(goto-char (point-min))
(matlab-find-code-line)
;; We are likely on the fcn line. Scan to end of it.
(matlab-scan-end-of-command)
;; Now find next code line after comments
(matlab-find-code-line)
;; If it is indented, then we too will indent.
(setq matlab-indent-function-body
(if (> (current-indentation) 0)
(if (matlab-do-functions-have-end-p t)
;; if it indented and we have ends, that is std.
'MathWorks-Standard
;; no ends but indented, not the standard.
t)
(if (matlab-do-functions-have-end-p t)
;; have ends, not indented, force nil.
nil
;; no ends and not indented, mw standard
'MathWorks-Standard)))
)))
))
(defcustom matlab-fill-fudge 10
"Number of characters around `fill-column' we can fudge filling.
Basically, there are places that are very convenient to fill at, but
might not be the closest fill spot, or occur after `fill-column'.
If they occur within this fudge factor, we will use them.
Also, if none of the above occur, and we find a symbol to break at,
but an open paren (group) starts or ends within this fudge factor,
move there to boost the amount of fill leverage we can get."
:group 'matlab
:type 'integer)
(defcustom matlab-fill-fudge-hard-maximum 79
"The longest line allowed when auto-filling code.
This overcomes situations where the `fill-column' plus the
`matlab-fill-fudge' is greater than some hard desired limit."
:group 'matlab
:type 'integer)
(defcustom matlab-ellipsis-string "..."
"Text used to perform continuation on code lines.
This is used to generate and identify continuation lines."
:group 'matlab
:type 'string)
(defcustom matlab-fill-code nil
"*If true, `auto-fill-mode' causes code lines to be automatically continued."
:group 'matlab
:type 'boolean)
(defcustom matlab-fill-count-ellipsis-flag t
"*Non-nil means to count the ellipsis when auto filling.
This effectively shortens the `fill-column' by the length of
`matlab-ellipsis-string'."
:group 'matlab
:type 'boolean)
(defcustom matlab-fill-strings-flag t
"*Non-nil means that when auto-fill is on, strings are broken across lines.
If `matlab-fill-count-ellipsis-flag' is non nil, this shortens the
`fill-column' by the length of `matlab-ellipsis-string'."
:group 'matlab
:type 'boolean)
(defcustom matlab-comment-column 40
"*The goal comment column in `matlab-mode' buffers."
:group 'matlab
:type 'integer)
(defcustom matlab-comment-anti-indent 0
"*Amount of anti-indentation to use for comments in relation to code."
:group 'matlab
:type 'integer)
(defcustom matlab-comment-line-s "% "
"*String to start comment on line by itself."
:group 'matlab
:type 'string)
(defcustom matlab-comment-on-line-s "% "
"*String to start comment on line with code."
:group 'matlab
:type 'string)
(defcustom matlab-comment-region-s "% $$$ "
"*String inserted by \\[matlab-comment-region] at start of each line in \
region."
:group 'matlab
:type 'string)
(defcustom matlab-verify-on-save-flag t
"*Non-nil means to verify M whenever we save a file."
:group 'matlab
:type 'boolean)
(defcustom matlab-mode-verify-fix-functions
'(matlab-mode-vf-functionname matlab-mode-vf-classname matlab-mode-vf-add-ends)
"List of function symbols which perform a verification and fix to M code.
Each function gets no arguments, and returns nothing. They can move
point, but it will be restored for them."
:group 'matlab
:type '(repeat (choice :tag "Function: "
'(matlab-mode-vf-functionname
matlab-mode-vf-classname
matlab-mode-vf-add-ends
matlab-mode-vf-quiesce-buffer
))))
(defcustom matlab-block-verify-max-buffer-size 50000
"*Largest buffer size allowed for block verification during save."
:group 'matlab
:type 'integer)
(defcustom matlab-mode-hook nil
"*List of functions to call on entry to MATLAB mode."
:group 'matlab
:type 'hook)
(defcustom matlab-show-mlint-warnings nil
"*If non-nil, show mlint warnings."
:group 'matlab
:type 'boolean)
(make-variable-buffer-local 'matlab-show-mlint-warnings)
(put 'matlab-show-mlint-warnings 'safe-local-variable #'booleanp)
(defcustom matlab-highlight-cross-function-variables nil
"*If non-nil, highlight cross-function variables."
:group 'matlab
:type 'boolean)
(make-variable-buffer-local 'matlab-highlight-cross-function-variables)
(put 'matlab-highlight-cross-function-variables 'safe-local-variable #'booleanp)
(defcustom matlab-return-add-semicolon nil
"*If non nil, check to see a semicolon is needed when RET is pressed."
:group 'matlab
:type 'boolean)
(make-variable-buffer-local 'matlab-return-add-semicolon)
(defcustom matlab-change-current-directory nil
"*If non nil, make file's directory the current directory when evaluating it."
:group 'matlab
:type 'boolean)
(make-variable-buffer-local 'matlab-change-current-directory)
(defvar matlab-mode-abbrev-table nil
"The abbrev table used in `matlab-mode' buffers.")
(define-abbrev-table 'matlab-mode-abbrev-table ())
;;; Keybindings ===============================================================
(defvar matlab-help-map
(let ((km (make-sparse-keymap)))
(define-key km "r" 'matlab-shell-run-command)
(define-key km "f" 'matlab-shell-describe-command)
(define-key km "a" 'matlab-shell-apropos)
(define-key km "v" 'matlab-shell-describe-variable)
km)
"The help key map for `matlab-mode' and `matlab-shell-mode'.")
;; mode map
(defvar matlab-mode-map
(let ((km (make-sparse-keymap)))
;; Navigation Commands
(define-key km [(meta a)] 'matlab-beginning-of-command)
(define-key km [(meta e)] 'matlab-end-of-command)
;; Insert, Fill stuff
(define-key km [(control c) (control c)] 'matlab-insert-map-fcn)
(define-key km [(control c) (control j)] 'matlab-justify-line)
;; Comment Stuff
(define-key km "%" 'matlab-electric-comment)
(define-key km "^" 'matlab-electric-comment)
(define-key km "}" 'matlab-electric-block-comment)
(define-key km "{" 'matlab-electric-block-comment)
(define-key km "\C-c;" 'matlab-comment-region)
(define-key km "\C-c:" 'matlab-uncomment-region)
(define-key km [(meta \;)] 'matlab-comment)
(define-key km [(meta j)] 'matlab-comment-line-break-function)
(define-key km [(control c) return] 'matlab-comment-return)
(substitute-key-definition 'comment-region 'matlab-comment-region
km global-map) ;torkel
;; Completion
(define-key km "\M-\t" 'matlab-complete-symbol)
;; Connecting to MATLAB Shell
(define-key km [(control c) (control s)] 'matlab-shell-save-and-go)
(define-key km [(control c) (control r)] 'matlab-shell-run-region)
(define-key km [(meta control return)] 'matlab-shell-run-code-section)
(define-key km [(control return)] 'matlab-shell-run-region-or-line)
(define-key km [(control c) (control t)] 'matlab-show-line-info)
(define-key km [(control c) ?. ] 'matlab-shell-locate-fcn)
(define-key km [(control h) (control m)] matlab-help-map)
(define-key km [(meta s)] 'matlab-show-matlab-shell-buffer)
(define-key km [(control meta mouse-2)] 'matlab-find-file-click)
;; Debugger interconnect
(substitute-key-definition 'read-only-mode 'matlab-toggle-read-only
km global-map)
km)
"The keymap used in `matlab-mode'.")
;;; TODO - this menu was all about when emacs didn't always have windows (e18 ?)
;; turn this into a regular menu definition.
(defvar matlab-mode-menu-keymap nil
"Keymap used in MATLAB mode to provide a menu.")
;; make a menu keymap
(easy-menu-define matlab-mode-menu matlab-mode-map "MATLAB menu."
'("MATLAB"
["Start MATLAB" matlab-shell
:active (not (matlab-shell-active-p))
:visible (not (matlab-shell-active-p)) ]
["Switch to MATLAB" matlab-shell
:active (matlab-any-shell-active-p)
:visible (matlab-any-shell-active-p)]
["Save and go" matlab-shell-save-and-go
:active (matlab-any-shell-active-p) ]
["Run Region" matlab-shell-run-region
:active (matlab-any-shell-active-p) ]
["Run Code Section" matlab-shell-run-code-section
:active (matlab-any-shell-active-p) ]
["Version" matlab-show-version t]
"----"
["Locate MATLAB function" matlab-shell-locate-fcn
:active (matlab-shell-active-p)
:help "Run 'which FCN' in matlab-shell, then open the file in Emacs"]
["Show M-Lint Warnings" matlab-toggle-show-mlint-warnings
:active (and (locate-library "mlint") (fboundp 'mlint-minor-mode))
:style toggle :selected matlab-show-mlint-warnings
]
("Auto Fix"
["Verify/Fix source" matlab-mode-verify-fix-file t]
["Quiesce source" matlab-mode-vf-quiesce-buffer t]
)
("Format"
["Justify Line" matlab-justify-line t]
["Fill Comment" fill-paragraph]
["Comment Region" matlab-comment-region t]
["Uncomment Region" matlab-uncomment-region t])
("Debug"
["Edit File (toggle read-only)" matlab-shell-gud-mode-edit
:help "Exit MATLAB debug minor mode to edit without exiting MATLAB's K>> prompt."
:visible gud-matlab-debug-active ]
["Add Breakpoint (ebstop in FILE at point)" mlgud-break
:active (matlab-shell-active-p)
:help "When MATLAB debugger is active, set break point at current M-file point"]
["Remove Breakpoint (ebclear in FILE at point)" mlgud-remove
:active (matlab-shell-active-p)
:help "When MATLAB debugger is active, remove break point in FILE at point." ]
["List Breakpoints (ebstatus)" mlgud-list-breakpoints
:active (matlab-shell-active-p)
:help "List active breakpoints."]
["Step (dbstep in)" mlgud-step
:active gud-matlab-debug-active
:help "When MATLAB debugger is active, step into line"]
["Next (dbstep)" mlgud-next
:active gud-matlab-debug-active
:help "When MATLAB debugger is active, step one line"]
["Finish function (dbstep out)" mlgud-finish
:active gud-matlab-debug-active
:help "When MATLAB debugger is active, run to end of function"]
["Continue (dbcont)" mlgud-cont
:active gud-matlab-debug-active
:help "When MATLAB debugger is active, run to next break point or finish"]
["Evaluate Expression" matlab-shell-gud-show-symbol-value
:active (matlab-any-shell-active-p)
:help "When MATLAB is active, show value of the symbol under point."]
["Show Stack" mlg-show-stack
:active gud-matlab-debug-active
:help "When MATLAB debugger is active, show the stack in a buffer."]
;;; Advertise these more if we can get them working w/ mlgud's frame show.
;;; ["Up Call Stack (dbup)" mlgud-up
;;; :active gud-matlab-debug-active
;;; :help "When MATLAB debugger is active and at break point, go up a frame"]
;;; ["Down Call Stack (dbdown)" mlgud-down
;;; :active gud-matlab-debug-active
;;; :help "When MATLAB debugger is active and at break point, go down a frame"]
["Quit debugging (dbquit)" mlgud-stop-subjob
:active gud-matlab-debug-active
:help "When MATLAB debugger is active, stop debugging"]
)
;; TODO - how to autoload these? Do we want this menu?
;; ("Insert"
;; ["Complete Symbol" matlab-complete-symbol t]
;; ["Comment" matlab-comment t]
;; ["if end" tempo-template-matlab-if t]
;; ["if else end" tempo-template-matlab-if-else t]
;; ["for end" tempo-template-matlab-for t]
;; ["switch otherwise end" tempo-template-matlab-switch t]
;; ["Next case" matlab-insert-next-case t]
;; ["try catch end" tempo-template-matlab-try t]
;; ["while end" tempo-template-matlab-while t]
;; ["End of block" matlab-insert-end-block t]
;; ["Function" tempo-template-matlab-function t]
;; ["Stringify Region" matlab-stringify-region t]
;; )
("Customize"
["Indent Function Body"
(setq matlab-indent-function-body (not (matlab-indent-function-body-p)))
:style toggle :selected matlab-indent-function-body]
["Functions Have end"
matlab-toggle-functions-have-end
:style toggle :selected matlab-functions-have-end]
["Verify File on Save"
(setq matlab-verify-on-save-flag (not matlab-verify-on-save-flag))
:style toggle :selected matlab-verify-on-save-flag]
["Auto Fill does Code"
(setq matlab-fill-code (not matlab-fill-code))
:style toggle :selected matlab-fill-code ]
["Highlight Cross-Function Variables"
matlab-toggle-highlight-cross-function-variables
:active (locate-library "mlint")
:style toggle :selected matlab-highlight-cross-function-variables
]
["Add Needed Semicolon on RET"
(setq matlab-return-add-semicolon (not matlab-return-add-semicolon))
:style toggle :selected matlab-return-add-semicolon
]
["Customize" (customize-group 'matlab)
(and (featurep 'custom) (fboundp 'custom-declare-variable))
]
)
"----"
["Run M Command" matlab-shell-run-command (matlab-shell-active-p)]
["Describe Command" matlab-shell-describe-command (matlab-shell-active-p)]
["Describe Variable" matlab-shell-describe-variable (matlab-shell-active-p)]
["Command Apropos" matlab-shell-apropos (matlab-shell-active-p)]
))
;;; Font Lock : Character Vectors, Strings and Comments ================================
;;
;; Combine these, but do all the matching internally instead of using regexp
;; because it's just too complex for a regular expression.
(defface matlab-region-face
'((t :inherit region))
"*Face used to highlight a matlab region."
:group 'matlab)
(defvar matlab-unterminated-string-face 'matlab-unterminated-string-face
"Self reference for unterminated string face.")
(defvar matlab-commanddual-string-face 'matlab-commanddual-string-face
"Self reference for command dual string face.")
(defvar matlab-simulink-keyword-face 'matlab-simulink-keyword-face
"Self reference for simulink keywords.")
(defvar matlab-nested-function-keyword-face 'matlab-nested-function-keyword-face
"Self reference for nested function/end keywords.")
(defvar matlab-cross-function-variable-face 'matlab-cross-function-variable-face
"Self reference for cross-function variables.")
(defvar matlab-math-face 'matlab-math-face
"Self reference for math.")
(defface matlab-unterminated-string-face
'((t :inherit font-lock-string-face
:underline t))
"*Face used to highlight unterminated strings."
:group 'matlab)
(defface matlab-commanddual-string-face
'((t :inherit font-lock-string-face
:slant italic))
"*Face used to highlight command dual string equivalent."
:group 'matlab)
(defface matlab-simulink-keyword-face
'((t :inherit font-lock-builtin-face
:underline t))
"*Face used to highlight simulink specific functions."
:group 'matlab)
(defface matlab-nested-function-keyword-face
'((t :inherit font-lock-keyword-face
:slant italic))
"*Face to use for cross-function variables.")
(defface matlab-cross-function-variable-face
'((t :weight bold
:slant italic))
"*Face to use for cross-function variables."
:group 'matlab)
(defface matlab-ignored-comment-face
'((t :inherit font-lock-comment-face
:slant italic))
"*Face to use for ignored comments.
Ignored comments are lines that start with '% $$$' or '%^'.")
(defface matlab-pragma-face
'((t :inherit font-lock-comment-face
:bold t))
"*Face to use for cellbreak %% lines.") ;; TODO: Wrong docstring?
(defface matlab-math-face
'((t :inherit font-lock-constant-face
:slant italic))
"*Face to use for cellbreak %% lines.") ;; TODO: Wrong docstring?
;;; Font Lock MLINT data highlighting
;; TODO - THE BELOW LOOKS BROKEN TO ME.
;; - these are used in font lock, but are hand adding overlays
;; - and returning no matches - but the font lock keywords try to add
;; - a font. NEEDS FIX
(defun matlab-font-lock-nested-function-keyword-match (limit)
"Find next nested function/end keyword for font-lock.
Argument LIMIT is the maximum distance to search."
;; Because of the way overlays are setup, the cursor will be sitting
;; on either a "function" or "end" keyword.
(catch 'result
(let ((pos (point))
overlays)
(while (< pos limit)
(setq overlays (overlays-at pos))
(while overlays
(let ((overlay (car overlays)))
(when (overlay-get overlay 'nested-function)
(when (= pos (overlay-start overlay))
(goto-char pos)
;; The following line presumably returns true.
(throw 'result (re-search-forward "function" (+ pos 8) t)))
(let ((end-of-overlay (- (overlay-end overlay) 3)))
(when (<= pos end-of-overlay)
(goto-char end-of-overlay)
(throw 'result
(re-search-forward "end" (+ end-of-overlay 3) t))))))
(setq overlays (cdr overlays)))
(setq pos (next-overlay-change pos)))
nil ;; no matches, stop
)))
(defun matlab-font-lock-cross-function-variables-match (limit)
"Find next cross-function variable for font-lock.
Argument LIMIT is the maximum distance to search."
(catch 'result
(let ((pos (point))
variables)
(while (< pos limit)
(let ((overlays (overlays-at pos)))
(while overlays
(let ((overlay (car overlays)))
(setq variables (overlay-get
overlay 'cross-function-variables))
(if variables
(progn
(goto-char pos)
(setq pos (min limit (overlay-end overlay)))
(if (re-search-forward variables pos t)
(progn
(throw 'result t))))))
(setq overlays (cdr overlays))))
(setq pos (next-overlay-change pos)))
nil ;; no matches, stop
)))
(defcustom matlab-hg-primitives-list
'(;; start with basic / primitive objects
"figure" "axes" "line" "surface" "patch" "text" "light" "image" "imagesc"
"rectangle" "animatedline"
;; core utilities
"set" "get" "reset" "copyobj" "findobj" "cla" "clf" "shg"
;; popular helpers
"axis" "hold" "title" "xlabel" "ylabel" "zlabel" "xlim" "ylim" "zlim" "rlim" "thetalim"
"lighting" "shading" "material"
;; popular cartesian charts
"plot" "plot3" "semilogx" "semilogy" "loglog" "scatter" "scatter3" "stackedplot"
"area" "errorbar" "bubblechart" "bubblechart3" "swarmchart" "swarmchart3" "spy"
"histogram" "histogram2" "wordcloud" "bubblecloud" "heatmap" "parallelplot"
"bar" "barh" "bar3" "bar3h" "stem" "stairs" "quiver" "quiver3" "stem3"
"contour" "contourf" "contour3" "contourslice" "fcontour"
;; 3D
"surf" "surfc" "surfl" "ribbon" "pcolor" "mesh" "meshc" "meshz" "waterfall"
;; anim
"comet" "comet3"
;; polar
"polarplot" "polarscatter" "polarhistogram" "polarbubblechart"
;; geographic
"goeplot" "geoscatter" "geobubble" "geodensity"
;; function plots
"fplot" "fplot3" "fimplicit" "fsurf" "fimplicit3"
;; misc tools
"legend" "colorbar" "tiledlayout" "nexttile" "subplot" "annotation"
;; Components
"uicontrol" "uimenu" "uitoolbar" "uitoggletool" "uipushtool" "uicontext" "uicontextmenu"
;; misc dialogs
"uisetfont" "uisetcolor" "uigetfile" "uiputfile")
"List of handle graphics functions used in highlighting.
Customizing this variable is only useful if `regexp-opt' is available."
:group 'matlab
:type '(repeat (string :tag "HG Keyword: ")))
(defcustom matlab-debug-list '("dbstop" "dbclear" "dbcont" "dbdown" "dbmex"
"dbstack" "dbstatus" "dbstep" "dbtype" "dbup"
"dbquit")
"List of debug commands used in highlighting.
Customizing this variable is only useful if `regexp-opt' is available."
:group 'matlab
:type '(repeat (string :tag "Debug Keyword: ")))
(defcustom matlab-simulink-keywords
'("simulink" "get_param" "set_param" "simget" "simset" "sim"
"new_system" "open_system" "close_system" "save_system" "find_system"
"add_block" "delete_block" "replace_block"
"add_line" "delete_line" "replace_line"
"bdroot" "bdclose" )
;; Missing this regex "\\(mld\\|ss\\)[A-Z]\\w+\\)"
"List of keywords to highlight for simulink."
:group 'matlab
:type '(repeat (string :tag "Debug Keyword: ")))
(defcustom matlab-constants-keyword-list
'("eps" "pi" "flintmax" "inf" "Inf" "nan" "NaN" "ans" "i" "j" "NaT" "true" "false")
"List of constants and special variables in MATLAB."
:group 'matlab
:type '(repeat (string :tag "Debug Keyword: ")))
(defun matlab-font-lock-regexp-opt (keywordlist)
"Create a font-lock usable KEYWORDLIST matching regular expression.
Uses `regex-opt' if available. Otherwise creates a dumb expression."
(concat "\\_<\\("
(if (fboundp 'regexp-opt)
(regexp-opt keywordlist)
(mapconcat (lambda (s) s) keywordlist "\\|"))
"\\)\\_>"))
;;; Font lock keyword handlers
;;
(defun matlab-font-lock-basic-keyword-match (limit)
"Font lock matcher for basic keywords.
Fails to match when keywords show up as variables, etc.
Argument LIMIT ."
(matlab--scan-next-keyword 'fl-simple limit))
(defun matlab-font-lock-vardecl-keyword-match (limit)
"Font lock matcher for mcos keywords.
Fails to match when keywords show up as variables, etc.
Argument LIMIT ."
(matlab--scan-next-keyword 'vardecl limit))
(defvar matlab-fl-anchor-keyword nil)
(defun matlab-font-lock-mcos-keyword-match (limit)
"Font lock matcher for mcos keywords up to LIMIT.
Fails to match when keywords show up as variables, etc."
(when (and (eq matlab-functions-have-end 'class)
(setq matlab-fl-anchor-keyword
(matlab--scan-next-keyword 'mcos limit)))
(save-match-data
;; Skip over attributes.
(when (looking-at "\\s-*(") (forward-sexp 1)))
t))
(defun matlab-font-lock-args-keyword-match (limit)
"Font lock matcher for mcos keywords up to LIMIT.
Fails to match when keywords show up as variables, etc."
(setq matlab-fl-anchor-keyword
(matlab--scan-next-keyword 'args limit)))
(defvar font-lock-beg) (defvar font-lock-end) ; quiet compiler.
(defun matlab-font-lock-extend-region ()
"Called by font-lock to extend the region for multiline expressions.
Supports expressions like arguments and property blocks with anchored
color support."
(save-excursion
(let* ((flb font-lock-beg)
(fle font-lock-end)
(tmp (matlab--scan-block-backward-up (window-start)))
(blockmatch (when (not tmp) (matlab--mk-keyword-node))))
(when (and (member (nth 1 blockmatch) '("properties" "events" "arguments"))
(matlab--valid-keyword-node blockmatch))
(setq font-lock-beg (min font-lock-beg (line-beginning-position)))
(when (not (matlab--scan-next-keyword 'all (window-end)))
(setq font-lock-end (max font-lock-end (line-end-position)))))
(if (and (eq font-lock-beg flb)
(eq font-lock-end fle))
;; We didn't change anything.
nil
;; We made a change
t))))
(defvar ml-fl-anchor-limit nil)
(defun matlab-font-lock-anchor-set-end-limit ()
"Set the end limit for anchored matchers."
(save-excursion
(save-match-data
;; next keyword is faster, plus if someone is in the middle of typing
;; a new block, prevents going too far into the distance.
(matlab--scan-next-keyword 'all (point-max))
(forward-word -1)
(setq ml-fl-anchor-limit (point)))))
(defun matlab-font-lock-anchor-clear-end-limit ()
"Clear the end limit for anchored matchers."
(setq ml-fl-anchor-limit nil))
(defun matlab-font-lock-anchor-variable-match (limit)
"After finding a keyword like PROPERTIES or ARGUMENTS, match vars.
LIMIT is the search limit.
This matcher will handle a range of variable features."
(ignore limit)
(when (member (nth 1 matlab-fl-anchor-keyword)
'("properties" "events" "arguments"))
(let* ((match (re-search-forward "\\(?:^\\|[,;]\\)\\s-+\\(\\(?:\\w+\\|\\.\\)+\\)\\_>" ml-fl-anchor-limit t))
;; Save this match so we can do a 2nd anchored search for a data type.
(md1 (list (match-beginning 1) (match-end 1)))
(tm (looking-at
"\\(\\(?:\\s-*([^\n\)]+)\\s-*\\|\\s-+\\)?\\(?:\\w+\\(?:\\.\\w+\\)*\\)?\\)\\s-*\\($\\|[;%{=]\\)"))
(tm1 (if tm (list (match-beginning 1) (match-end 1))
;; The below is a cheat to not highlight anything but
;; still supply the match data for this optional piece.
(list (nth 1 md1) (nth 1 md1))))
(newmdata (append md1 md1 tm1)))
(when match
(goto-char (line-end-position))
(set-match-data newmdata)
t))))
;;; Font Lock keyword handling
;;
;; Many parts of the keyword handling are shared with matlab-shell.
;; The matlab based variables here are divided up between generic keywords
;; and keywords only for M files. This means the M shell won't highlight
;; some syntaxes like classdef stuff even though someone might paste them in.
;;
;; matlab-*-keywords -- MATLAB Files or Shell
;; matlab-file-*-keywords -- MATLAB Files only
(defconst matlab-basic-font-lock-keywords
(list
;; General keywords
'(matlab-font-lock-basic-keyword-match
(0 font-lock-keyword-face))
;; Handle graphics stuff
(list
(matlab-font-lock-regexp-opt matlab-hg-primitives-list)
'(0 font-lock-builtin-face))
(list
;; How about a few matlab constants such as pi, infinity, and sqrt(-1)?
(matlab-font-lock-regexp-opt matlab-constants-keyword-list)
1 'matlab-math-face)
;; Imaginary number support
'("\\<[0-9]\\.?\\(i\\|j\\)\\_>" 1 font-lock-constant-face)
)
"Basic Expressions to highlight in MATLAB mode or shell.")
(defconst matlab-file-basic-font-lock-keywords
(append
matlab-basic-font-lock-keywords
'(;; MCOS keywords like properties, methods, events
(matlab-font-lock-mcos-keyword-match
(1 font-lock-keyword-face))
;; ARGUMENTS keyword
(matlab-font-lock-args-keyword-match
(1 font-lock-keyword-face))
;; Highlight cross function variables
(matlab-font-lock-cross-function-variables-match
(1 matlab-cross-function-variable-face prepend))
;; Highlight nested function/end keywords
(matlab-font-lock-nested-function-keyword-match
(0 matlab-nested-function-keyword-face prepend))
))
"Basic Expressions to highlight in MATLAB Files.")
(defconst matlab-fl-opt-continuation "\\s<\\S>+\\s>")
(defconst matlab-fl-opt-whitespace (concat "\\s-*\\(?:"
matlab-fl-opt-continuation
"\\)?\\s-*"))
(defconst matlab-fl-fcn-key "^\\s-*function\\_>")
(defconst matlab-fl-return-args "\\(\\[[^]]*\\]\\|\\sw+\\)")
(defconst matlab-fl-fcn-name "\\(?:[sg]et\\.\\)?\\sw+")
(defconst matlab-fl-fcn-args "\\(?:(\\|$\\|\\s<\\)" )
(defconst matlab-function-font-lock-keywords
(list
;; defining a function, a (possibly empty) list of assigned variables,
;; function name, and an optional (possibly empty) list of input variables
(list (concat matlab-fl-fcn-key matlab-fl-opt-whitespace
matlab-fl-return-args matlab-fl-opt-whitespace
"=" matlab-fl-opt-whitespace
"\\(" matlab-fl-fcn-name "\\)" matlab-fl-opt-whitespace
matlab-fl-fcn-args)
'(1 font-lock-variable-name-face append)
'(2 font-lock-function-name-face prepend))
;; defining a function, a function name, and an optional (possibly
;; empty) list of input variables
(list (concat matlab-fl-fcn-key matlab-fl-opt-whitespace
"\\(" matlab-fl-fcn-name "\\)" matlab-fl-opt-whitespace
matlab-fl-fcn-args)
'(1 font-lock-function-name-face prepend))
;; Anchor on the function keyword, highlight params
(list (concat matlab-fl-fcn-key matlab-fl-opt-whitespace
"\\(" matlab-fl-return-args matlab-fl-opt-whitespace
"=" matlab-fl-opt-whitespace
"\\)?"
matlab-fl-fcn-name matlab-fl-opt-whitespace
"(")
(list (concat matlab-fl-opt-whitespace "\\(\\sw+\\)"
matlab-fl-opt-whitespace "[,)]")
'(save-excursion
(condition-case nil
(matlab-scan-end-of-command)
(error (line-end-position))))
nil
'(1 font-lock-variable-name-face)))
;; ARGUMENTS have variables to highlight
'(matlab-font-lock-args-keyword-match
(matlab-font-lock-anchor-variable-match ;; matcher fcn
(matlab-font-lock-anchor-set-end-limit) ;; pre forms
(matlab-font-lock-anchor-clear-end-limit) ;; post forms
(1 font-lock-variable-name-face t)
(2 font-lock-type-face t)
))
;; VARDECL keywords
'(matlab-font-lock-vardecl-keyword-match
("\\(\\w+\\)\\(\\s-*=[^,; \t\n]+\\|[, \t;]+\\|$\\)"
nil nil (1 font-lock-variable-name-face)))
;; I like variables for FOR loops
'("\\<\\(\\(?:par\\)?for\\)\\s-+\\(\\sw+\\)\\s-*=\\s-*\
\\(\\([^\n,;%(]+\\|([^\n%)]+)\\)+\\)"
(1 font-lock-keyword-face)
(2 font-lock-variable-name-face append)
(3 font-lock-constant-face append))
;; Items after a switch statements are cool
'("\\_<\\(case\\|switch\\)\\_>\\s-+\\({[^}\n]+}\\|[^,%\n]+\\)"
(2 font-lock-constant-face))
;; set_param and waitfor have input variables that can be highlighted.
(list (concat matlab-indent-past-arg1-functions "\\s-*")
'("(\\s-*\\(\\(?:\\w\\|\\.\\)+\\)\\s-*\\(,\\|)\\)" nil nil
(1 font-lock-variable-name-face)))
)
"List of font lock keywords for stuff in functions.")
(defconst matlab-class-attributes-list-re
"\\s-*\\(?2:(\\([^)]+\\))\\|\\)"
"Regular expression for matching an attributes block.")
(defconst matlab-file-class-font-lock-keywords
(list
;; Classdefs keyword and the class name
(list (concat "^\\s-*\\(classdef\\)\\_>"
matlab-class-attributes-list-re
"\\s-*\\(?3:\\sw+\\)")
;; '(1 font-lock-keyword-face append) - handled as keyword
'(3 font-lock-function-name-face)
)
;; Classdef anchor for highlighting all the base classes in inherits from
(list (concat "^\\s-*\\(classdef\\)"
matlab-class-attributes-list-re
"\\s-+\\(\\sw+\\)")
'("\\s-*[<&]\\s-*\\(\\(\\sw\\|\\.\\)+\\)" nil nil
(1 font-lock-constant-face)))
;; Property and Method blocks have attributes to highlight
(list "^\\s-*\\(classdef\\|properties\\|methods\\|events\\|arguments\\)\\s-*("
'("\\(\\sw+\\)\\s-*\\(=\\s-*[^,)]+\\)?" nil nil
(1 font-lock-type-face)
))
;; PROPERTY, EVENTS, etc have variables to highlight
'(matlab-font-lock-mcos-keyword-match
(matlab-font-lock-anchor-variable-match ;; matcher fcn
(matlab-font-lock-anchor-set-end-limit) ;; pre forms
(matlab-font-lock-anchor-clear-end-limit) ;; post forms
(1 font-lock-variable-name-face t)
(2 font-lock-type-face t)
))
)
"List of font-lock keywords used when an MATLAB file contains a class.")
(defconst matlab-file-gaudy-font-lock-keywords
(append
matlab-basic-font-lock-keywords
matlab-file-basic-font-lock-keywords
matlab-function-font-lock-keywords
matlab-file-class-font-lock-keywords
)
"Expressions to highlight in MATLAB mode.")
(defconst matlab-really-gaudy-font-lock-keywords
(append
(list
;; Since it's a math language, how bout dem symbols?
'("\\([<>~=]=\\|\\.[/\\*^'?]\\|\\_<\\(?:\\<xor\\|any\\|all\\|find\\)\\_>\\|[-<>!?^&|*+\\/~:@]\\)"
1 font-lock-builtin-face)
;; highlight transpose
'("[]A-Za-z0-9_\"})']\\('+\\)" 1 font-lock-builtin-face)
;; How about references in the HELP text.
(list (concat "^" matlab-comment-line-s "\\s-*"
"\\(\\([A-Z]+\\s-*=\\s-+\\|\\[[^]]+]\\s-*=\\s-+\\|\\)"
"\\([A-Z][0-9A-Z]+\\)\\(([^)\n]+)\\| \\)\\)")
'(1 font-lock-constant-face prepend))
(list (concat "^" matlab-comment-line-s "\\s-*"
"See also\\s-+")
'("\\([A-Z][A-Z0-9]+\\)\\([,.]\\| and\\|$\\) *" nil nil
(1 font-lock-constant-face prepend)))
(list (concat "^" matlab-comment-line-s "\\s-*"
"\\(\\$" "Revision" "[^\n$]+\\$\\)")
'(1 font-lock-constant-face prepend))
;; Debugging Keywords
(list (matlab-font-lock-regexp-opt matlab-debug-list)
'(0 'bold))
;; Simulink functions
(list (matlab-font-lock-regexp-opt matlab-simulink-keywords)
1 matlab-simulink-keyword-face)
))
"Expressions to highlight in MATLAB mode.")
(defconst matlab-file-really-gaudy-font-lock-keywords
(append
matlab-file-gaudy-font-lock-keywords
matlab-really-gaudy-font-lock-keywords
)
"Expressions to highlight in MATLAB mode.")
;; Imenu support.
(defvar matlab-imenu-generic-expression
'((nil "^\\s-*function\\>[ \t\n.]*\\(\\(\\[[^]]*\\]\\|\\sw+\\)[ \t\n.]*\
< =[ \t\n.]*\\)?\\([a-zA-Z0-9_]+\\)" 3))
"Expressions which find function headings in MATLAB M files.")
;;; MATLAB mode entry point ==================================================
;; Choose matlab-mode if when loading MATLAB *.m files
;; See "How Emacs Chooses a Major Mode"
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Auto-Major-Mode.html
;;;###autoload
(defun matlab-is-matlab-file ()
"Enter `matlab-mode' when file content is likely a MATLAB *.m file.
This will also enter `matlab-mode' for empty files *.m files when
`matlab-mode-for-new-mfiles' indicates as such."
(and buffer-file-name ;; have a file?
;; AND a valid MATLAB file name
(string-match
"^\\(?:.*/\\)?[a-zA-Z][a-zA-Z0-9_]*\\.m\\'" ;; /path/to/file.m ?
(file-name-sans-versions
(if (and (boundp 'archive-subfile-mode) archive-subfile-mode)
(aref archive-subfile-mode 0) ;; Will just be file.m without the directory
buffer-file-name)))
;; AND (have MATLAB code OR an empty file that should enter matlab-mode)
(or
;; Is content MATLAB code? We can definitely identify *some* MATLAB content using
;; (looking-at "^[[:space:]\n]*\\(%\\|function\\|classdef\\)")
;; i.e. '%', '%{' comments, or function/classdef start, but this fails to find MATLAB
;; scripts. Thus, if buffer is NOT Objective-C and has something in it, we assume MATLAB.
;; Objective-c is identified by
;; - comment start chars: // or /*,
;; - # char (as in #import)
;; - @ char (as in @interface)
;; MATLAB scripts are identified by the start of a valid identifier, i.e. a letter or
;; some math operation, e.g. [1,2,3]*[1,2,3]', thus all we really need to look for
;; is a non-whitespace character which could be a MATLAB comment, generic MATLAB commands,
;; function/classdef, etc.
(and (not (looking-at "^[[:space:]\n]*\\(//\\|/\\*\\|#\\|@\\)"))
(looking-at "^[[:space:]\n]*[^[:space:]\n]"))
;; Empty file - enter matlab-mode based on `matlab-mode-for-new-mfiles' setting
(and (= (buffer-size) 0)
(or (equal matlab-mode-for-new-mfiles t)
(and (equal matlab-mode-for-new-mfiles 'maybe)
;; Enter matlab-mode if we already have a buffer in matlab-mode
(let ((buffers (buffer-list))
enter-matlab-mode)
(while buffers
(with-current-buffer (car buffers)
(when (or (eq major-mode 'matlab-mode)
(eq major-mode 'matlab-shell-mode))
(setq enter-matlab-mode t)
(setq buffers nil)))
(setq buffers (cdr buffers)))
enter-matlab-mode)))))))
;;;###autoload
(add-to-list 'magic-mode-alist '(matlab-is-matlab-file . matlab-mode))
(defvar mlint-minor-mode)
(declare-function mlint-minor-mode "mlint.el")
(declare-function mlint-buffer "mlint.el")
(declare-function mlint-clear-warnings "mlint.el")
(declare-function mlint-clear-cross-function-variable-highlighting "mlint.el")
(defvar show-paren-data-function)
(defun matlab-mode-leave ()
"When leaving `matlab-mode', turn off `mlint-minor-mode'."
(when (eq major-mode 'matlab-mode)
(mlint-minor-mode -1)
(matlab-scan-disable)
))
;;;###autoload
(define-derived-mode matlab-mode prog-mode "MATLAB"
"MATLAB(R) mode is a major mode for editing MATLAB dot-m files.
\\<matlab-mode-map>
Convenient editing commands are:
\\[matlab-comment-region] - Comment/Uncomment out a region of code.
\\[matlab-complete-symbol] - Symbol completion of matlab symbols\
based on the local syntax.
Convenient navigation commands are:
\\[matlab-beginning-of-command] - Move to the beginning of a command.
\\[matlab-end-of-command] - Move to the end of a command.
Convenient template insertion commands:
\\[tempo-template-matlab-function] - Insert a function definition.
\\[tempo-template-matlab-if] - Insert an IF END block.
\\[tempo-template-matlab-for] - Insert a FOR END block.
\\[tempo-template-matlab-switch] - Insert a SWITCH END statement.
\\[matlab-insert-next-case] - Insert the next CASE condition in a SWITCH.
\\[matlab-insert-end-block] - Insert a matched END statement. With \
optional ARG, reindent.
\\[matlab-stringify-region] - Convert plain text in region to a string \
with correctly quoted chars.
Variables:
`matlab-indent-level' Level to indent blocks.
`matlab-continuation-indent-level' Level to indent after ... continuation
`matlab-case-indent-level' Level to unindent case statements.
`matlab-indent-past-arg1-functions'
Regexp of functions to indent past the first
argument on continuation lines.
`matlab-maximum-indents' List of maximum indents during lineups.
`matlab-comment-column' Goal column for on-line comments.
`fill-column' Column used in auto-fill.
`matlab-indent-function-body' If non-nil, indents body of MATLAB functions.
`matlab-functions-have-end' If non-nil, MATLAB functions terminate with end.
`matlab-fill-code' Non-nil, auto-fill code in `auto-fill-mode'.
`matlab-fill-strings' Non-nil, auto-fill strings in `auto-fill-mode'.
`matlab-verify-on-save-flag' Non-nil, enable code checks on save.
`matlab-vers-on-startup' If t, show version on start-up.
`matlab-handle-simulink' If t, enable simulink keyword highlighting.
All Key Bindings:
\\{matlab-mode-map}"
:after-hook (matlab-mode-init-mlint-if-needed)
(use-local-map matlab-mode-map)
(setq major-mode 'matlab-mode)
(setq mode-name "MATLAB")
(if (boundp 'whitespace-modes)
(add-to-list 'whitespace-modes 'matlab-mode))
(setq local-abbrev-table matlab-mode-abbrev-table)
;; Syntax tables and related features are in matlab-syntax.el
;; This includes syntax table definitions, misc syntax regexps
;; and font-lock for comments/strings.
(matlab-syntax-setup)
(matlab-scan-setup)
(when (not noninteractive)
;; "matlab %% sections" and has some cost, thus don't activate in batch mode.
;; TODO: investigate if a hook be better?
(matlab-sections-mode-enable))
;; Indentation setup.
(setq indent-tabs-mode nil)
(make-local-variable 'indent-line-function)
(setq indent-line-function 'matlab-indent-line)
(make-local-variable 'indent-region-function)
(setq indent-region-function 'matlab-indent-region)
(make-local-variable 'comment-column)
(setq comment-column matlab-comment-column)
(make-local-variable 'comment-indent-function)
(setq comment-indent-function (lambda () nil)) ;; always use indent-according-to-mode
(make-local-variable 'electric-indent-functions)
(setq electric-indent-functions 'matlab-electric-indent-function)
;; Sexp's and Defuns
(make-local-variable 'forward-sexp-function)
(setq forward-sexp-function 'matlab-forward-sexp-fcn)
(make-local-variable 'beginning-of-defun-function)
(setq beginning-of-defun-function 'matlab-beginning-of-defun)
(make-local-variable 'end-of-defun-function)
(setq end-of-defun-function 'matlab-skip-over-defun)
(make-local-variable 'add-log-current-defun-function)
(setq add-log-current-defun-function 'matlab-add-log-current-defun)
;; Auto-Fill and Friends
(make-local-variable 'normal-auto-fill-function)
(setq normal-auto-fill-function 'matlab-auto-fill)
(make-local-variable 'fill-column)
(setq fill-column fill-column)
(make-local-variable 'fill-paragraph-function)
(setq fill-paragraph-function 'matlab-fill-paragraph)
(make-local-variable 'fill-prefix)
(make-local-variable 'imenu-generic-expression)
(setq imenu-generic-expression matlab-imenu-generic-expression)
;; Save hook for verifying src. This lets us change the name of
;; the function in `write-file' and have the change be saved.
;; It also lets us fix mistakes before a `save-and-go'.
(make-local-variable 'write-contents-functions)
(add-hook 'write-contents-functions 'matlab-mode-verify-fix-file-fn)
;; give each file it's own parameter history
(make-local-variable 'matlab-shell-save-and-go-history)
;; Font lock support:
(make-local-variable 'font-lock-defaults)
(setq font-lock-defaults '((matlab-file-font-lock-keywords
matlab-file-gaudy-font-lock-keywords
matlab-file-really-gaudy-font-lock-keywords
)
nil ; use syntax table comments/strings
nil ; keywords are case sensitive.
;; This puts _ as a word constituent,
;; simplifying our keywords significantly
((?_ . "w"))))
(setq font-lock-multiline 'undecided)
(add-to-list 'font-lock-extend-region-functions #'matlab-font-lock-extend-region t)
;; Highlight parens OR if/end type blocks
(make-local-variable 'show-paren-data-function)
(setq show-paren-data-function 'matlab-show-paren-or-block)
;; Electric pair mode needs customization around transpose
(make-local-variable 'electric-pair-inhibit-predicate)
(setq electric-pair-inhibit-predicate 'matlab-electric-pair-inhibit-predicate)
;; Electric pair mode - handle ' as string delimiter correctly
(make-local-variable 'electric-pair-pairs)
(setq electric-pair-pairs '((39 . 39)))
;; If first function is terminated with an end statement, then functions have
;; ends.
(if (matlab-do-functions-have-end-p)
;; minor mode now treat's 'guess' as true when passing in 1.
(matlab-functions-have-end-minor-mode 1)
(matlab-functions-have-end-minor-mode -1))
;; When matlab-indent-function-body is set to 'MathWorks-Standard,
;; - we indent all functions that terminate with an end statement
;; - old style functions (those without end statements) are not
;; indented.
;; It is desired that all code be terminate with an end statement.
;;
;; When matlab-indent-function-body is set to 'guess,
;; - look at the first line of code and if indented, keep indentation
;; otherwise use MathWorks-Standard
;;
(cond
((eq matlab-indent-function-body 'MathWorks-Standard)
)
((eq matlab-indent-function-body 'guess)
(matlab-guess-function-indentation)
)
)
;; When leaving matlab-mode, turn off mlint
(add-hook 'change-major-mode-hook #'matlab-mode-leave)
)
(defun matlab-mode-init-mlint-if-needed ()
"Check if we should start `mlint-minor-mode' for this buffer."
;; Check to see if the user asked for any features that need mlint.
(if (and (or (not (boundp 'mlint-minor-mode))
(not mlint-minor-mode)) ; prevent double init
(or matlab-show-mlint-warnings
matlab-highlight-cross-function-variables)) ; check settings for need
;; Some users may not feel like getting all the extra stuff
;; needed for mlint working. Do this only if we can get
;; mlint loaded ok.
(condition-case nil
(mlint-minor-mode
(if (or matlab-show-mlint-warnings matlab-highlight-cross-function-variables)
1
0))
;; If there is an error loading the stuff, don't
;; continue.
(error nil))))
;; Support debug mode and read only toggling.
(defvar gud-matlab-debug-active nil)
(declare-function matlab-shell-gud-minor-mode "matlab-shell-gud")
(defun matlab-toggle-read-only (&optional arg)
"Toggle read-only bit in MATLAB mode.
This looks to see if we are currently debugging, and if so re-enable
our debugging feature.
Optional argument ARG specifies if the read-only mode should be set."
(interactive "P")
(ignore arg)
(if (and (featurep 'matlab-shell-gud)
gud-matlab-debug-active)
;; The debugging is active, just re-enable debugging read-only-mode
(matlab-shell-gud-minor-mode 1)
;; Else - it is not - probably doing something else.
(call-interactively 'read-only-mode)
))
;;; Utilities =================================================================
(defun matlab-show-version ()
"Show the version number in the minibuffer."
(interactive)
(message "matlab-mode, version %s" matlab-mode-version))
(defun matlab-find-code-line ()
"Walk forwards until we are on a line of code return t on success.
If the current line is code, return immediately.
Ignore comments and whitespace."
(forward-comment 100000)
(not (eobp)))
;;; Navigation ===============================================================
(defvar matlab-scan-on-screen-only nil
"When this is set to non-nil, then forward/backward sexp stops off screen.
This is so the block highlighter doesn't gobble up lots of time when
a block is not terminated.")
(defun matlab-backward-sexp (&optional autoend noerror)
"Go backwards one balanced set of MATLAB expressions.
If optional AUTOEND, then pretend we are at an end.
If optional NOERROR, then we return t on success, and nil on failure.
This assumes that expressions do not cross \"function\" at the left margin."
(let ((p (point))
(returnme t)
keyword)
(save-excursion
(skip-syntax-backward " .><")
(cond
;; Auto end - Just go!
(autoend
(when (matlab--scan-block-backward-up nil)
(if noerror
(setq returnme nil)
(error "Unstarted END")))
)
;; No auto-end ....
;; End of a block comment
((eq (matlab-line-comment-style (matlab-compute-line-context 1)) 'block-end)
(beginning-of-line)
(matlab-beginning-of-string-or-comment))
((or (not (setq keyword (matlab-on-keyword-p)))
(memq keyword '(decl ctrl mcos arg vardecl keyword)))
;; Just walk over block starts and other random stuff.
(matlab-move-simple-sexp-internal -1))
((memq keyword '(mid case))
;; If we're on a middle, then assume we're in the middle
;; of something and keep going.
(when (matlab--scan-block-backward-up nil)
(if noerror
(setq returnme nil)
(error "Unstarted END")))
)
(t
(when (matlab--scan-block-backward nil)
(if noerror
(setq returnme nil)
(error "Unstarted END")))
)
)
(when returnme
(setq p (point))))
(goto-char p)
returnme))
(defun matlab-forward-sexp-fcn (&optional arg)
"Function used as `forward-sexp-function' for MATLAB mode.
Adapt to use `matlab-forward-sexp' or `matlab-backward-sexp'
depending on value of ARG."
;; Move forward on positive arg.
(while (> arg 0)
(matlab-forward-sexp)
(setq arg (1- arg)))
;; Or maybe move backward on negative args.
(while (< arg 0)
(matlab-backward-sexp)
(setq arg (1+ arg)))
)
(defun matlab-forward-sexp (&optional autostart)
"Go forward one balanced set of MATLAB expressions.
If AUTOSTART is non-nil, assume we are already inside a block, and navigate
forward until we exit that block."
(let (p keyword) ;; go to here if no error.
(save-excursion ;; Don't move if there is an error
;; skip over preceding whitespace
(skip-syntax-forward " .><")
(cond
;; Auto start - just go!
(autostart
(when (matlab--scan-block-forward-up nil)
(error "Unterminated Block")
))
;; No Autostart ....
;; Looking at a block comment.
((and (not autostart)
(looking-at "%"))
(goto-char (match-end 0))
(matlab-end-of-string-or-comment))
((or (not (setq keyword (matlab-on-keyword-p)))
(memq keyword '(end vardecl keyword)))
;; Just walk over ends and other random stuff.
(matlab-move-simple-sexp-internal 1))
((memq keyword '(mid case))
;; If we're on a middle, then assume we're in the middle
;; of something and keep going.
(when (matlab--scan-block-forward-up nil)
(error "Unterminated Block"))
)
(t
(when (matlab--scan-block-forward nil nil)
(error "Unterminated Block"))
)
)
(setq p (point)))
(goto-char p)))
(defun matlab-beginning-of-defun (&optional arg)
"Go to the beginning of the current function.
With optional ARG, go backward that many defuns."
(interactive "p")
(unless arg (setq arg 1))
(let ((ans nil))
;; If ARG is positive, move BACKWARD that many defuns.
(while (> arg 0)
(setq ans (matlab--beginning-of-defun-raw))
(setq arg (1- arg)))
;; If ARG is negative, move FORWARD that many defun
(while (< arg 0)
(if (eq (matlab-on-keyword-p) 'decl)
(setq ans (not (matlab--scan-block-forward)))
;; Else, just look for stuff and hope for the best.
(setq ans (matlab--scan-next-keyword 'decl (point-max)))
)
(setq arg (1+ arg)))
ans))
(defun matlab-skip-over-defun ()
"Assigned to `end-of-defun-function' for matlab mode.
Assume point is on a defun, and if so, skip to the end."
(skip-syntax-forward " >")
(if (eq (matlab-on-keyword-p) 'decl)
(matlab--scan-block-forward)
;; Else, bad condition. Maybe we're moving up from
;; inside a nested function? If so, bounce up
;; and try again.
(matlab-end-of-defun 1)))
(defun matlab-end-of-defun (&optional arg)
"Go to the end of the current function.
ARG specifies how far."
(interactive "p")
(unless arg (setq arg 1))
(let ((ans nil))
(while (> arg 0)
(matlab-end-of-string-or-comment t)
(skip-syntax-forward " ")
(when (not (eq (matlab-on-keyword-p) 'decl))
(matlab--scan-block-backward-up-until 'decl))
(skip-syntax-forward " ")
(setq ans
(if (eq (matlab-on-keyword-p) 'decl)
(not (matlab--scan-block-forward))
nil))
(setq arg (1- arg)))
ans))
(defun matlab--beginning-of-defun-raw ()
"Move to the beginning of defun cursor is in.
Move up and backwards one defun, our out of current defun.
Accounts for nested functions."
;; Get out of comments.
(matlab-beginning-of-string-or-comment t)
;; back over whitespace - try to find what we are near.
(skip-syntax-backward " >")
;; Do scanning
(if (not (eq (matlab-on-keyword-p) 'end))
;; No end, scan up until we find the declaration we're in.
(matlab--scan-block-backward-up-until 'decl)
;; Else, nav backward over the end we are at.
(matlab--scan-block-backward)
(if (eq (matlab-on-keyword-p) 'decl)
t ; done
;; If that end wasn't a decl, scan upward.
(matlab--scan-block-backward-up-until 'decl))))
(defun matlab-add-log-current-defun ()
"Return a text string representing the current block.
Tries to return the current defun. If not, look for a
code section block with a name."
(or (matlab-current-defun) (matlab-sections-what-section)))
(defun matlab-current-defun ()
"Return the name of the current function."
(save-excursion
(matlab--beginning-of-defun-raw)
(nth 1 (matlab-line-declaration-name))))
(defun matlab-beginning-of-command ()
"Go to the beginning of an M command.
Travels across continuations."
(interactive "P")
(matlab-scan-beginning-of-command))
(defun matlab-end-of-command ()
"Go to the end of an M command.
Travels a cross continuations"
(interactive)
(matlab-scan-end-of-command))
;;; Line types, attributes, and string/comment context ====================================
(defun matlab-line-continued-comment ()
"Return column of previous line's comment start, or nil."
(save-excursion
(beginning-of-line)
(let* ((lvl (matlab-compute-line-context 1)))
(if (or (null (matlab-line-regular-comment-p lvl))
(bobp))
nil
;; We use forward-line -1 and not matlab-previous-command-begin
;; because we want blank lines to terminate this indentation method.
(forward-line -1)
(matlab-line-end-comment-column (matlab-compute-line-context 1))))))
(defun matlab-line-count-block-change (&optional lvl1-start lvl1-end)
"Count the change in block depth across lines.
Start at LVL1-START, and end at LVL1-END. It is ok if these
are the same line.
A positive number means there were more block starts and ends.
A negative number means there were more ends than starts.
0 means no blocks, or that all blocks started also ended."
;; TODO - delete this
(unless lvl1-start (setq lvl1-start (matlab-compute-line-context 1)
lvl1-end lvl1-start))
(if (or (matlab-line-comment-p lvl1-start)
(matlab-line-empty-p lvl1-start))
;; If we are starting on comments or empty, no code to scan
0
(matlab-with-context-line lvl1-start
(let ((depth 0)
(bounds (matlab-line-end-of-code lvl1-end))
(keyword nil))
;; Lets scan for keywords.
(goto-char (matlab-line-point lvl1-start))
(while (setq keyword (matlab--scan-next-keyword 'blocks bounds))
(cond ((eq (car keyword) 'end)
(setq depth (1- depth)))
(t
(setq depth (1+ depth)))))
depth))))
(defun matlab-function-called-at-point ()
"Return a string representing the function called nearby point."
(save-excursion
(beginning-of-line)
(cond ((looking-at "\\s-*\\([a-zA-Z]\\w+\\)[^=][^=]")
(match-string 1))
((and (re-search-forward "=" (line-end-position) t)
(looking-at "\\s-*\\([a-zA-Z]\\w+\\)\\s-*[^=]"))
(match-string 1))
(t nil))))
(defun matlab-comment-on-line ()
"Place the cursor on the beginning of a valid comment on this line.
If there isn't one, then return nil, point otherwise."
(interactive)
(let* ((lvl1 (matlab-compute-line-context 1))
(comm (matlab-line-end-comment-point lvl1)))
(if comm
(goto-char comm)
nil)))
;;; Indent functions ==========================================================
;;
(defun matlab-indent-region (start end &optional column noprogress)
"Indent the region between START And END for MATLAB mode.
Unlike `indent-region-line-by-line', this function captures
parsing state and re-uses that state along the way.
Optional argument COLUMN boundary of the filling (ignored).
NOPROGRESS, if t, does not display indenting progress."
(interactive)
(ignore column)
(save-excursion
(setq end (copy-marker end))
(goto-char start)
(let ((pr (when (and (not (minibufferp)) (not noprogress))
(make-progress-reporter "MATLAB Indenting region..." (point) end)))
(lvl2 nil)
(lvl1 nil)
)
(while (< (point) end)
(unless (and (bolp) (eolp))
;; This is where we indent each line
(setq lvl1 (matlab-compute-line-context 1)
lvl2 (matlab-compute-line-context 2 lvl1)) ;; lvl2))
(when (matlab--indent-line lvl2)
;; If the indent changed something, refresh this
;; context obj.
;;(matlab-refresh-line-context-lvl2 lvl2)
))
(forward-line 1)
(and pr (progress-reporter-update pr (point))))
(and pr (progress-reporter-done pr))
(move-marker end nil))))
(defun matlab-indent-line ()
"Indent a line in `matlab-mode'."
(interactive)
(let ((lvl2 (matlab-compute-line-context 2)))
(matlab--indent-line lvl2)))
(defvar matlab--change-indentation-override #'matlab--change-indentation
"Tests to override this to validate `indent-region'.")
(defun matlab--indent-line (lvl2)
"Indent the current line according to MATLAB mode.
Input LVL2 is a pre-scanned context from `matlab-compute-line-context' lvl2.
Used internally by `matlab-indent-line', and `matlab-indent-region'."
(let* ((i (matlab--calc-indent lvl2)))
(funcall matlab--change-indentation-override i)))
(defun matlab--change-indentation (new-indentation)
"Change the indentation on line to NEW-INDENTATION.
This function exists so the test harness can override it."
(let* ((i (max new-indentation 0))
(ci (current-indentation))
(cc (current-column))
(diff (- ci i)))
(save-excursion
(back-to-indentation)
(cond ((= diff 0) ;; Already a match - do nothing.
nil)
((< diff 0) ;; Too short - Add stuff
(indent-to i))
((<= diff ci) ;; Too much, delete some.
(delete-region (save-excursion (move-to-column i t) (point)) (point))
)
(t ;; some sort of bug that wants to delete too much. Ignore.
nil)
))
(if (<= cc ci) (move-to-column (max 0 i)))
(/= 0 diff)))
(defun matlab--calc-indent (&optional lvl2 debug-sym)
"Return the appropriate indentation for this line as an integer.
LVL2 is line context level 2.
DEBUG-SYM is for debugging."
;; In case it wasn't provided.
(unless lvl2 (setq lvl2 (matlab-compute-line-context 2)))
;; The first step is to find the current indentation.
;; This is defined to be zero if all previous lines are empty.
(let* ((sem (matlab-calculate-indentation lvl2)))
(when debug-sym
(set debug-sym sem))
;; simplistic
(nth 1 sem)))
(defun matlab--previous-line-indent-recommendation (lvl2)
"Return the indentation recommendation from the previous line of CODE.
Uses the lvl2 context of the current line of code it scans backward from.
This function scans backward over blank lines and comments to find a
line of code. It then scans that line and recommends either:
- same indentation - if just boring old code.
- indent more - if has control block openings on it.
LVL2 is level 2."
(cond
((save-excursion (beginning-of-line) (bobp))
;; Beginning of buffer - do no work, just return 0.
0)
((matlab-line-close-paren-outer-point (matlab-get-lvl1-from-lvl2 lvl2))
;; If we are inside an array continuation, then we shouldn't
;; need to do anything complicated here b/c we'll just ignore
;; the returned value in the next step. Return current indentation
;; of the previous non-empty line.
(matlab-line-indentation (matlab-previous-nonempty-line lvl2)))
(t
;; Else, the previous line might recommend an indentation based
;; on it's own context, like being a block open or continuation.
(let ((prevcmd (matlab-previous-code-line lvl2)))
(matlab-with-context-line prevcmd
(cond
((and (matlab-line-empty-p prevcmd)
(save-excursion (beginning-of-line) (bobp)))
;; Beginning of buffer - do no work, just return 0.
0)
(t
(matlab-next-line-indentation prevcmd))))))))
(defconst matlab-functions-have-end-should-be-true
"This end closes a function definition.\nDo you want functions to have ends? "
"Prompt the user about whether to change `matlab-functions-have-end'.")
(defun matlab--maybe-yes-or-no-p (prompt noninteractive-default)
"When in interactive mode run (yes-or-no-p PROMPT).
When in `noninteractive mode', return NONINTERACTIVE-DEFAULT"
(if noninteractive
noninteractive-default
(yes-or-no-p prompt)))
(defun matlab-calculate-indentation (&optional lvl2)
"Calculate out the indentation of the current line.
Return a list of descriptions for this line. Return format is:
\\='(TYPE DEPTHNUMBER)
where TYPE is one of (comment, code, function, blockstart, blockmid,
blockendless, blockend) DEPTHNUMBER is how many characters to indent
this line.
LVL2."
(unless lvl2 (setq lvl2 (matlab-compute-line-context 2)))
(let ((lvl1 (matlab-get-lvl1-from-lvl2 lvl2))
(tmp nil))
(cond
;; COMMENTS
((matlab-line-comment-p lvl1)
(let ((comment-style (matlab-line-comment-style lvl1)))
(cond
;; BLOCK END undoes body indent
((or (eq comment-style 'block-end)
(eq comment-style 'block-body-prefix)) ; body prefix has same lineup rule
(list 'comment (matlab-line-end-comment-column lvl1)))
;; BLOCK BODY is indented slightly from the start.
((eq comment-style 'block-body)
(list 'comment (+ 2 (matlab-line-end-comment-column lvl1))))
;; HELP COMMENT and COMMENT REGION
((and (matlab-last-guess-decl-p)
(setq tmp (matlab-scan-comment-help-p lvl2)))
(list 'comment-help tmp))
;; BLOCK START is like regular comment
((eq comment-style 'block-start)
;; indent like code, but some users like anti-indent
(list 'comment (+ (matlab--previous-line-indent-recommendation lvl2) matlab-comment-anti-indent))
)
;; COMMENT REGION comments
((matlab-line-comment-ignore-p lvl1)
(list 'comment-ignore 0))
;; COMMENT Continued From Previous Line
((setq tmp (matlab-line-continued-comment)) ;;; TODO : REPLACE
(list 'comment tmp))
(t
(list 'comment (+ (matlab--previous-line-indent-recommendation lvl2) matlab-comment-anti-indent))))))
;; FUNCTION DEFINITION
((matlab-line-declaration-p lvl1)
(cond ((not matlab-functions-have-end)
(setq tmp 0))
;; If we do have ends, check if we are next
;; A function line has intrinsic indentation iff function bodies are
;; not indented and the function line is nested within another function.
((and (not (matlab-indent-function-body-p))
(save-excursion
(beginning-of-line)
;; TODO - maybe replace this? Not usually used.
(matlab--scan-block-backward-up-until 'decl)))
(setq tmp (+ (matlab--previous-line-indent-recommendation lvl2) matlab-indent-level)))
(t
;; If no intrinsic indentation, do not change from current-indentation.
(setq tmp (matlab--previous-line-indent-recommendation lvl2)))
)
(list 'function tmp))
;; END keyword
((matlab-line-end-p lvl1)
(let* ((CTXT (matlab-with-context-line lvl1
(matlab-scan-block-start-context))))
(if (eq (car CTXT) 'decl) ;; declarations (ie - function) is treated special.
(if (or matlab-functions-have-end
(if (matlab--maybe-yes-or-no-p matlab-functions-have-end-should-be-true t)
(matlab-functions-have-end-minor-mode 1)
(error "Unmatched end")))
(if (matlab-indent-function-body-p)
;; Match indentation of the function regardless of any other
;; state that might have gotten messed up.
(setq tmp (matlab-line-indentation (nth 3 CTXT)))
;; Else, no change
(setq tmp (matlab--previous-line-indent-recommendation lvl2))
))
;; Not a declaration. In that case, just match up with the
;; line that the block stat is on.
(setq tmp (matlab-line-indentation (nth 3 CTXT)))))
(list 'blockend tmp))
;; ELSE/CATCH keywords
((matlab-line-block-middle-p lvl1)
(list 'blockmid
(save-excursion
(back-to-indentation)
(if (matlab--scan-block-backward-up)
(error "Missing start block")
(if (not (eq (matlab-on-keyword-p) 'ctrl))
(error "Does not match opening block type"))
(current-column)))))
;; CASE/OTHERWISE keywords
((matlab-line-block-case-p lvl1)
(list 'blockendless
(save-excursion
(back-to-indentation)
(if (matlab--scan-block-backward-up)
(error "Missing switch")
(if (not (eq (matlab-on-keyword-p) 'ctrl))
(error "Wrong type of start block")
(+ (current-column)
(if (listp matlab-case-indent-level)
(car matlab-case-indent-level)
matlab-case-indent-level)))))))
;; END of a MATRIX
((matlab-line-close-paren-p lvl1)
(list 'array-end (let* ((fc (matlab-line-close-paren-inner-char lvl1))
(pc (matlab-line-close-paren-inner-col lvl1))
(mi (assoc fc matlab-maximum-indents))
(max (if mi (if (listp (cdr mi))
(car (cdr mi)) (cdr mi))
nil))
(ind (if mi (if (listp (cdr mi))
(cdr (cdr mi)) (cdr mi))
nil)))
;; apply the maximum limits.
(if (and ind (> (- pc (matlab--previous-line-indent-recommendation lvl2)) max))
(1- ind) ; decor
pc))))
;; CODE LINES
((and (not (matlab-line-close-paren-outer-point lvl1))
(not (matlab-scan-previous-line-ellipsis-p)))
;; Code always matches up against the previous line.
(list 'code (matlab--previous-line-indent-recommendation lvl2)))
;; CONTINUATION but from within a parenthetical: A group of cases for continuation
((matlab-line-close-paren-inner-col lvl1)
(let* ((boc-lvl1 (save-excursion
(matlab-scan-beginning-of-command)
(matlab-compute-line-context 1)))
(ci-boc (matlab-line-indentation boc-lvl1))
;; Scratch vars for paren stuff
(parencol (matlab-line-close-paren-inner-col lvl1))
(parenchar (matlab-line-close-paren-inner-char lvl1))
(parenpt (matlab-line-close-paren-inner-point lvl1))
(parenindent (when parenpt
(save-excursion (goto-char parenpt)
(current-indentation))))
(parenopt (matlab-line-close-paren-outer-point lvl1))
;; What shall we use to describe this for debugging?
(indent-type (cond ((and parenchar (= parenchar ?\()) 'function-call-cont)
((and parencol (= parenindent parencol)) 'array-solo-cont)
((and parenpt (/= parenpt parenopt)) 'nested-array-cont)
(t 'code-cont))) ;; last not likely.
(found-column nil)
)
(save-excursion
(cond
((and
;; CONTINUATION with FUNCTIONs that indent past arg1
(eq indent-type 'function-call-cont)
;; This checks for our special set of functions.
(save-excursion
(goto-char parenpt)
(forward-symbol -1)
(looking-at
matlab-indent-past-arg1-functions))
;; We are in a fcn call, AND the fcn wants to
;; indent past the first argument. Only do so
;; if first arg is a SIMPLE EXPR.
(matlab-navigation-syntax
(goto-char parenpt)
(looking-at "(\\s-*\\(?:\\w\\|\\.\\)+\\s-*,")
(setq found-column (match-end 0)))
(save-excursion
(goto-char found-column) ; move to comma
;; Don't bother if we hit the EOL.
(not (looking-at "\\s-*\\(\\.\\.\\.\\|$\\|)\\)"))))
;; We are in the right kind of place. Lets
;; start indenting
(goto-char found-column)
(skip-chars-forward " \t")
(if (> (- (current-column) parencol)
matlab-arg1-max-indent-length)
(setq tmp (+ parencol matlab-arg1-max-indent-length))
(setq tmp (current-column))))
;; CONTINUATION with PARENS, BRACKETS, etc
(t
(progn
;; TODO - use following?
;; (let* ((mi (assoc parenchar matlab-maximum-indents))
;; (max (if mi (if (listp (cdr mi)) (car (cdr mi)) (cdr mi)) nil))
;; (ind (if mi (if (listp (cdr mi)) (cdr (cdr mi)) (cdr mi)) nil)))
(goto-char parenpt)
(forward-char 1)
(skip-chars-forward " \t")
;; If we are at the end of a line and this
;; open paren is there, then we DON'T want
;; to indent to it. Use the standard
;; indent.
(if (or (not matlab-align-to-paren)
(looking-at "\\.\\.\\.\\|$"))
(if (or (eq indent-type 'function-call-cont)
(and (not (eq indent-type 'array-solo-cont))
(not (eq indent-type 'nested-array-cont))))
;; functions or an array ending on a EOL should
;; do normal code indentation from beginning of cmd
(setq tmp (+ ci-boc matlab-continuation-indent-level))
;; If in an array in an array ending on EOL should
;; indent a wee bit
(setq tmp (+ parencol matlab-array-continuation-indent-level)))
;; current column is location on original line where
;; first bit of text is, so line up with that.
(setq tmp (current-column))
;; TODO - this disables indentation MAXs
;; if we really want to be rid of this
;; we can dump a bunch of logic above too.
;; apply the maximum limits.
;;(if (and ind (> (- (current-column) ci-boc) max))
;; (+ ci-boc ind)
;; (current-column))
)))
))
(list indent-type tmp)))
(t
;; Other kinds of continuations
(let* ((prev-lvl1 (save-excursion
(forward-line -1)
(matlab-compute-line-context 1)))
(prev2-lvl1 (save-excursion
(forward-line -2)
(matlab-compute-line-context 1)))
(ci-prev (matlab-line-indentation prev-lvl1))
(boc (matlab-line-point prev-lvl1))
(boc2 (matlab-line-point prev2-lvl1))
(indent-type (cond ((matlab-line-empty-p lvl1) 'empty)
(t 'code-cont)))
(found-column nil)
)
(save-excursion
(cond
;; Beginning of CONTINUATION has EQUALS
((and (or (not (matlab-line-ellipsis-p prev2-lvl1))
(= boc boc2))
(save-excursion
(goto-char boc)
(while (and (re-search-forward "=" (line-end-position) t)
(matlab-cursor-in-string-or-comment)))
(when (= (preceding-char) ?=)
(skip-chars-forward " \t")
(setq found-column (point)))
))
(save-excursion
(goto-char found-column)
(let ((cc (current-column))
(mi (assoc ?= matlab-maximum-indents))
(prev-indent (matlab--previous-line-indent-recommendation lvl2)))
(if (looking-at "\\.\\.\\.\\|$")
;; In this case, the user obviously wants the
;; indentation to be somewhere else.
(setq tmp (+ prev-indent (cdr (cdr mi))))
;; If the indent delta is greater than the max,
;; use the max + current
(if (and mi (> (- cc prev-indent) (if (listp (cdr mi)) (car (cdr mi)) (cdr mi))))
(setq tmp (+ prev-indent (if (listp (cdr mi)) (cdr (cdr mi)) (cdr mi))))
(setq tmp cc))))))
;; CONTINUATION with nothing special about it.
((or (not (matlab-line-ellipsis-p prev2-lvl1))
(= boc boc2))
;; Continued from non-continued line, push in just a little
;; Do explicit call to next-line-indentation b/c we've already computed the lvl1 context
;; on the beginning of command.
(setq tmp (+ (matlab-next-line-indentation prev-lvl1) matlab-continuation-indent-level)))
;; CONTINUATION from a continued line, nothing special
(t
;; Just match the same
(setq tmp ci-prev))
))
(list indent-type tmp)
))
)))
(defun matlab-next-line-indentation (lvl1)
"Calculate the indentation for lines following this command line.
See `matlab-calculate-indentation' for how the output of this fcn is used.
LVL1."
(save-excursion
(matlab-scan-beginning-of-command lvl1)
(let* ((boc-lvl1 (matlab-compute-line-context 1))
(depthchange (matlab-line-count-block-change boc-lvl1 lvl1))
(end (matlab-line-end-p boc-lvl1)))
;; When DEPTHCHANGE is negative, and END is false, or
;; DEPTHCHANGE < -1, then the NEXT line should have an indent
;; that matches the context at the beginning of the block of
;; the last end.
;;
;; If we don't do this, and a block-start is not the FIRST item
;; on a line, then there is no way for the following line to figure
;; out where it should be.
(if (or (< depthchange -1) (and (= depthchange -1) end))
(let* ((CTXT (matlab-with-context-line boc-lvl1
(matlab-line-end-of-code boc-lvl1)
(matlab-re-search-keyword-backward
(matlab-keyword-regex 'end) (line-beginning-position) t)
(matlab-scan-block-start-context))))
(matlab-line-indentation (nth 3 CTXT)))
;; Indent recommendations not related to ENDS
;; If we are NOT indenting our functions and we are on
;; a declaration, then we should subtract 1 from the beginning count.
;; This fairly simple change removes a big chunk of the old code.
(when (and (not (matlab-indent-function-body-p))
(matlab-line-declaration-p boc-lvl1))
(setq depthchange (1- depthchange)))
;; Remove 1 from the close count if there is an END on the beginning
;; of this line, since in that case, the unindent has already happened.
(when end (setq depthchange (1+ depthchange)))
;; Calculate the suggested indentation.
(+ (current-indentation)
(* matlab-indent-level depthchange)
(* matlab-indent-level (if (matlab-line-block-middle-p boc-lvl1) 1 0))
(* (cdr matlab-case-indent-level) (if (matlab-line-block-case-p boc-lvl1) 1 0))
)))))
(defun matlab-electric-indent-function (char)
"Return t if `electric-indent-mode' should indent after CHAR is inserted.
Returns nil otherwise.
This function recommends indenting after special keywords that
typically cause indentation changes so the code fixes itself up."
(cond ((eq char ?e)
(let ((lvl1 (matlab-compute-line-context 1)))
(or (matlab-line-block-middle-p lvl1)
(matlab-line-block-case-p lvl1))))
((eq char ?d)
(let ((lvl1 (matlab-compute-line-context 1)))
(matlab-line-end-p lvl1)))
(t
nil)))
;;; Comment management========================================================
(defun matlab-comment-return ()
"Handle carriage return for MATLAB comment line."
(interactive)
(newline)
(matlab-comment))
(defun matlab-electric-comment (arg)
"Indent line and insert comment character.
Argument ARG specifies how many %s to insert."
(interactive "P")
(self-insert-command (or arg 1))
(when (or (eq last-command-event ?%)
(and (eq last-command-event ?^) ;; ignore comments move quick back to col0
(matlab-line-comment-p (matlab-compute-line-context 1))
(eq (char-before (1- (point))) ?%)
))
(matlab-indent-line)
(skip-chars-forward "%^")))
(defun matlab-electric-block-comment (arg)
"Indent line and insert block comment end character.
Argument ARG specifies how many %s to insert."
(interactive "P")
(self-insert-command (or arg 1))
(let* ((lvl1 (matlab-compute-line-context 1))
(bc (matlab-line-block-comment-start lvl1)))
(cond ((eq (matlab-line-comment-style lvl1) 'block-start)
(matlab-indent-line)
)
;;ELSE, maybe end of block comment
((eq (matlab-line-comment-style lvl1) 'block-end)
(matlab-indent-line)
(when bc (pulse-momentary-highlight-region bc (point)))
)
)))
(defun matlab-comment ()
"Add a comment to the current line."
(interactive)
(let ((lvl1 (matlab-compute-line-context 1)))
(cond ((region-active-p)
(call-interactively #'comment-or-uncomment-region))
((matlab-line-empty-p lvl1) ; empty line
(insert matlab-comment-line-s)
(back-to-indentation)
(matlab-indent-line)
(skip-chars-forward " \t%"))
((matlab-line-comment-p lvl1) ; comment line
(back-to-indentation)
(matlab-indent-line)
(skip-chars-forward " \t%"))
((matlab-line-end-comment-column lvl1) ; code line w/ comment
(goto-char (matlab-line-end-comment-point lvl1))
(if (> (current-column) comment-column) (delete-horizontal-space))
(if (< (current-column) comment-column) (indent-to comment-column))
;; Now see if the current line is too long to fit. Can we back indent?
(let ((eol-col (- (line-end-position) (line-beginning-position))))
(when (> eol-col fill-column)
(delete-horizontal-space)
(indent-to (- comment-column (- eol-col fill-column)))))
(skip-chars-forward "% \t"))
(t ; code line w/o comment
(end-of-line)
(re-search-backward "[^ \t\n^]" 0 t)
(forward-char)
(delete-horizontal-space)
(if (< (current-column) comment-column)
(indent-to comment-column)
(insert " "))
(insert matlab-comment-on-line-s)))))
(defun matlab-comment-line-break-function (&optional soft)
"Break the current line, and if in a comment, continue it.
Optional argument SOFT indicates that the newline is soft, and not hard."
(interactive)
(if (not (matlab-cursor-in-comment))
(progn (newline);;(matlab-return)
(matlab-indent-line))
;; Will the below fn work in old emacsen?
(if soft (insert-and-inherit ?\n) (newline 1))
(insert "% ")
(matlab-indent-line)
(back-to-indentation)
(skip-chars-forward "% ")))
(defun matlab-comment-region (beg-region end-region arg)
"Comments every line in the region.
Puts `matlab-comment-region-s' at the beginning of every line in the region.
BEG-REGION and END-REGION are arguments which specify the region boundaries.
With non-nil ARG, uncomment the region."
(interactive "*r\nP")
(let ((end-region-mark (make-marker)) (save-point (point-marker)))
(set-marker end-region-mark end-region)
(goto-char beg-region)
(beginning-of-line)
(if (not arg) ;comment the region
(progn (insert matlab-comment-region-s)
(while (and (= (forward-line 1) 0)
(< (point) end-region-mark))
(insert matlab-comment-region-s)))
(let ((com (regexp-quote matlab-comment-region-s))) ;uncomment the region
(if (looking-at com)
(delete-region (point) (match-end 0)))
(while (and (= (forward-line 1) 0)
(< (point) end-region-mark))
(if (looking-at com)
(delete-region (point) (match-end 0))))))
(goto-char save-point)
(set-marker end-region-mark nil)
(set-marker save-point nil)))
(defun matlab-uncomment-region (beg end)
"Uncomment the current region if it is commented out.
Argument BEG and END indicate the region to uncomment."
(interactive "*r")
(matlab-comment-region beg end t))
;;; Filling ===================================================================
(defun matlab-set-comm-fill-prefix ()
"Set the `fill-prefix' for the current (comment) line."
(interactive)
(if (matlab-line-comment-p (matlab-compute-line-context 1))
(setq fill-prefix
(save-excursion
(beginning-of-line)
(let ((e (line-end-position))
(pf nil))
(while (and (re-search-forward "%+[ \t]*\\($$$ \\|\\* \\)?" e t)
(matlab-cursor-in-string)))
(setq pf (match-string 0))
(when (string-match "%\\s-*\\* " pf)
(setq pf (concat "%" (make-string (1- (length pf)) ? ))))
(concat (make-string (- (current-column) (length pf)) ? )
pf))))))
(defun matlab-set-comm-fill-prefix-post-code ()
"Set the `fill-prefix' for the current post-code comment line."
(interactive)
(matlab-set-comm-fill-prefix))
(defun matlab-reset-fill-prefix ()
"Reset the `fill-prefix'."
(setq fill-prefix nil))
(defun matlab-find-convenient-line-break ()
"For the current line, position the cursor where we want to break the line.
Basically, spaces are best, then operators. Always less than `fill-column'
unless we decide we can fudge the numbers. Return nil if this line should
not be broken. This function will ONLY work on code."
;; First of all, if this is a continuation, then the user is
;; requesting that we don't mess with his stuff.
(let ((lvl1 (matlab-compute-line-context 1)))
(if (matlab-line-ellipsis-p lvl1)
nil
(save-restriction
(narrow-to-region (line-beginning-position) (line-end-position))
;; get ourselves onto the fill-column.
(move-to-column fill-column)
(let ((pos nil)
(orig (point)))
(or
;; Next, if we have a trailing comment, use that.
(progn (setq pos (or (matlab-line-comment-p lvl1)
(line-beginning-position)))
(goto-char pos)
(if (and (> (current-column) (- fill-column matlab-fill-fudge))
(< (current-column) (+ fill-column matlab-fill-fudge)))
t
(goto-char orig)
nil))
;; Now, lets find the nearest space (after or before fill column)
(let* ((after (save-excursion
(re-search-forward "[ \t]" nil t)))
(before (save-excursion
(re-search-backward "[ \t]" nil t)))
(afterd (- (or after (line-end-position)) (point)))
(befored (- (point) (or before (line-beginning-position)))))
;; Here, if "before" is actually the beginning of our
;; indentation, then this is most obviously a bad place to
;; break our lines.
(if before
(save-excursion
(goto-char before)
(if (<= (point) (save-excursion
(back-to-indentation)
(point)))
(setq before nil))))
(cond ((and after
(< afterd matlab-fill-fudge)
(< afterd befored))
(goto-char after)
t)
((and before
(< befored matlab-fill-fudge)
(< befored afterd))
(goto-char before)
t)
(t (goto-char orig)
nil)))
;; Now, lets find the nearest backwards
(progn
(re-search-backward "\\(\\s-\\|\\s.\\)+" nil t)
(while (and (looking-at "\\^\\|\\.\\|'")
(re-search-backward "\\(\\s-\\|\\s.\\)+" nil t)))
(if (or (not (looking-at "\\(\\s-\\|\\s.\\)+"))
(<= (point) (save-excursion
(back-to-indentation)
(point))))
(progn
;; We failed in our mission to find anything, or fell
;; of the edge of the earth. If we are out of
;; bounds, lets try again.
(goto-char orig)
(if (re-search-backward "\\s.+" nil t)
t
nil))
;; Ok, we have a good location to break. Check for column
;; and ref against nearest list ending to predict a possibly
;; better break point.
(forward-char 1)
(let ((okpos (current-column))
(startlst (save-excursion
(condition-case nil
(matlab-up-list -1)
(error nil))
(if (save-excursion
(forward-char -1)
(looking-at "\\w"))
(forward-word -1))
(current-column)))
(endlst (save-excursion
(condition-case nil
(matlab-up-list 1)
(error nil))
(current-column))))
;; When evaluating list fudge factors, breaking on the
;; edge of a list, or at the beginning of a function
;; call can be more valuable than breaking on a symbol
;; of a mid-sized list. As such, allow double-fudge
;; for lists.
(cond
;; First, pick the end of a list.
((and (< endlst matlab-fill-fudge-hard-maximum)
(<= endlst (+ fill-column matlab-fill-fudge))
(or (<= (* matlab-fill-fudge 2) (- endlst okpos))
(<= endlst fill-column))
(save-excursion
(move-to-column endlst)
(not (looking-at "\\^"))))
(move-to-column endlst)
t)
;; Else, back up over this list and poke around
((>= (* 2 matlab-fill-fudge) (- okpos startlst))
(move-to-column startlst)
t)
;; Oh well, just do this symbol.
(t (move-to-column okpos)
t)))))
;; Well, this just sucks
(progn (goto-char orig)
nil)))))))
(defun matlab-auto-fill ()
"Do auto filling.
Set variable `auto-fill-function' to this symbol to enable MATLAB style auto
filling which will automatically insert `...' and the end of a line."
(interactive)
(let ((fill-prefix fill-prefix) ;; safe way of modifying fill-prefix.
(fill-column (- fill-column
(if matlab-fill-count-ellipsis-flag
(save-excursion
(move-to-column fill-column)
(if (not (bobp))
(forward-char -1))
(if (matlab-cursor-in-string)
4 3))
0)))
(lvl1 (matlab-compute-line-context 1)))
(if (> (current-column) fill-column)
(cond
((matlab-line-comment-ignore-p lvl1)
nil)
((or (matlab-line-comment-p lvl1)
(and (save-excursion (move-to-column fill-column)
(matlab-cursor-in-comment))
(matlab-line-comment-p lvl1)))
;; If the whole line is a comment, do this.
(matlab-set-comm-fill-prefix) (do-auto-fill)
(matlab-reset-fill-prefix))
((and (not (or (matlab-line-comment-p lvl1) (matlab-line-empty-p lvl1)))
(not (matlab-line-ellipsis-p lvl1))
matlab-fill-code)
;; If we are on a code line, we ellipsify before we fill.
(let ((m (make-marker)))
(move-marker m (point))
(set-marker-insertion-type m t)
(if (not (matlab-find-convenient-line-break))
nil
(if (not (save-excursion
(forward-char -1)
(matlab-cursor-in-string)))
(progn
(delete-horizontal-space)
(insert " " matlab-ellipsis-string "\n")
(matlab-indent-line))
(if matlab-fill-strings-flag
(let ((pos (point))
(pos2 nil))
(while (and (re-search-backward "'" (line-beginning-position) t)
(progn (forward-char -1)
(looking-at "''"))))
(setq pos2 (point))
;; Check if there is already an opening bracket or if string is continued
(if (or (looking-at "\\[")
(save-excursion (skip-chars-backward " \t")
(forward-char -1)
(looking-at "\\["))
(progn
(beginning-of-line)
(skip-chars-backward (concat " \t\n" matlab-ellipsis-string))
(if (> (point) (point-min))
(progn
(forward-char -1)
(looking-at (concat "'\\s-*" matlab-ellipsis-string))))))
(goto-char pos)
(goto-char pos2)
(forward-char 1)
(insert "[")
(goto-char pos)
(forward-char 1))
;(delete-horizontal-space)
(skip-chars-forward " \t")
(insert "' " matlab-ellipsis-string "\n")
(matlab-indent-line)
(insert "'")
;; Re scan forward for the end of the string. Add an end bracket
;; if there isn't one already. Also add an apostrophe if necessary.
(if (not (looking-at "'\\s-*]"))
(save-excursion
(if (not (re-search-forward "[^']'\\([^']\\|$\\)" (line-end-position) t))
(progn
(end-of-line)
(insert "']")
(move-marker m (- (point) 2)))
(re-search-backward "'")
(cond ((looking-at "'\\s-*]")
nil ; already in an array.
)
((or (looking-at "'\\s-*$") (looking-at "'\\s-*[^]]"))
;; in a string, add an array end.
(forward-char 1)
(insert "]"))
((looking-at "'\\s-*\\.\\.\\.")
;; Already extended to next line ... leave it alone.
nil)
))))
))))
(goto-char m)))
))))
(defun matlab-justify-line ()
"Delete space on end of line and justify."
(interactive)
(save-excursion
(end-of-line)
(delete-horizontal-space)
(justify-current-line)))
(defun matlab-fill-paragraph (&optional justify)
"When in a comment, fill the current paragraph.
Paragraphs are always assumed to be in a comment.
JUSTIFY is passed to `fill-comment-paragraph'."
(interactive "P")
(when (nth 4 (syntax-ppss)) ;; In comment?
(fill-comment-paragraph justify))
t)
;;; Show Paren Mode support ==================================================
(defun matlab-show-paren-or-block ()
"Function to assign to `show-paren-data-function'.
Highlights parens and if/end type blocks.
Returns a list: \(HERE-BEG HERE-END THERE-BEG THERE-END MISMATCH)"
(unless (matlab-cursor-in-string-or-comment) ; Only do this if not in a string.
(save-match-data
(save-excursion
(let ((here-beg nil)
(here-end nil)
(there-beg nil)
(there-end nil)
(mismatch nil)
(noreturn nil)
(here-syntax (syntax-after (point)))
(here-prev-syntax (syntax-after (1- (point))))
(there-syntax nil)
(here-char (char-after))
(here-prev-char (preceding-char))
(there-char nil)
)
;; Notes about fcns used here:
;; (syntax-after ) returns ( 4 c ) or ( 5 c )
;; where 4 == open paren and 5 == close paren
;; and c is the char that closes the open or close paren
;; These checks are much faster than regexp
;; Step one - check for parens
(cond ((and here-syntax (= (syntax-class here-syntax) 4)) ; open paren
(setq here-beg (point)
here-end (1+ (point)))
(condition-case nil
(progn
(matlab-move-simple-sexp-internal 1)
(setq there-beg (- (point) 1)
there-end (point)
there-syntax (syntax-after there-beg)
there-char (char-after there-beg))
(when (or (/= (syntax-class there-syntax) 5)
(/= (cdr there-syntax) here-char)
(/= (cdr here-syntax) there-char)) ; this part seems optional
;(message "ts = %S hs=%S tc = %d hc = %d" there-syntax here-syntax there-char here-char)
(setq mismatch t))
)
(error (setq mismatch t))))
((and here-prev-syntax (= (syntax-class here-prev-syntax) 5))
(setq here-beg (1- (point))
here-end (point))
(condition-case nil
(progn
(matlab-move-simple-sexp-backward-internal 1)
(setq there-end (+ (point) 1)
there-beg (point)
there-syntax (syntax-after there-beg)
there-char (char-after there-beg))
(when (or (/= (syntax-class there-syntax) 4)
(/= (cdr there-syntax) here-prev-char)
(/= (cdr here-prev-syntax) there-char)) ; this part seems optional
(setq mismatch t))
)
(error (setq mismatch t))))
(t
;; Part 2: Are we looking at a block start/end, such as if end;
;; If we are on a word character, or just after a
;; word character move back one symbol. This will let
;; us use the block begin / end matchers to figure
;; out where we are.
(let ((startsym (matlab--mk-keyword-node))
(endsym nil)
)
(when (matlab--valid-keyword-node startsym)
(goto-char (nth 2 startsym))
(condition-case nil
(cond
((eq (car startsym) 'decl)
;; We are looking at a 'function' start.
;; Since functions may not have an end, we need
;; to handle this case special.
(setq here-beg (nth 2 startsym)
here-end (nth 3 startsym))
(if (matlab--scan-block-forward)
;; if context is returned, failed to find something
;; this is a mismatch if fcns don't have end.
(setq mismatch t)
;; Otherwise, we found something good
(setq endsym (matlab--mk-keyword-node))
(if (not endsym)
;; End of buffer on function w/ no end?
(if matlab-functions-have-end
(setq mismatch t)
(setq mismatch nil))
;; Found a symbol
(setq there-beg (nth 2 endsym)
there-end (nth 3 endsym)
mismatch nil)
) ))
;; Misc block starts
((memq (car startsym) '(ctrl args mcos))
;; We are at the beginning of a block. Navigate forward to the end
;; statement.
(setq here-beg (nth 2 startsym)
here-end (nth 3 startsym))
(if (matlab--scan-block-forward)
(setq mismatch t)
(setq endsym (matlab--mk-keyword-node))
(if (not endsym)
(setq mismatch t)
;; Found a symbol
(setq there-beg (nth 2 endsym)
there-end (nth 3 endsym)
mismatch nil))))
;; Misc block middles an ends
((memq (car startsym) '(end mid case))
;; We are at the end of a block or on a middle keyword
;; like else, catch, or case. In all these go to beginning.
(setq here-beg (nth 2 startsym)
here-end (nth 3 startsym))
(goto-char here-beg)
(if (matlab--scan-block-backward-up)
(setq mismatch t)
(setq endsym (matlab--mk-keyword-node))
(if (not endsym)
(setq mismatch t)
;; Found a symbol
(setq there-beg (nth 2 endsym)
there-end (nth 3 endsym)
mismatch nil))))
;; No block matches, just return nothing.
(t (setq noreturn t))
)
;; An error occurred. Assume 'here-*' is set, and setup mismatch.
(error (setq mismatch t))))
)))
(if noreturn
nil
(list here-beg here-end there-beg there-end mismatch) ))))))
;;; Electric pair mode ============================================
(declare-function electric-pair-default-inhibit "elec-pair")
(defun matlab-electric-pair-inhibit-predicate (char)
"Return non-nil if `electric-pair-mode' should not pair this CHAR."
(or (funcall #'electric-pair-default-inhibit char)
(cond
((and (eq char ?')
(progn (forward-char -1)
(looking-at "\\w\\|\\s_\\|\\.")))
t)
))
)
;;; M Code verification ============================================
(defun matlab-toggle-show-mlint-warnings ()
"Toggle `matlab-show-mlint-warnings'."
(interactive)
(setq matlab-show-mlint-warnings (not matlab-show-mlint-warnings))
(if matlab-highlight-cross-function-variables
(if matlab-show-mlint-warnings
(mlint-buffer) ; became true, recompute mlint info
(mlint-clear-warnings))) ; became false, just remove highlighting
;; change mlint mode altogether
(mlint-minor-mode
(if (or matlab-highlight-cross-function-variables
matlab-show-mlint-warnings)
1 -1)))
(defun matlab-toggle-highlight-cross-function-variables ()
"Toggle `matlab-highlight-cross-function-variables'."
(interactive)
(setq matlab-highlight-cross-function-variables
(not matlab-highlight-cross-function-variables))
(if matlab-show-mlint-warnings
(if matlab-highlight-cross-function-variables
(mlint-buffer) ; became true, recompute mlint info
; became false, just remove highlighting ...
(mlint-clear-cross-function-variable-highlighting)))
(mlint-minor-mode
(if (or matlab-highlight-cross-function-variables
matlab-show-mlint-warnings)
1 -1))) ; change mlint mode altogether
;;; Verify / Auto-fix ============================================
(defun matlab-mode-verify-fix-file-fn ()
"Verify the current buffer from `write-contents-hooks'."
(if matlab-verify-on-save-flag
(matlab-mode-verify-fix-file (> (point-max)
matlab-block-verify-max-buffer-size)))
;; Always return nil.
nil)
(defun matlab-mode-verify-fix-file (&optional fast)
"Verify the current buffer satisfies all M things that might be useful.
We will merely loop across a list of verifiers/fixers in
`matlab-mode-verify-fix-functions'.
If optional FAST is non-nil, do not perform usually lengthy checks."
(interactive)
(save-excursion
;; Always re-validate if functions have end.
(matlab-mode-vf-guess-functions-have-end fast)
;; Loop over the options.
(mapc (lambda (func) (funcall func fast))
matlab-mode-verify-fix-functions))
(when (called-interactively-p 'interactive)
(message "Done.")))
;;
;; Add more auto verify/fix functions here!
;;
(defun matlab-mode-vf-guess-functions-have-end (&optional fast)
"Look at the current buffer state and decide determine if functions have end.
If this is already known, no action is taken.
FAST is ignored."
(ignore fast)
(let ((filetype (matlab-guess-script-type)))
;; Lets if the file if we were in still doesn't know what to do
;; a bout ends, and re-assert what we should do.
(cond
;; If the file is empty of code (from before, or just now)
;; then optimize out this step.
((eq filetype 'empty)
;; If user deleted content, go back into guess mode.
(setq matlab-functions-have-end 'guess)
(matlab-functions-have-end-minor-mode 1)
)
;; If there is just bad syntax somewhere, skip it with a notice.
((save-excursion (goto-char (point-max)) (matlab-in-list-p))
(setq matlab-functions-have-end 'guess)
(matlab-functions-have-end-minor-mode 1)
(message "Unterminated list - skipping block check"))
;; If we are in guess mode, but user added content, we can
;; not have a fresh new guess.
((eq matlab-functions-have-end 'guess)
(let ((guess (matlab-do-functions-have-end-p 'no-navigate)))
(if guess (matlab-functions-have-end-minor-mode 1)
(matlab-functions-have-end-minor-mode -1)))
)
;; If we are in no-end mode, BUT the filetype is wrong, say something.
((and (not matlab-functions-have-end) (or (eq filetype 'script) (eq filetype 'class)))
(message "Type of file detected no longer matches `matlab-functions-have-end' of nil, assume t.")
(matlab-functions-have-end-minor-mode 1)
(sit-for 1)
)
;; If functions have end but the style changes, re-up the lighter on the minor mode.
;; note, we can ignore that 'empty == 'guess b/c handled earlier.
((and matlab-functions-have-end (not (eq matlab-functions-have-end filetype)))
(matlab-functions-have-end-minor-mode 1))
;; If the variable was specified and file is not empty, then do nothing.
;; TODO - maybe we should force to t for scripts and classes?
) ;; end cond
))
(defun matlab-mode-vf-functionname (&optional fast)
"Verify/Fix the function name of this file.
Optional argument FAST is ignored."
(ignore fast)
(matlab-navigation-syntax
(goto-char (point-min))
(matlab-find-code-line)
(let ((bn (file-name-sans-extension
(file-name-nondirectory (buffer-file-name))))
(fcn (matlab-line-declaration-name)))
(when (and fcn (eq (car fcn) 'function)
(not (string= (nth 1 fcn) bn)))
(unless (not (matlab-mode-highlight-ask
(nth 2 fcn) (nth 3 fcn)
"Function name and file names are different. Fix function name?"))
(goto-char (nth 2 fcn))
(delete-region (nth 2 fcn) (nth 3 fcn))
(insert bn))))))
(defun matlab-mode-vf-classname (&optional fast)
"Verify/Fix the class name of this file.
Optional argument FAST is ignored."
(ignore fast)
(matlab-navigation-syntax
(goto-char (point-min))
(matlab-find-code-line)
(let ((bn (file-name-sans-extension
(file-name-nondirectory (buffer-file-name))))
(class (matlab-line-declaration-name)))
(when (and class (eq (car class) 'classdef)
(not (string= (nth 1 class) bn)))
(unless (not (matlab-mode-highlight-ask
(nth 2 class) (nth 3 class)
"Class name and file names are different. Fix class name?"))
(goto-char (nth 2 class))
(delete-region (nth 2 class) (nth 3 class))
(insert bn))))))
(defun matlab-mode-vf-add-ends (&optional fast)
"Verify/Fix adding ENDS to functions.
Optional argument FAST skips this test in fast mode."
;; We used to do extra checking here, but now we do
;; checking in the verifier
(when (not fast)
(matlab-mode-vf-block-matches-forward nil t)
))
(defun matlab-mode-vf-block-matches-forward (&optional fast addend)
"Verify/Fix unterminated (or un-ended) blocks.
This only checks block regions like if/end.
If `matlab-mode-vf-add-ends' is part of your verify list, this will
not be needed.
Optional argument FAST causes this check to be skipped.
Optional argument ADDEND asks to add ends to functions, and is used
by `matlab-mode-vf-add-ends'"
(let ((scanstate nil)
(exit nil)
;; lets avoid asking questions based on id of this file
;; and if ends are optional in the first place.
(filetype (matlab-guess-script-type))
)
;; Before checking syntax, lets re-look at the file if we were in
;; guess mode and re-assert what we should do.
(when (or (eq filetype 'empty)
(save-excursion (goto-char (point-max)) (matlab-in-list-p)))
;; In a bad state - go fast.
(setq fast t))
;; Navigate our sexp's and make sure we're all good.
(matlab-navigation-syntax
(goto-char (point-min))
(while (and (not fast) (not exit)
(matlab--scan-next-keyword 'decl (point-max)))
(forward-word -1)
(if (not (setq scanstate (matlab--scan-block-forward)))
;; This scan returns any leftover unterminated blocks.
;; If it is empty, we are fine.
(when (eq matlab-functions-have-end 'guess)
(matlab-functions-have-end-minor-mode 1))
;; If we had an error, but none of the above, try to fix?
;; Get locations out of the found keyword.
(save-excursion
(let ((s (nth 2 (car scanstate)))
(e (nth 3 (car scanstate))))
(goto-char s)
;; Try to add an end to the broken block
(if addend
(if (matlab-mode-highlight-ask
s e
"Unterminated block. Try to add end?")
(matlab-mode-vf-add-end-to-this-block)
;; Else, mark this buffer as not needing ends,
;; but ONLY if a function buffer
(when (eq filetype 'function)
(if (matlab-mode-highlight-ask
s e
"Should functions have end in this file?")
(matlab-functions-have-end-minor-mode 1)
(matlab-functions-have-end-minor-mode -1)
(message "Marking buffer as not needing END for this session.")
(sit-for 1))))
;; We aren't in addend mode then we are in plain verify
;; mode
(if (matlab-mode-highlight-ask
s e
"Unterminated block. Continue anyway?")
nil ;; continue anyway.
(error "Unterminated Block found!")))
))) ;; save-excursion, let, if
(message "Block-check: %d%%" (/ (/ (* 100 (point)) (point-max)) 2))))))
(defun matlab-mode-vf-add-end-to-this-block ()
"Add an end to the current block the cursor is on."
;; Our best guess is just in front of a 'function' block, or at the end
;; of the current buffer.
(save-excursion
(end-of-line)
(if (re-search-forward "^function " nil t)
(progn
(beginning-of-line)
(save-excursion (insert "end\n\n"))
(matlab-indent-line))
(goto-char (point-max))
(save-excursion (insert "\nend\n\n"))
(matlab-indent-line))))
;;; Utility for verify/fix actions if you need to highlight
;; a section of the buffer for the user's approval.
(defun matlab-mode-highlight-ask (begin end prompt)
"Highlight from BEGIN to END while asking PROMPT as a yes-no question."
(let ((mo (make-overlay begin end (current-buffer)))
(show-paren-mode nil) ;; this will highlight things we often ask about. disable.
(ans nil))
(condition-case nil
(progn
(overlay-put mo 'face 'matlab-region-face)
(setq ans (y-or-n-p prompt))
(delete-overlay mo))
(quit (delete-overlay mo) (error "Quit")))
ans))
;;; Quiesce an M file to remove accidental display of ANS during a run.
;; Useful if you have random outputs and you don't know where they are from,
;; or before compiling to standalone where some functions now have outputs
;; that did not have outputs earlier.
;;
;; You probably don't want this as a default verify function
(defvar matlab-quiesce-nosemi-regexp "\\s-*\\(function\\|parfor\\|for\\|spmd\\|while\\|try\\|catch\\|\
switch\\|otherwise\\|case\\|break\\|if\\|else\\|end\\|return\\|disp\\|\
$\\|%\\)"
"Regular expression used to detect if a semicolon is needed at the end of a line.")
(defun matlab-mode-vf-quiesce-buffer (&optional fast)
"Find all commands that do not end in ;, and add one.
This has the effect of removing any extraneous output that may not be
desired. Optional argument FAST is not used."
(interactive)
(ignore fast)
(save-excursion
(push-mark)
(goto-char (point-min))
(let ((msgpos 0) (dir .2))
(while (not (save-excursion (end-of-line) (eobp)))
(message (aref [ "Scanning o...." "Scanning .o..." "Scanning ..o.."
"Scanning ...o." "Scanning ....o" ] (floor msgpos)))
(setq msgpos (+ msgpos dir))
(if (or (> msgpos 5) (< msgpos 0)) (setq dir (- dir)
msgpos (+ (* 2 dir) msgpos)))
(matlab-scan-end-of-command)
(when (and (matlab-line-end-of-code-needs-semicolon-p)
(matlab-mode-highlight-ask (point) (+ 1 (point))
"Add Semi colon here? "))
(insert ";"))
(forward-line 1))))
(message "Scanning .... done"))
;;; matlab-mode debugging =====================================================
(defun matlab-show-line-info ()
"Display type and attributes of current line. Used in debugging."
(interactive)
(matlab-navigation-syntax
(let* ((msg "")
(lvl2 (matlab-compute-line-context 2))
(lvl1 (matlab-get-lvl1-from-lvl2 lvl2))
(lvl1msg (matlab-describe-line-indent-context lvl1 t))
(indent nil)
(nexti (matlab-next-line-indentation lvl1))
(defn (matlab-current-defun))
)
(setq msg (concat msg
"Line Syntax: " lvl1msg
" | Preferred Indents: This: " (int-to-string (nth 1 indent))
" Next: " (int-to-string nexti)
" Indent Style: " (symbol-name (car indent))
))
(when (matlab-line-ellipsis-p lvl1)
(setq msg (concat msg " w/cont")))
(when (matlab-line-end-comment-point lvl1)
(setq msg (concat msg " w/comm")))
(when defn
(setq msg (concat msg " Defun: " defn)))
(message "%s" msg))))
(provide 'matlab)
;;; matlab.el ends here
;; LocalWords: Wette mwette edu Ludlam eludlam defconst compat easymenu defcustom mfiles objc elec
;; LocalWords: CASEINDENT COMMANDINDENT sexp sg Fns Alist symbolp defun mmode setq decl memq progn
;; LocalWords: vf functionname booleanp keymap torkel fboundp gud ebstop mlgud ebclear mw
;; LocalWords: ebstatus mlg mlgud's subjob featurep defface commanddual cellbreak cellbreaks cdr
;; LocalWords: animatedline rlim thetalim cartesian stackedplot bubblechart swarmchart wordcloud
;; LocalWords: bubblecloud heatmap parallelplot fcontour anim polarplot polarscatter polarhistogram
;; LocalWords: polarbubblechart goeplot geoscatter geobubble geodensity fimplicit fsurf tiledlayout
;; LocalWords: nexttile uicontext mld flintmax keywordlist mapconcat vardecl flb fle blockmatch bol
;; LocalWords: eol tm newmdata Classdefs dem Imenu imenu boundp alist reindent unindent vers Sexp's
;; LocalWords: Defuns fn minibuffer eobp autoend noerror returnme Unstarted parentblock defuns bobp
;; LocalWords: noprogress minibufferp bolp eolp calc funcall ci sem prevcmd DEPTHNUMBER blockstart
;; LocalWords: blockmid blockendless blockend CTXT listp fc pc boc parencol parenchar parenpt tmp
;; LocalWords: parenindent parenopt FUNCTIONs MAXs prev startpnt depthchange bc emacsen afterd md
;; LocalWords: befored okpos startlst endlst ellipsify noreturn hs tc hc startsym endsym mapc func
;; LocalWords: filetype bn nondirectory scanstate sexp's nosemi msgpos fullindent nexti defn sw
;; LocalWords: classdef's aref parens
|