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
|
;;; func-menu.el --- Jump to a function within a buffer.
;;;
;;; David Hughes <d.hughes@videonetworks.com>
;;; Last modified: David Hughes 13th January 1997
;;; Version: 2.45
;;; Keywords: tools, c, lisp
;;;
;;; 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 2, 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 this program; if not, write to the Free Software
;;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;;;
;;; Synched up with: Not in FSF.
;;;
;;; Installation:
;;; =============
;;; (require 'func-menu)
;;; (define-key global-map 'f8 'function-menu)
;;; (add-hook 'find-file-hooks 'fume-add-menubar-entry)
;;; (define-key global-map "\C-cl" 'fume-list-functions)
;;; (define-key global-map "\C-cg" 'fume-prompt-function-goto)
;;; (define-key global-map '(shift button3) 'mouse-function-menu)
;;; (define-key global-map '(meta button1) 'fume-mouse-function-goto)
;;;
;;; Description:
;;; ============
;;; Suppose you have a file with a lot of functions in it. Well, this package
;;; makes it easy to jump to any of those functions. The names of the
;;; functions in the current buffer are automatically put into a popup menu,
;;; you select one of the function-names and the point is moved to that very
;;; function. The mark is pushed on the mark-ring, so you can easily go back
;;; to where you were. Alternatively, you can use enter the name of the
;;; desired function via the minibuffer which offers completing read input. In
;;; addition, the name of the function before point is optionally displayed in
;;; the modeline.
;;;
;;; Support for non X Window versions of Emacs:
;;; ===========================================
;;; This package can also be used for non X versions of Emacs. In this case,
;;; only modeline display and completing read input from the minibuffer are
;;; possible.
;;;
;;; Modes supported:
;;; ================
;;; Ada, Assembly, Bacis2, BibTex, C++, C, Dired, Ehdm, ELisp, FORTRAN, Ksh,
;;; Latex, Lelisp, Makefile, Maple, Modula2, Modula3, Outline, Pascal, Perl,
;;; Postscript, Prolog, PVS, Python, SGML, Scheme, Tcl, Verilog
;;;
;;; Acknowledgements:
;;; =================
;;;
;;; Fix to fume-function-name-regexp-c
;;; Jonathan Edwards <edwards@intranet.com>
;;;
;;; Speedup for fume-cc-inside-comment
;;; Peter Pezaris <pez@dwwc.com>
;;;
;;; Made menu placement more flexible
;;; Bob Weiner <weiner@altrasoft.com>
;;;
;;; Fortran90 regexp
;;; John Turner <turner@xdiv.lanl.gov>
;;;
;;; Patch to error trap in fume-rescan-buffer
;;; Andy Piper <andyp@parallax.co.uk>
;;;
;;; Java support
;;; Bob Weiner <weiner@altrasoft.com>
;;; Heddy Boubaker <boubaker@dgac.fr>
;;;
;;; Patch for fume-rescan-buffer{-trigger}
;;; Christoph Wedler <wedler@vivaldi.fmi.uni-passau.de>
;;;
;;; Patch for fume-tickle-f-to-b
;;; Michael Sperber <sperber@informatik.uni-tuebingen.de>
;;;
;;; Cleanup suggestions
;;; Jonathan Stigelman <stig@hackvan.com>
;;;
;;; Idea for jumping directly with a mouse click
;;; Marc Paquette <Marc.Paquette@Softimage.COM>
;;;
;;; Prolog mode additions based on functions for Postscript mode
;;; Laszlo Teleki <laszlo@ipb.uni-bonn.de>
;;;
;;; Idea for displaying function name in modeline
;;; Paul Filipski <filipski@blackhawk.com>
;;;
;;; Fame mode support
;;; Cooper Vertz <cooper@prod2.imsi.com>
;;;
;;; Made fume-match-find-next-function-name iterative, not recursive, to avoid
;;; blowing out the emacs stack on big files with lots of prototypes.
;;; Joe Marshall <jrm@odi.com>
;;;
;;; Verilog support
;;; Matt Sale <mdsale@icdc.delcoelect.com>
;;;
;;; Minibuffer interface & Pascal support
;;; Espen Skoglund <espensk@stud.cs.uit.no>
;;;
;;; Python support
;;; Shuichi Koga <skoga@virginia.edu>
;;;
;;; Maple support
;;; Luc Tancredi <Luc.Tancredi@sophia.inria.fr>
;;;
;;; Combined Tcl and C++ function finder
;;; Andy Piper <ajp@eng.cam.ac.uk>
;;;
;;; Perl Support
;;; Alex Rezinsky <alexr@msil.sps.mot.com>
;;; Michael Lamoureux <lamour@engin.umich.edu>
;;;
;;; Suggested mouse interface
;;; Raymond L. Toy <toy@soho.crd.ge.com>
;;;
;;; Dired support
;;; Improved modula support
;;; Numerous code cleanups
;;; Norbert Kiesel <norbert@i3.informatik.rwth-aachen.de>
;;;
;;; Makefile support
;;; Suggested multi-choice sublisting
;;; Paul Filipski & Anthony Girardin <{filipski,girardin}@blackhawk.com>
;;;
;;; Suggestions for menubar entry
;;; Andy Piper <ajp@eng.cam.ac.uk>
;;;
;;; Ada support
;;; Scott Evans <gse@ocsystems.com>
;;; Michael Polo <mikep@polo.mn.org> <mikep@cfsmo.honeywell.com>
;;;
;;; Scheme, BibTeX, Ehdm & PVS support
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
;;;
;;; Modula support
;;; Geoffrey Wyant <gwyant@cloyd.east.sun.com>
;;;
;;; SGML support; submenu indexing
;;; Thomas Plass <thomas.plass@mid-heidelberg.de>
;;;
;;; Extensions to fume-function-name-regexp-lisp
;;; Vladimir Alexiev <vladimir@cs.ualberta.ca>
;;; Kari Heinola <kph@dpe.fi>
;;; Milo A. Chan <chan@jpmorgan.com>
;;; Jack Repenning <jackr@step7.informix.com>
;;; Cedric Beust <Cedric.Beust@sophia.inria.fr>
;;; Joachim Krumnow <krumnow@srsir02.ext.sap-ag.de>
;;;
;;; ksh support
;;; Philippe Bondono <bondono@vnet.ibm.com>
;;;
;;; FORTRAN support
;;; Paul Emsley <paule@chem.gla.ac.uk>
;;; Raymond L. Toy <toy@soho.crd.ge.com>
;;; Richard Cognot <cognot@elfgrc.co.uk>
;;; Greg Sjaardema <gdsjaar@sandia.gov>
;;;
;;; Latex support
;;; Wolfgang Mettbach <wolle@uni-paderborn.de>
;;; Paolo Frasconi <paolo@mcculloch.ing.unifi.it>
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
;;; Philippe Queinnec <queinnec@cenatls.cena.dgac.fr>
;;;
;;; Assembly support
;;; Bob Weiner <weiner@altrasoft.com>
;;;
;;; Removal of cl dependencies
;;; Russell Ritchie <russell@gssec.bt.co.uk>
;;;
;;; C++ mode enhancemencements for func-menu
;;; Andy Piper <ajp@eng.cam.ac.uk>
;;; Kevin R. Powell <powell@csl.ncsa.uiuc.edu>
;;; Mats Lidell <mats.lidell@eua.ericsson.se>
;;; Mike Battaglia <mbattagl@spd.dsccc.com>
;;; Oliver Schittko <schittko@fokus.gmd.de>
;;; Tom Murray <tmurray@hpindck.cup.hp.com>
;;; Russell Ritchie <russell@gssec.bt.co.uk>
;;;
;;; Tcl mode additions for func-menu
;;; Andy Piper <ajp@eng.cam.ac.uk>
;;; Jean-Michel Augusto <augusto@eurecom.fr>
;;; Dr P.G. Sjoerdsma <pgs1002@esc.cam.ac.uk>
;;;
;;; Postscript mode additions for func-menu
;;; Leigh Klotz <klotz@adoc.xerox.com>
;;;
;;; Suggestions for popup menu positioning
;;; Marc Gemis <makke@wins.uia.ac.be>
;;;
;;; Original FSF package
;;; Ake Stenhoff <etxaksf@aom.ericsson.se>
;;; Code
(eval-when-compile
(byte-compiler-options
(optimize t)
(warnings (- free-vars unresolved))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;; Environment Initialisation ;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defconst fume-version "2.45")
(defgroup fume nil
"Jump to a function within a buffer."
:tag "Func Menu"
:group 'tools
:group 'c
:group 'lisp)
(defconst fume-developer "David Hughes <d.hughes@videonetworks.com>")
(defun fume-about ()
(interactive)
(sit-for 0)
(display-message 'no-log
(format "Func-Menu version %s, 1996 %s" fume-version fume-developer)))
(defconst fume-running-xemacs (string-match "XEmacs\\|Lucid" emacs-version))
(defmacro fume-defvar-local (var value &optional doc)
"Defines SYMBOL as an advertised variable.
Performs a defvar, then executes `make-variable-buffer-local' on
the variable. Also sets the `permanent-local' property, so that
`kill-all-local-variables' (called by major-mode setting commands)
won't destroy func-menu control variables."
(` (progn
(if (, doc)
(defvar (, var) (, value) (, doc))
(defvar (, var) (, value)))
(make-variable-buffer-local '(, var))
(put '(, var) 'permanent-local t))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;; Backward compatibility hacks for older versions of XEmacs ;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(or (fboundp 'defalias)
;; poor man's defalias
(defun defalias (sym newdef)
"Set SYMBOL's function definition to NEWVAL, and return NEWVAL.
Associates the function with the current load file, if any."
(fset sym (symbol-function newdef))))
(or (fboundp 'selected-frame)
(defalias 'selected-frame 'selected-screen))
(if (fboundp 'locate-window-from-coordinates)
;; Older versions of XEmacs need a more robust version of 'event-window'
(defun fume-event-window (event)
(or (event-window event)
(locate-window-from-coordinates
(selected-frame) (list (event-x event) (event-y event)))
(locate-window-from-coordinates
(selected-frame) (list (event-x event) (1- (event-y event))))))
;; In post 19.11 versions of XEmacs 'event-window' now works acceptably
(defalias 'fume-event-window 'event-window))
(or (fboundp 'shrink-window-if-larger-than-buffer)
;; Win-Emacs doesn't have this goodie
(defun shrink-window-if-larger-than-buffer (&optional window reqd-height)
"Shrink WINDOW to the smallest no of lines needed to display its buffer,
or to optional REQUIRED-HEIGHT if and only if that is larger. Does nothing if
the buffer contains more lines than the present window height."
(interactive)
(let* ((OriginalWindow (selected-window))
(TargetWindow (select-window (or window OriginalWindow))))
(or (one-window-p t)
(and reqd-height (>= reqd-height (window-height)))
(< (window-height) (1+ (count-lines (point-min) (point-max))))
(let ((calc-reqd-height
(if truncate-lines
(1+ (count-lines (point-min) (point-max)))
(save-excursion
(let ((count 0)
linew
(windw (window-width)))
(goto-char (point-min))
(while (not (eobp))
(setq linew (1+ (progn (end-of-line)
(current-column)))
count (+ count
(/ linew windw)
(min (% linew windw) 1)))
(beginning-of-line 2))
count)))))
(setq reqd-height (1+ (max calc-reqd-height
(1- window-min-height)
(or reqd-height 0))))
(if (> (window-height) reqd-height)
(let* (wc spare bonus share wins shrunkwins)
(walk-windows
'(lambda (w)
(select-window w)
(if (or (eq w TargetWindow)
(> (1+ (count-lines (point-min) (point-max)))
(1- (window-height w))))
(setq wins (cons w wins))
(if (= (1+ (count-lines (point-min) (point-max)))
(1- (window-height w)))
(setq shrunkwins (cons w shrunkwins)))))
'nomini)
(setq wc (1- (length wins))
spare (- (window-height TargetWindow) reqd-height)
share (if (> wc 0) (/ spare wc))
bonus (if (> wc 0) (% spare wc))
shrunkwins (if (zerop wc) nil shrunkwins)
wins (mapcar (function
(lambda (w)
(cons w (list
(if (eq w TargetWindow)
reqd-height
(+ (window-height w)
share
(if (zerop bonus)
0
(setq bonus
(1- bonus))
1)))
(window-start w)))))
wins))
(let (ok (trys 2))
(while (and (not ok) (> trys 0))
(setq trys (1- trys))
(mapcar
(function
(lambda (info)
(select-window (car info))
(enlarge-window
(- (car (cdr info)) (window-height)))))
wins)
(setq ok t)
(mapcar
(function
(lambda (info)
(setq ok
(and ok
(<= (abs (- (car (cdr info))
(window-height
(car info))))
1)))))
wins)))
(mapcar
(function
(lambda (info)
(select-window (car info))
(if (eq (car info) TargetWindow)
(shrink-window
(- (window-height TargetWindow) reqd-height)))
(set-window-start (car info) (car (cdr (cdr info))))))
wins)
(mapcar
(function
(lambda (w)
(select-window w)
(if (< (1+ (count-lines (point-min) (point-max)))
(1- (window-height w)))
(shrink-window-if-larger-than-buffer))))
shrunkwins)))))
(select-window OriginalWindow))))
(defconst fume-modeline-buffer-identification
(if (boundp 'modeline-buffer-identification)
'modeline-buffer-identification
'mode-line-buffer-identification))
(defconst fume-use-local-post-command-hook
(boundp 'local-post-command-hook))
(cond ((fboundp 'add-submenu)
(defconst fume-add-submenu 'add-submenu)
(defun fume-munge-menu-args (menu-name submenu before)
(list fume-menu-path (cons menu-name submenu) before)))
(t
(defconst fume-add-submenu 'add-menu)
(defun fume-munge-menu-args (menu-name submenu before)
(list fume-menu-path menu-name submenu before))))
(defun fume-add-submenu (menu-name submenu before)
(apply fume-add-submenu (fume-munge-menu-args menu-name submenu before)))
;; this seems to really be `should I try to change the menubar'
(defconst fume-not-tty
(or (featurep 'menubar) ;; XEmacs
(featurep 'menu-bar))) ;; GNU Emacs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;; Customizable Variables ;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom fume-auto-position-popup t
"*Set to nil if you don't want the menu to appear in the corner of the window
in which case it will track the mouse position instead."
:type 'boolean
:group 'fume)
(fume-defvar-local fume-display-in-modeline-p t
"*Set to nil if you don't want the function name appearing in the modeline.
If your modeline is already full, then you can set this variable to something
besides nil or t and the current function will replace the normal
modeline-buffer-identification
Note, this is a buffer-local variable.")
(defvar fume-buffer-name "*Function List*"
"Name of buffer used to list functions when fume-list-functions called")
(defcustom fume-menubar-menu-name "Functions"
"*Set this to the string you want to appear in the menubar"
:type 'string
:group 'fume)
;;; Bob Weiner <weiner@altrasoft.com>
(defvar fume-menu-path nil
"Menubar menu under which the function menu should be installed.
Nil means install it on the menubar itself. Otherwise, it should be a list
of strings, each string names a successively deeper menu under which the
new menu should be located.")
(defcustom fume-menubar-menu-location "Buffers"
"*Set this nil if you want the menu to appear last on the menubar.
Otherwise set this to the menu you want \"Functions\" to appear in front of."
:type '(choice (const :tag "Last" nil) (string :format "%v"))
:group 'fume)
(defcustom fume-max-items 24
"*Maximum number of elements in a function (sub)menu."
:type 'integer
:group 'fume)
(defcustom fume-fn-window-position 3
"*Number of lines from top of window at which to show function.
If nil, display function start from the centre of the window."
:type '(choice (const :tag "Center" nil) integer)
:group 'fume)
(defcustom fume-index-method 3
"*Set this to the method number you want used.
Methods currently supported:
0 = if you want submenu names to be numbered
1 = if you want submenu range indicated by first character
2 = if you want submenu range indicated by first 12 characters
3 = if you want submenu range indicated by as many characters as needed"
:type '(radio (const :tag "Numbered" 0)
(const :tag "Indicated by first character" 1)
(const :tag "Indicated by first 12 characters" 2)
(const :tag "Indicated by as many characters as needed" 3))
:group 'fume)
(defcustom fume-scanning-message "Scanning buffer... (%3d%%)"
"*Set to nil if you don't want progress messages during manual scanning
of the buffer."
:type '(choice (const :tag "None" nil) string)
:group 'fume)
(defcustom fume-rescanning-message nil
"*Set to non-nil if you want progress messages during automatic scanning
of the buffer. For example \"Re-Scanning buffer...\""
:type '(choice (const :tag "None" nil) string)
:group 'fume)
(defvar fume-rescan-trigger-counter-buffer-size 10000
"Used to tune the frequency of automatic checks on the buffer.
The function fume-rescan-buffer-trigger only works whenever the value of the
variable fume-rescan-trigger-counter reaches zero, whereupon it gets reset to
the maximum of a) buffer-size/fume-rescan-trigger-counter-buffer-size
or b) fume-rescan-trigger-counter-min")
(defvar fume-rescan-trigger-counter-min 50
"Used to tune the frequency of automatic checks on the buffer.
The function fume-rescan-buffer-trigger only works whenever the value of the
variable fume-rescan-trigger-counter reaches zero, whereupon it gets reset to
the maximum of a) buffer-size/fume-rescan-trigger-counter-buffer-size
or b) fume-rescan-trigger-counter-min")
(fume-defvar-local
fume-sort-function 'fume-sort-by-name
"*The function to use for sorting the function menu.
Set this to nil if you don't want any sorting (faster).
The items in the menu are then presented in the order they were found
in the buffer.
The function should take two arguments and return T if the first
element should come before the second. The arguments are cons cells;
(NAME . POSITION). Look at 'fume-sort-by-name' for an example.")
(fume-defvar-local
fume-rescan-buffer-hook nil
"*Buffer local hook to call at the end of each buffer rescan")
;;; This hook is provided for outl-mouse and must not be made buffer local as
;;; this appears to break outl-mouse for some reason.
;;;
(defvar fume-found-function-hook nil
"*Hook to call after every function match.")
;;; Idea for jumping directly with a mouse click
;;; Marc Paquette <Marc.Paquette@Softimage.COM>
;;;
(defvar fume-no-prompt-on-valid-default nil
"*Set non-nil if 'fume-prompt-function-goto' should jump without prompting
when a valid default exists.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;; Buffer local variables ;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(fume-defvar-local
fume-auto-rescan-buffer-p t
"Buffer local variable which if non-nil permits automatic buffer rescanning
by func-menu.
Usage:
By default, fume-auto-rescan-buffer-p is set to non-nil. If you feel that
a given mode 'foo' is becoming too slow as a result of automatic rescanning
by func-menu, then do something along the lines of the following:
(defun remove-func-menu-auto-rescan ()
(setq fume-auto-rescan-buffer-p nil))
(add-hook 'foo-mode-hook 'remove-func-menu-auto-rescan)")
(fume-defvar-local
fume-funclist nil
"The latest list of function names in the buffer")
(fume-defvar-local
fume-function-name-regexp nil
"The keywords to show in a menu")
(fume-defvar-local
fume-find-next-function-name-method nil
"The function to use to find the next function name in the buffer")
(fume-defvar-local
fume-modeline-funclist nil
"The latest list of function names in the buffer to display in the modeline")
(fume-defvar-local
fume-funclist-dirty-p nil
"Flags whether the buffer is in need of a fresh scan")
(fume-defvar-local
fume-rescan-inhibit-p nil
"Internal variable only. DO NOT TOUCH.")
(fume-defvar-local
fume-rescan-trigger-counter 0
"Used in large buffers to optimise checking frequency")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;; Mode specific regexp's and hooks ;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Every fume-function-name-regexp-<language> should uniquely identify a
;;; function for that certain language.
;;; Lisp
;;;
;;; Vladimir Alexiev <vladimir@cs.ualberta.ca>
;;; JTL: 24. Feb. 97 added "/" as part of function names
(defvar fume-function-name-regexp-lisp
(concat
"^[ \t]*" ; Allow whitespace |(or (fboundp 'foo)
; for the construct | (defun foo ()
"(\\(def[^vc][a-z]*\\)" ; Allow (def* except (defvar, (defconst
"\\s-+" ; At least one whitespace
"'?[#:?/A-Za-z0-9_+>-]+" ; Allow (defalias 'foo 'bar)
"\\s-*" ; Whitespace
"\\(nil\\|(\\)" ; nil or (arg list
)
"Expression to get lisp function names")
;;; C
;;;
;;; Danny Bar-Dov <danny@acet02.amil.co.il>
;;; Bob Weiner <weiner@altrasoft.com> added #define macro support.
(defvar fume-function-name-regexp-c
(concat
"^\\([a-zA-Z0-9]+\\|#define\\)\\s-?" ; type specs; there can be no
"\\([a-zA-Z0-9_*]+\\s-+\\)?" ; more than 3 tokens, right?
"\\([a-zA-Z0-9_*]+\\s-+\\)?"
"\\([*&]+\\s-*\\)?" ; pointer
"\\([a-zA-Z0-9_*]+\\)[ \t\n]*(" ; name
)
"Expression to get C function names")
;;; C++
;;;
;;; Andy Piper <ajp@eng.cam.ac.uk>
;;; Kevin R. Powell <powell@csl.ncsa.uiuc.edu>
;;; Mats Lidell <mats.lidell@eua.ericsson.se>
;;; Mike Battaglia <mbattagl@spd.dsccc.com>
;;; Oliver Schittko <schittko@fokus.gmd.de>
;;; Tom Murray <tmurray@hpindck.cup.hp.com>
;;; Bob Weiner <weiner@altrasoft.com> added #define macro support.
(defvar fume-function-name-regexp-c++
(cons
(concat
"^\\(#define\\s-+\\|"
"\\(template\\s-+<[^>]+>\\s-+\\)?" ; template formals
"\\([a-zA-Z0-9_*&<,>:]+\\s-+\\)?" ; type specs; there can be no
"\\([a-zA-Z0-9_*&<,>\"]+\\s-+\\)?" ; more than 3 tokens, right?
"\\([a-zA-Z0-9_*&<,>]+\\s-+\\)?\\)"
"\\(\\([a-zA-Z0-9_&~:<,>*]\\|\\(\\s +::\\s +\\)\\)+\\)"
"\\(o?perator\\s *.[^(]*\\)?\\(\\s-\\|\n\\)*(" ; name
) 6)
"Expression to get C++ function names")
;;; FORTRAN
;;;
;;; Paul Emsley <paule@chem.gla.ac.uk>
;;; Raymond L. Toy <toy@soho.crd.ge.com>
;;; Richard Cognot <cognot@elfgrc.co.uk>
;;; Greg Sjaardema <gdsjaar@sandia.gov>
(defvar fume-function-name-regexp-fortran
(concat
;; >= six spaces
"^ \\s-*"
;; type specs
"[a-zA-Z0-9*]*\\s-*"
;; continuation lines
"\\(\n [^ 0]\\s-*\\)*"
;; function or subroutine
"\\(entry\\|ENTRY\\|function\\|FUNCTION\\|subroutine\\|SUBROUTINE\\)\\s-*"
;; continuation lines
"\\(\n [^ 0]\\s-*\\)*"
)
"Expression to get Fortran 77 function and subroutine names")
;;; John Turner <turner@xdiv.lanl.gov>
(defvar fume-function-name-regexp-fortran90
(concat
;; type specs
"[a-zA-Z0-9*]*\\s-*"
;; function or subroutine
"\\(entry\\|ENTRY\\|function\\|FUNCTION\\|module\\|MODULE\\|subroutine\\|SUBROUTINE\\)\\s-*"
)
"Expression to get Fortran 90 function, module and subroutine names")
;;; Modula
(defvar fume-function-name-regexp-modula
"^\\s-*PROCEDURE\\s-+[A-Za-z0-9_-]+"
"Expression to get Modula function names")
;;; Bacis2
;;;
;;; CV MEDUSA's 4th generation language
(defvar fume-function-name-regexp-bacis
"module_define(!\\|define_constant(!\\|sys_sysdefine(!\\|<<dbgid +\\s-*"
"Expression to get Bacis2 function names")
;;; Maple
;;;
;;; Luc Tancredi <Luc.Tancredi@sophia.inria.fr>
(defvar fume-function-name-regexp-maple
"^[ \t]*[a-zA-Z0-9_]+[ \t]*:=[ \t]*proc[ \t]*("
"Expression to get maple function/procedure names")
;;; Tcl
;;;
;;; Andy Piper <ajp@eng.cam.ac.uk>
;;; Jean-Michel Augusto <augusto@eureecom.fr>
;;; Dr P.G. Sjoerdsma <pgs1002@esc.cam.ac.uk>
(defvar fume-function-name-regexp-tcl
(cons "^\\s *proc\\s +\\(\\S-+\\)\\s *{" 1)
"Expression to get Tcl function Names")
;;; Java
;;;
;;; Heddy Boubaker <boubaker@dgac.fr>
(defvar fume-function-name-regexp-java
"\\s-+\\([A-Za-z_][A-Za-z0-9_]+\\)[\n \t\r]*\\((\\)"
"Expression to get Java methods names")
;;; Perl
;;;
;;; Alex Rezinsky <alexr@msil.sps.mot.com>
;;; Michael Lamoureux <lamour@engin.umich.edu>
(defvar fume-function-name-regexp-perl "^sub[ \t]+\\([A-Za-z0-9_]+\\)"
"Expression to get Perl function Names")
;;; Python support
;;; Shuichi Koga <skoga@virginia.edu>
;;;
(defvar fume-function-name-regexp-python
"^\\s-*\\(class\\|def\\)+\\s-*\\([A-Za-z0-9_]+\\)\\s-*[(:]"
"Expression to get Python class and function names")
;;; Postscript
;;;
;;; Leigh L. Klotz <klotz@adoc.xerox.com>
(defvar fume-function-name-regexp-postscript
"^/[^][ \t{}<>]*"
"Expression to get postscript function names")
;;; Prolog
;;;
;;; Laszlo Teleki <laszlo@ipb.uni-bonn.de>
(defvar fume-function-name-regexp-prolog
"^[a-z][a-zA-Z0-9_]+"
"Expression to get prolog fact and clause names")
;;; Ehdm
;;;
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
(defvar fume-function-name-regexp-ehdm
(concat
"[A-Za-z0-9_]*:[ ]*"
"\\([Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn]\\|"
"[Ll][Ee][Mm][Mm][Aa]\\|"
"[Aa][Xx][Ii][Oo][Mm]\\|"
"[Pp][Rr][Oo][Vv][Ee]\\|"
"[Tt][Hh][Ee][Oo][Rr][Ee][Mm]"
"\\)"
)
"*Expression to get Ehdm function, theorems, axioms, lemmas, and proofs.")
;;; PVS
;;;
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
(defvar fume-function-name-regexp-pvs
(concat
"\\([A-Za-z0-9_]*:[ ]*"
"\\([Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn]\\|"
"[Ll][Ee][Mm][Mm][Aa]\\|"
"[Aa][Xx][Ii][Oo][Mm]\\|"
"[Tt][Hh][Ee][Oo][Rr][Ee][Mm]\\|"
"[Ff][Or][Rr][Mm][Uu][La][Aa]"
"\\|"
"\\[.*\\]"
"\\)\\)\\|"
"[A-Za-z0-9_]*(.*)[ ]*:"
)
"*Expression to get PVS functions, theorems, axioms, lemmas")
;;; Tex, LaTex
;;;
;;; Philippe Queinnec <queinnec@cenatls.cena.dgac.fr>
;;; Paolo Frasconi <paolo@mcculloch.ing.unifi.it>
(fume-defvar-local fume-tex-chapter 0)
(fume-defvar-local fume-tex-section 0)
(fume-defvar-local fume-tex-subsection 0)
(fume-defvar-local fume-tex-subsubsection 0)
(defun fume-tex-rescan-buffer-hook ()
(setq fume-tex-chapter 0
fume-tex-section 0
fume-tex-subsection 0
fume-tex-subsubsection 0))
(defun fume-tweak-tex-mode ()
(setq fume-sort-function nil)
(add-hook 'fume-rescan-buffer-hook 'fume-tex-rescan-buffer-hook))
(add-hook 'tex-mode-hook 'fume-tweak-tex-mode)
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
(add-hook 'TeX-mode-hook 'fume-tweak-tex-mode)
;;; Wolfgang Mettbach <wolle@uni-paderborn.de>
(add-hook 'latex-mode-hook 'fume-tweak-tex-mode)
(add-hook 'LaTeX-mode-hook 'fume-tweak-tex-mode)
;;; Philippe Queinnec <queinnec@cenatls.cena.dgac.fr>
(defvar fume-section-name-regexp-latex
(concat
"^\\s-*\\\\\\("
"\\(sub\\)*section\\|chapter\\)"
"\\*?\\(\\[[^]]*\\]\\)?{\\([^}]*\\)}"
)
"Expression to get latex section names")
;;; ksh
;;;
;;; Philippe Bondono <bondono@vnet.ibm.com>
(defvar fume-function-name-regexp-ksh
(concat
"\\(^\\s-*function\\s-+[A-Za-z_][A-Za-z_0-9]*\\)"
"\\|"
"\\(^\\s-*[A-Za-z_][A-Za-z_0-9]*\\s-*()\\)")
"Expression to get ksh function names")
;;; Scheme
;;;
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
(defvar fume-function-name-regexp-scheme
"^(define [ ]*"
"Expression to get Scheme function names")
;;; BibTeX
;;;
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
(defvar fume-function-name-regexp-bibtex
;; "^@[A-Za-z]*[({]\\([A-Za-z0-9:;&-]*\\),"
;; Christoph Wedler <wedler@fmi.uni-passau.de>
;; According to the LaTeX Companion, this should be
"^@[A-Za-z]*[({]\\([A-Za-z][^ \t\n\"#%'(),={}]*\\),"
"Expression to get bibtex citation headers.")
;;; SGML
;;;
;;; Thomas Plass <thomas.plass@mid-heidelberg.de>
(defvar fume-function-name-regexp-sgml
"<!\\(element\\|entity\\)[ \t\n]+%?[ \t\n]*\\([A-Za-z][-A-Za-z.0-9]*\\)"
"Expression to find declaration of SGML element or entity")
;;; Ada
;;;
;;; Michael Polo <mikep@polo.mn.org> <mikep@cfsmo.honeywell.com>
(defvar fume-function-name-regexp-ada
(cons "^[ \t]*\\(procedure\\|PROCEDURE\\|function\\|FUNCTION\\)[ \n\t]+\\([a-zA-Z0-9_]+\\|\"[^\"]\"\\)" 2)
"Expression to find declaration of Ada function")
;;; ignore prototypes, 'renames', 'is new' to eliminate clutter
;;;
;;; Scott Evans <gse@ocsystems.com>
(defvar fume-function-name-regexp-ada-ignore
"[ \n\t]*\\(([^()]+)[ \n\t]*\\)?\\(return[ \t\n]+[^ \t\n;]+[ \n\t]*\\)?\\(;\\|is[ \n\t]+new[ \n\t]\\|renames\\)"
"ignore if ada function name matches this string")
;;; Makefiles
;;;
;;; Paul Filipski & Anthony Girardin <{filipski,girardin}@blackhawk.com>
(defvar fume-function-name-regexp-make
"^\\(\\(\\$\\s(\\)?\\(\\w\\|\\.\\)+\\(:sh\\)?\\(\\s)\\)?\\)\\s *\\(::?\\|\\+?=\\)"
"Expression to get makefile target names")
;;(add-hook 'makefile-mode-hook 'fume-add-menubar-entry)
;;; Directory Listings
;;;
;;; Norbert Kiesel <norbert@i3.informatik.rwth-aachen.de>
;;; regexp stolen from font-lock-mode
(defvar fume-function-name-regexp-dired
"^. +d.*\\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\) +[0-9]+ +[0-9:]+ \\(.*\\)$"
"Expression to get directory names")
;;; Pascal
;;;
;;; Espen Skoglund <espensk@stud.cs.uit.no>
(defvar fume-function-name-regexp-pascal
"^\\(function\\|procedure\\)[ \t]+\\([_a-zA-Z][_a-zA-Z0-9]*\\)"
"Expression to get function/procedure names in pascal.")
;;; Fame
;;;
;;; Cooper Vertz <cooper@prod2.imsi.com>
(defvar fume-function-name-regexp-fame
"^\\(function\\|procedure\\)[ \t]+\\([#\\$%_a-zA-Z][#\\$%_a-zA-Z0-9]*\\)"
"Expression to get function/procedure names in fame.")
;;; Verilog
;;;
;;; Matt Sale <mdsale@icdc.delcoelect.com>
(defvar fume-function-name-regexp-verilog
"^\\(task\\|function\\|module\\|primitive\\)[ \t]+\\([A-Za-z0-9_+-]*\\)[ \t]*(?"
"Expression to get verilog module names")
;;; Idl
;;;
;;; Lubos Pochman <lubos@rsinc.com>
(defvar fume-function-name-regexp-idl
(cons "^\\s *\\([pP][rR][oO]\\|[fF][uU][nN][cC][tT][iI][oO][nN]\\)\\s +\\([A-Za-z][A-Za-z0-9_$]*\\)" 2)
"Expression to get Idl function Names")
;;; Assembly
(defvar fume-function-name-regexp-asm
"^\\([a-zA-Z_.$][a-zA-Z0-9_.$]*\\)[ \t]*:"
"Expression to get assembly label names")
;;; This is where the mode specific regexp's are hooked in
;;;
(defvar fume-function-name-regexp-alist
'(;; Lisp
(emacs-lisp-mode . fume-function-name-regexp-lisp)
(common-lisp-mode . fume-function-name-regexp-lisp)
(fi:common-lisp-mode . fume-function-name-regexp-lisp)
(fi:emacs-lisp-mode . fume-function-name-regexp-lisp)
(fi:franz-lisp-mode . fume-function-name-regexp-lisp)
(fi:inferior-common-lisp-mode . fume-function-name-regexp-lisp)
(fi:inferior-franz-lisp-mode . fume-function-name-regexp-lisp)
(fi:lisp-listener-mode . fume-function-name-regexp-lisp)
(lisp-mode . fume-function-name-regexp-lisp)
(lisp-interaction-mode . fume-function-name-regexp-lisp)
;; C
(c-mode . fume-function-name-regexp-c)
(elec-c-mode . fume-function-name-regexp-c)
(c++-c-mode . fume-function-name-regexp-c)
;; C++
(c++-mode . fume-function-name-regexp-c++)
;; Fortran
(fortran-mode . fume-function-name-regexp-fortran)
(f90-mode . fume-function-name-regexp-fortran90)
;; Modula
(modula-2-mode . fume-function-name-regexp-modula)
(modula-3-mode . fume-function-name-regexp-modula)
;; Bacis2
(bacis-mode . fume-function-name-regexp-bacis)
;; Maple
(maple-mode . fume-function-name-regexp-maple)
;; Perl
(perl-mode . fume-function-name-regexp-perl)
;; Java
(java-mode . fume-function-name-regexp-java)
;; Python
(alice-mode . fume-function-name-regexp-python)
(python-mode . fume-function-name-regexp-python)
;; Postscript
(postscript-mode . fume-function-name-regexp-postscript)
;; Prolog
(prolog-mode . fume-function-name-regexp-prolog)
;; Tcl
(tcl-mode . fume-function-name-regexp-tcl)
;; ksh
(ksh-mode . fume-function-name-regexp-ksh)
;; LaTeX
(latex-mode . fume-section-name-regexp-latex)
(LaTeX-mode . fume-section-name-regexp-latex)
;; Scheme
(scheme-mode . fume-function-name-regexp-scheme)
;; BibTeX
(bibtex-mode . fume-function-name-regexp-bibtex)
;; Ehdm & PVS
(ehdm-mode . fume-function-name-regexp-ehdm)
(pvs-mode . fume-function-name-regexp-pvs)
;; SGML
(sgml-mode . fume-function-name-regexp-sgml)
;; Ada
(ada-mode . fume-function-name-regexp-ada)
;; Makefiles
(makefile-mode . fume-function-name-regexp-make)
;; Dired
(dired-mode . fume-function-name-regexp-dired)
;; Pascal
(pascal-mode . fume-function-name-regexp-pascal)
;; Fame
(fame-mode . fume-function-name-regexp-fame)
;; Verilog
(verilog-mode . fume-function-name-regexp-verilog)
;; Idl
(idl-mode . fume-function-name-regexp-idl)
;; Assembly
(asm-mode . fume-function-name-regexp-asm)
)
"The connection between a mode and the regexp that matches function names.")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;; Mode specific finding functions ;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Default routine : Note, most modes will need a specialised routine
;;;
(defun fume-find-next-function-name (buffer)
"Searches for the next function in BUFFER."
(set-buffer buffer)
;; Search for the function
(if (re-search-forward fume-function-name-regexp nil t)
(let ((char (progn
(if (string-match
"[({[]"
(char-to-string (char-after (1- (point)))))
(backward-char)
(forward-word -1))
(save-excursion
(goto-char (scan-sexps (point) 1))
(skip-chars-forward "[ \t\n]")
(following-char)))))
;; Skip this function name if it is a prototype declaration.
(if (and (eq char ?\;) (not (eq major-mode 'emacs-lisp-mode)))
(fume-find-next-function-name buffer)
;; Get the function name and position
(let (beg)
(forward-sexp -1)
(setq beg (point))
(forward-sexp)
(cons (buffer-substring beg (point)) beg))))))
;;; General purpose sexp find function
;;;
(defun fume-find-next-sexp (buffer)
"Searches for the next sexp type function in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (save-excursion (forward-sexp -1) (point))))
(cons (buffer-substring beg (point)) beg))))
;;; Specialised routine to get the next ehdm entity in the buffer.
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
;;;
(defun fume-find-next-ehdm-entity (buffer)
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 0))
(end (match-end 0)))
(cons (buffer-substring beg end) beg))))
;;; Specialised routine to get the next PVS entity in the buffer.
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
;;;
(defun fume-find-next-pvs-entity (buffer)
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 0))
(end (match-end 0)))
(goto-char (1- end))
(if (looking-at ":")
(setq end (1- end)))
(cons (buffer-substring beg end) beg))))
;;; Specialised routine to get the next C function name in the buffer.
;;; Modified 16/12/96: Jerome Bertorelle <bertorel@telspace.alcatel.fr>
;;;
(defun fume-find-next-c-function-name (buffer)
"Searches for the next C function in BUFFER."
(set-buffer buffer)
;; Search for the function
(if (re-search-forward fume-function-name-regexp nil t)
(let ((char (progn
(backward-up-list 1)
(save-excursion
(goto-char (scan-sexps (point) 1))
(skip-chars-forward "[ \t\n]")
(following-char)))))
;; Skip this function name if it is a prototype declaration.
(if (eq char ?\;)
(fume-find-next-c-function-name buffer)
(let (beg
name)
;; Get the function name and position
(forward-sexp -1)
(setq beg (point))
(forward-sexp)
(setq name (buffer-substring beg (point)))
;; ghastly crock for DEFUN declarations
(cond ((string-match "^DEFUN\\s-*" name)
(forward-word 1)
(forward-word -1)
(setq beg (point))
(cond ((re-search-forward "\"," nil t)
(re-search-backward "\"," nil t)
(setq name
(format "%s %s"
name
(buffer-substring beg (point))))))))
;; kludge to avoid 'void' etc in menu
(if (string-match "^void$\\|^if$\\|^switch$\\|^while$" name)
(fume-find-next-c-function-name buffer)
(cons name beg)))))))
;;; Peter Pezaris <pez@dwwc.com>
;;;
(defun fume-cc-inside-comment ()
(memq (buffer-syntactic-context) '(comment block-comment)))
;;; <jrm@odi.com>
;;; <ajp@eng.cam.ac.uk>
;;; <schittko@fokus.gmd.de>
;;; <d.hughes@videonetworks.com> - speedup, David Hughes 24th November 1996
;;;
(defun fume-match-find-next-function-name (buffer)
;; General next function name in BUFFER finder using match.
;; The regexp is assumed to be a two item list the car of which is the regexp
;; to use, and the cdr of which is the match position of the function name
(set-buffer buffer)
(let ((r (car fume-function-name-regexp))
(p (cdr fume-function-name-regexp)))
(catch 'found
(while (re-search-forward r nil t)
(catch 'skip
(if (fume-cc-inside-comment) (throw 'skip t))
(save-excursion
(re-search-backward r nil t)
(if (string= "typedef" (fume-what-looking-at)) (throw 'skip t))
(re-search-forward r nil t))
(backward-up-list 1)
(save-excursion
(goto-char (scan-sexps (point) 1))
(if (eq ?\; (following-char)) (throw 'skip t))) ; skip prototypes
(throw
'found
(cons (buffer-substring (setq p (match-beginning p)) (point)) p))))
nil)))
;;; Specialised routine to find the next Perl function
;;;
(defun fume-find-next-perl-function-name (buffer)
"Searches for the next Perl function in BUFFER."
(fume-find-next-sexp buffer))
;;; Specialised routine to find the next Java function
;;; Bob Weiner <weiner@altrasoft.com>
;;; Heddy Boubaker <boubaker@dgac.fr>
;;;
(defun fume-find-next-java-function-name (buffer)
"Searches for the next Java function in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 1))
(end (match-end 1)))
(goto-char (match-beginning 2))
(forward-sexp)
(if (and (looking-at "[^;(]*{")
(not (fume-cc-inside-comment)))
;; This is a method definition and we're not in a comment
(let ((str (buffer-substring beg end)))
;; Bob Weiner <weiner@altrasoft.com> added exact match
;; delimiters so function names that happen to contain
;; any of these terms are not eliminated. The old version
;; would ignore "notify()" since it contained "if".
(or (string-match "\\`\\(if\\|switch\\|catch\\|for\\|while\\)\\'"
str)
;; These constructs look like method definitions but are not
(cons str beg)))
(fume-find-next-java-function-name buffer)))))
;;; Specialised routine to find the next Python function
;;; Shuichi Koga <skoga@virginia.edu>
;;;
(defun fume-find-next-python-function-name (buffer)
"Searches for the next python function in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(save-excursion
(let* ((retpnt (match-beginning 2))
(retname (buffer-substring retpnt (match-end 2))))
(goto-char (match-beginning 0))
(cond ((looking-at "\\s-+def")
(re-search-backward
"^class\\s-*\\([A-Za-z0-9_]+\\)\\s-*[(:]" nil t)
(setq retname
(concat
(buffer-substring (match-beginning 1) (match-end 1))
"."
retname))))
(cons retname retpnt)))))
;;; Specialised routine to find the next Modula function or subroutine.
;;;
(defun fume-find-next-modula-function-name (buffer)
"Searches for the next modula function in BUFFER."
(fume-find-next-sexp buffer))
;;; Specialised routine to find the next directory.
;;; Norbert Kiesel <norbert@i3.informatik.rwth-aachen.de>
;;;
(defun fume-find-next-directory-name (buffer)
"Searches for the next directory in dired BUFFER."
(set-buffer buffer)
;; Search for the function
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 2))
(end (match-end 2)))
(cons (buffer-substring beg end) beg))))
;;; Specialised routine to find the next Fortran function or subroutine
;;;
(defun fume-find-next-fortran-function-name (buffer)
"Searches for the next Fortran function in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((pos (point))
;; name may have "_" but must start with a letter
(name-regexp "\\s-+[a-zA-Z]+[_a-zA-Z0-9*]*")
(eol (save-excursion (end-of-line 1) (point))))
(skip-chars-backward " \t")
(if (re-search-forward name-regexp eol t)
;; name is ok; so return it
(cons (buffer-substring pos (point)) pos)
;; rubbish found; skip to next function
(fume-find-next-fortran-function-name buffer)))))
;;; Specialised routine to get the next postscript function name in the buffer
;;; Leigh L. Klotz <klotz@adoc.xerox.com>
;;;
(defun fume-find-next-postscript-function-name (buffer)
"Searches for the next postscript function in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (progn (beginning-of-line 1) (point))))
(forward-sexp)
;; keep including sexps as long as they
;; start with / or [.
(if (looking-at "\\s-+\\(/\\|\\[\\)")
(forward-sexp))
(cons (buffer-substring beg (point)) beg))))
;;; Specialised routine to get the next prolog fact/clause name in the buffer
;;; Laszlo Teleki <laszlo@ipb.uni-bonn.de>
;;;
(defun fume-find-next-prolog-function-name (buffer)
"Searches for the next prolog fact or clause in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (progn (beginning-of-line 1) (point))))
(forward-sexp)
(cons (buffer-substring beg (point)) beg))))
;;; Specialised routine to get the next bacis2 procedure name in the buffer
;;;
(defun fume-find-next-bacis-function-name (buffer)
"Searches for the next Bacis2 function in BUFFER"
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((pos (point))
(name (condition-case ()
(funcall
(symbol-function (intern "focus-get-function-name")))
(error nil))))
(if (null name)
(fume-find-next-bacis-function-name buffer)
;; jump past possible function dbgid
(re-search-forward
(format "<<dbgid +\\s-*%s%s" name "\\s-*>>") nil t)
(cons name pos)))))
;;; Specialized routine to get the next Maple function name in the buffer
;;; Luc Tancredi <Luc.Tancredi@sophia.inria.fr>
;;;
(defun fume-find-next-maple-function-name (buffer)
"Searches for the next maple function in BUFFER"
(set-buffer buffer)
;; Search for the function
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (progn (backward-up-list 1) (forward-sexp -2) (point))))
(forward-sexp)
(cons (buffer-substring beg (point)) beg))))
;;; Specialised routine to get the next latex section name in the buffer
;;; Philippe Queinnec <queinnec@cenatls.cena.dgac.fr>
;;; Paolo Frasconi <paolo@mcculloch.ing.unifi.it>
;;;
(defun fume-find-next-latex-section-name (buffer)
"Searches for the next latex section in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let* ((secname (buffer-substring (match-beginning 1) (match-end 1)))
(beg (match-beginning 4))
(name (buffer-substring beg (match-end 4))))
(cond ((string= secname "chapter")
(setq fume-tex-chapter (1+ fume-tex-chapter)
fume-tex-section 0
fume-tex-subsection 0
fume-tex-subsubsection 0
name (concat fume-tex-chapter " " (upcase name))))
((string= secname "section")
(setq fume-tex-section (1+ fume-tex-section)
name (concat
(if (> fume-tex-chapter 0)
(concat fume-tex-chapter ".") "")
fume-tex-section " " name)
fume-tex-subsection 0
fume-tex-subsubsection 0))
((string= secname "subsection")
(setq fume-tex-subsection (1+ fume-tex-subsection)
name (concat
(if (> fume-tex-chapter 0)
(concat fume-tex-chapter ".") "")
fume-tex-section "."
fume-tex-subsection " " name)
fume-tex-subsubsection 0))
((string= secname "subsubsection")
(setq fume-tex-subsubsection (1+ fume-tex-subsubsection)
name (concat
(if (> fume-tex-chapter 0)
(concat fume-tex-chapter ".") "")
fume-tex-section "."
fume-tex-subsection "."
fume-tex-subsubsection " " name)))
((string= secname "subsubsection")
(setq name (concat " " name))))
(cons name beg))))
;;; Specialised routine to get the next ksh function in the buffer
;;; Philippe Bondono <bondono@vnet.ibm.com>
;;;
(defun fume-find-next-ksh-function-name (buffer)
"Searches for the ksh type function in BUFFER."
(set-buffer buffer)
;; Search for the function
(if (re-search-forward fume-function-name-regexp nil t)
(let (name
(beg (match-beginning 0)))
(cond ((re-search-backward "\\(^\\|\\s-\\)function\\s-" beg t)
(re-search-forward
"\\(function\\s-+\\)\\([A-Za-z_][A-Za-z_0-9]*\\)" nil t)
(setq beg (match-beginning 2)
name (buffer-substring beg (match-end 2))))
(t
(re-search-backward
"\\(^\\|\\s-\\)\\([A-Za-z_][A-Za-z_0-9]*\\)" beg t)
(setq beg (match-beginning 2)
name (buffer-substring beg (match-end 2)))))
(if (null name)
(fume-find-next-ksh-function-name buffer)
(end-of-line)
(cons name beg)))))
;;; Specialised routine to get the next Scheme function in the buffer
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
;;;
(defun fume-find-next-scheme-function (buffer)
"Searches for the next Scheme function in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (progn (if (looking-at "(") (forward-char 1)) (point)))
(end (save-excursion (forward-sexp) (point))))
(cons (buffer-substring beg end) beg))))
;;; Specialised routine to get the next BibTeX citation in the buffer
;;; C. Michael Holloway <c.m.holloway@larc.nasa.gov>
;;;
(defun fume-find-next-bibtex-citation (buffer)
"Searches for the next BibTeX citation in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 1))
(end (match-end 1)))
(cons (buffer-substring beg end) beg))))
;;; Specialised routine to get the next SGML declaration in the buffer
;;; Thomas Plass <thomas.plass@mid-heidelberg.de>
;;;
(defun fume-find-next-sgml-element-name (buffer)
"Searches for the next SGML declaration in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((type (buffer-substring (match-beginning 1) (match-end 1)))
(beg (match-beginning 2))
(name (buffer-substring (match-beginning 2) (match-end 2))))
(if (string= (downcase type) "element")
(setq name (format "%-17s%3s" name "EL"))
(setq name (format "%-17s%3s" name "ENT")))
(cons name beg))))
;;; Specialised routine to get the next ada function in the buffer
;;; Michael Polo <mikep@polo.mn.org> <mikep@cfsmo.honeywell.com>
;;;
(defun fume-find-next-ada-function-name (buffer)
"Searches for the next ada function in BUFFER."
(set-buffer buffer)
(if (re-search-forward (car fume-function-name-regexp-ada) nil t)
(let ((beg (match-beginning (cdr fume-function-name-regexp-ada)))
(end (match-end (cdr fume-function-name-regexp-ada))))
(if (looking-at fume-function-name-regexp-ada-ignore)
(fume-find-next-ada-function-name buffer)
(cons (buffer-substring beg end) beg)))))
;;; Makefiles
;;; Paul Filipski & Anthony Girardin <{filipski,girardin}@blackhawk.com>
;;;
(defun fume-find-next-function-name-make (buffer)
"Searches for the next make item in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 1))
(end (match-end 1)))
(cons (buffer-substring beg end) beg))))
;;; Find next pascal function in the buffer
;;; Espen Skoglund <espensk@stud.cs.uit.no>
;;;
(defun fume-find-next-pascal-function-name (buffer)
"Searches for the next pascal procedure in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 2))
(end (match-end 2)))
(cons (buffer-substring beg end) beg))))
;;; Verilog support
;;; Matt Sale <mdsale@icdc.delcoelect.com>
;;;
(defun fume-find-next-verilog-function-name (buffer)
"Searches for the next verilog module in BUFFER."
(set-buffer buffer)
(if (re-search-forward fume-function-name-regexp nil t)
(let ((beg (match-beginning 2))
(end (match-end 2)))
(cons (buffer-substring beg end) beg))))
;;; Specialised routine to get the next idl function in the buffer
;;;
;;; Lubos Pochman <lubos@rsinc.com>
(defun fume-find-next-idl-function-name (buffer)
"Searches for the next idl function in BUFFER."
(set-buffer buffer)
(if (re-search-forward (car fume-function-name-regexp-idl) nil t)
(let ((beg (match-beginning (cdr fume-function-name-regexp-idl)))
(end (match-end (cdr fume-function-name-regexp-idl))))
(cons (buffer-substring beg end) beg))))
;;; Assembly
;;; Bob Weiner <weiner@altrasoft.com>
;;;
(defun fume-find-next-asm-function-name (buffer)
"Searches for the next assembler function in BUFFER."
(set-buffer buffer)
;; Search for the function
(if (re-search-forward fume-function-name-regexp nil t)
(cons (buffer-substring (match-beginning 1) (match-end 1))
(match-beginning 1))))
;;; This is where you can hook in other languages which may need a different
;;; method to scan for function names. Otherwise, the default defun used is
;;; fume-find-next-function-name which is suitable for sexp-based languages
;;; such as C, C++ and elisp.
;;;
(defconst fume-find-function-name-method-alist
'((ada-mode . fume-find-next-ada-function-name)
(alice-mode . fume-find-next-python-function-name)
(asm-mode . fume-find-next-asm-function-name)
(bacis-mode . fume-find-next-bacis-function-name)
(bibtex-mode . fume-find-next-bibtex-citation)
(c++-mode . fume-match-find-next-function-name)
(c-mode . fume-find-next-c-function-name)
(dired-mode . fume-find-next-directory-name)
(ehdm-mode . fume-find-next-ehdm-entity)
(fame-mode . fume-find-next-pascal-function-name)
(fortran-mode . fume-find-next-fortran-function-name)
(f90-mode . fume-find-next-fortran-function-name)
(ksh-mode . fume-find-next-ksh-function-name)
(latex-mode . fume-find-next-latex-section-name)
(LaTeX-mode . fume-find-next-latex-section-name)
(makefile-mode . fume-find-next-function-name-make)
(maple-mode . fume-find-next-maple-function-name)
(modula-2-mode . fume-find-next-modula-function-name)
(modula-3-mode . fume-find-next-modula-function-name)
(pascal-mode . fume-find-next-pascal-function-name)
(perl-mode . fume-find-next-perl-function-name)
(java-mode . fume-find-next-java-function-name)
(postscript-mode . fume-find-next-postscript-function-name)
(prolog-mode . fume-find-next-prolog-function-name)
(pvs-mode . fume-find-next-pvs-entity)
(python-mode . fume-find-next-python-function-name)
(scheme-mode . fume-find-next-scheme-function)
(sgml-mode . fume-find-next-sgml-element-name)
(tcl-mode . fume-match-find-next-function-name)
(verilog-mode . fume-find-next-verilog-function-name)
(idl-mode . fume-find-next-idl-function-name)
)
"The connection between a mode and the defun that finds function names.
If no connection is in this alist for a given mode, a default method is used")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;; General utility functions ;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; modeline refresh routine
;;;
(or (fboundp 'redraw-modeline)
(defun redraw-modeline () (set-buffer-modified-p (buffer-modified-p))))
;;; Smart mouse positioning
;;;
(if (fboundp 'window-edges) ; old method
(defun fume-set-mouse-position ()
(set-mouse-position
(selected-frame)
(nth 0 (window-edges)) (nth 1 (window-edges))))
(defun fume-set-mouse-position () ; new method
(set-mouse-position
(selected-window)
(nth 0 (window-pixel-edges))
(nth 1 (window-pixel-edges)))))
;;; Sets 'fume-function-name-regexp' to something appropriate for the current
;;; mode for this buffer.
;;;
(defun fume-set-defaults ()
"Returns nil if unsuccessful in setting up buffer-local defaults.
Otherwise returns fume-function-name-regexp"
(setq fume-function-name-regexp
(symbol-value
(cdr-safe (assoc major-mode fume-function-name-regexp-alist))))
(if fume-function-name-regexp
(setq fume-find-next-function-name-method
(or (cdr-safe (assoc major-mode
fume-find-function-name-method-alist))
'fume-find-next-function-name)))
fume-function-name-regexp)
;;; Routines to add/remove/update function menu from menubar
;;;
(defun fume-add-menubar-entry ()
(interactive)
(save-window-excursion (function-menu t)))
(defun fume-remove-menubar-entry ()
(interactive)
(cond ((and fume-running-xemacs current-menubar)
(delete-menu-item (list fume-menubar-menu-name))
;; force update of the menubar
(redraw-modeline))))
(defun fume-update-menubar-entry ()
"Returns t if menubar was updated. Nil otherwise"
(and fume-running-xemacs
fume-not-tty
(assoc fume-menubar-menu-name current-menubar)
(fume-add-menubar-entry)
t))
(defun fume-trim-string (string)
"Returns STRING with leading and trailing whitespace removed."
(if (string-match "^[ \t]*" (setq string (format "%s" string)))
(setq string (substring string (match-end 0))))
(if (string-match "[ \t]*$" string)
(setq string (substring string 0 (match-beginning 0))))
string)
(defvar fume-syntax-table nil)
(defun fume-what-looking-at (&optional check-primary-selection-p)
(or (and check-primary-selection-p
primary-selection-extent
(condition-case ()
(prog1 (buffer-substring (region-beginning) (region-end))
(and zmacs-regions (zmacs-deactivate-region) (sit-for 0)))
(error nil)))
(let (name
(orig-syntax-table (copy-syntax-table (syntax-table))))
(if fume-syntax-table
()
(setq fume-syntax-table (copy-syntax-table))
(modify-syntax-entry ?: "w" fume-syntax-table))
(unwind-protect
(progn
(set-syntax-table fume-syntax-table)
(save-excursion
(while (looking-at "\\sw\\|\\s_") (forward-char 1))
(if (re-search-backward "\\sw\\|\\s_" nil t)
(let ((beg (progn (forward-char 1) (point))))
(forward-sexp -1)
(while (looking-at "\\s'") (forward-char 1))
(setq name (buffer-substring beg (point)))))))
(set-syntax-table orig-syntax-table)
name))))
;;; Find function name that point is in
;;; (trick is to start from the end)
;;;
(defun fume-function-before-point ()
(if (or fume-modeline-funclist (fume-rescan-buffer) fume-modeline-funclist)
(let ((p (point)))
(save-excursion
(catch 'found
(mapcar (function
(lambda (x)
(goto-char (cdr x))
(beginning-of-line 1)
(if (>= p (point)) (throw 'found (car x)))))
fume-modeline-funclist) nil)))))
;;; Routines to add a buffer local post command hook
;;;
(defun fume-post-command-hook-p (hook)
(memq hook (if fume-use-local-post-command-hook
local-post-command-hook
post-command-hook)))
(defun fume-add-post-command-hook (hook &optional append)
(or (fume-post-command-hook-p hook)
(cond (fume-use-local-post-command-hook
(add-hook 'local-post-command-hook hook append))
((fboundp 'make-local-hook)
(make-local-hook 'post-command-hook)
(add-hook 'post-command-hook hook append t))
(t
;; NOT make-variable-buffer-local
(make-local-variable 'post-command-hook)
(add-hook 'post-command-hook hook append)))))
(defun fume-remove-post-command-hook (hook)
(and (fume-post-command-hook-p hook)
(cond (fume-use-local-post-command-hook
(remove-hook 'local-post-command-hook hook))
((fboundp 'make-local-hook)
(remove-hook 'post-command-hook hook t))
(t
(remove-hook 'post-command-hook hook)))))
;;; Routine to install the modeline feature
;;;
(defun fume-maybe-install-modeline-feature ()
(cond ((and fume-display-in-modeline-p (fume-set-defaults))
(or fume-modeline-funclist
(fume-post-command-hook-p 'fume-tickle-modeline)
(fume-rescan-buffer))
(fume-add-post-command-hook 'fume-tickle-modeline)
(fume-remove-post-command-hook 'fume-maybe-install-modeline-feature)
(fume-tickle-modeline-1)
(fume-tickle-modeline)
t ; return success flag
)))
(defun fume-toggle-modeline-display ()
"Toggles whether func-menu displays function names in the modeline"
(interactive)
(setq fume-display-in-modeline-p (not fume-display-in-modeline-p))
(if (interactive-p) (fume-tickle-modeline)))
;;; Routine to display function before point in the modeline
;;;
(defun fume-tickle-modeline ()
(let ((fname (and fume-display-in-modeline-p (fume-function-before-point))))
(set fume-modeline-buffer-identification
(cond ((and fume-display-in-modeline-p (not (null fname)))
(setq fname (format "`%s'" (fume-trim-string fname)))
(if (eq fume-display-in-modeline-p t)
(list fume-modeline-buffer-identification-1 " " fname)
fname))
(t
fume-modeline-buffer-identification-0))))
(cond ((not fume-display-in-modeline-p)
(fume-remove-post-command-hook 'fume-tickle-modeline)
(fume-add-post-command-hook 'fume-maybe-install-modeline-feature)))
;; force update of the modeline
(redraw-modeline))
(fume-defvar-local fume-modeline-buffer-identification-0 nil
"Storage for original modeline-buffer-identification")
(fume-defvar-local fume-modeline-buffer-identification-1 nil
"Storage for munged modeline-buffer-identification")
(defun fume-tickle-f-to-b (str)
;; Change modeline format of "XEmacs: %f" to "XEmacs: %b" in order to make
;; extra room for the function name which is going to be appended to the
;; modeline-buffer-identification component of the modeline-format.
(cond ((consp str)
(if (extentp (car str))
(cons (car str)
(fume-tickle-f-to-b (cdr str)))
(mapcar (function fume-tickle-f-to-b) str)))
((not (stringp str))
str)
((string-match "%[0-9]*f" str)
(let ((newstr (copy-sequence str)))
(aset newstr (1- (match-end 0)) (string-to-char "b"))
newstr))
(t str)))
(defun fume-tickle-modeline-1 ()
(or fume-modeline-buffer-identification-0
(setq fume-modeline-buffer-identification-0
(symbol-value fume-modeline-buffer-identification)))
(setq fume-modeline-buffer-identification-1
(fume-tickle-f-to-b fume-modeline-buffer-identification-0)))
;;; Routine to toggle auto recanning of the buffer
(defun fume-toggle-auto-rescanning ()
(interactive)
(message "Func-Menu buffer auto-rescanning turned %s"
(if (setq fume-auto-rescan-buffer-p (not fume-auto-rescan-buffer-p))
"ON" "OFF"))
(sit-for 0))
;;; Routine to create a shallow separate copy of a list
;;;
(if (fboundp 'copy-tree) ; not built-in in all emacsen
(defalias 'fume-shallow-copy-list 'copy-tree)
(defun fume-shallow-copy-list (list)
(mapcar (function (lambda (i) (cons (car i) (cdr i)))) list)))
;;; Sort function to sort items depending on their function-name
;;; An item looks like (NAME . POSITION).
;;;
(defun fume-sort-by-name (item1 item2)
(or (string-lessp (car item1) (car item2))
(string-equal (car item1) (car item2))))
;;; Sort function to sort items depending on their position
;;;
(defun fume-sort-by-position (item1 item2)
(<= (cdr item1) (cdr item2)))
;;; Support function to calculate relative position in buffer
;;;
(defun fume-relative-position ()
(let ((pos (point))
(total (buffer-size)))
(if (> total 50000)
;; Avoid overflow from multiplying by 100!
(/ (1- pos) (max (/ total 100) 1))
(/ (* 100 (1- pos))
(max total 1)))))
;;; Split LIST into sublists of max length N
;;; Example (fume-split '(1 2 3 4 5 6 7 8) 3)-> '((1 2 3) (4 5 6) (7 8))
;;;
(defun fume-split (list n)
(let ((i 0)
result
sublist
(remain list))
(while remain
(if (= n (setq sublist (cons (car remain) sublist)
remain (cdr remain)
i (1+ i)))
;; We have finished a sublist
(setq result (cons (nreverse sublist) result)
sublist nil
i 0)))
;; There might be a sublist (if the length of LIST mod n is != 0)
;; that has to be added to the result list.
(if sublist
(setq result (cons (nreverse sublist) result)))
(nreverse result)))
;;; Routines to create indexes for submenus
;;;
;;; Method 0
;;;
(defun fume-index-sublist-method-0 (sublist count)
(concat "Function sublist #" count))
;;; Method 1
;;; Thomas Plass <thomas.plass@mid-heidelberg.de>
;;;
(defun fume-index-sublist-method-1 (sublist &rest count)
(interactive)
(let ((s (substring (car (car sublist)) 0 1))
(e (substring (car (nth (1- (length sublist)) sublist)) 0 1)))
(format "Function sublist (%s%s)"
s (if (string-equal s e) "<>" (format "<>-%s<>" e)))))
;;; Method 2
;;; Paul Filipski & Anthony Girardin <{filipski,girardin}@blackhawk.com>
;;;
(defun fume-index-sublist-method-2 (sublist &rest count)
(let ((s (substring (car (car sublist))
0
(min (length (car (car sublist))) 12)))
(e (substring (car (nth (1- (length sublist)) sublist))
0
(min (length (car (nth (1- (length sublist)) sublist)))
12))))
(format "%s%s" s (if (string-equal s e) "<>" (format "<> ... %s<>" e)))))
;;; Method 3
;;;
(defun fume-index-sublist-method-3-1 (sublist ix limit)
(let ((s1 (substring (car (car sublist)) 0 (min limit ix)))
(s2 (substring
(car (nth (1- (length sublist)) sublist))
0 (min (length (car (nth (1- (length sublist)) sublist))) ix))))
(cons s1 s2)))
(defun fume-index-sublist-method-3 (sublist &rest count)
(let* ((cmplength 12)
(limit (length (car (car sublist))))
(result (fume-index-sublist-method-3-1 sublist cmplength limit))
(str1 (car result))
(str2 (cdr result)))
(while (and (string-equal str1 str2) (< cmplength limit))
(setq cmplength (1+ cmplength)
result (fume-index-sublist-method-3-1 sublist cmplength limit)
str1 (car result)
str2 (cdr result)))
(cond ((not (string-equal str1 str2))
(format "%s<> ... %s<>" str1 str2))
((< cmplength limit)
(format "%s<>" str1))
(t
(format "%s ..." str1)))))
;;; Buffer rescanning
;;;
(defun fume-rescan-buffer-trigger ()
"Automatically spots when a buffer rescan becomes necessary"
(if fume-auto-rescan-buffer-p
(if (> fume-rescan-trigger-counter 0)
(setq fume-rescan-trigger-counter (1- fume-rescan-trigger-counter))
(setq fume-rescan-trigger-counter
(max fume-rescan-trigger-counter-min
(/ (buffer-size) fume-rescan-trigger-counter-buffer-size)))
(if (or fume-funclist-dirty-p
(save-excursion
(let (find fnam)
(condition-case ()
(and fume-function-name-regexp
(setq fnam (fume-function-before-point))
(setq find (symbol-value
'fume-find-next-function-name-method))
(progn (end-of-line 1)
(re-search-backward
fume-function-name-regexp nil t))
(if (eq find 'fume-find-next-latex-section-name)
(let ((lnam
(car (fume-find-next-latex-section-name
(current-buffer)))))
(fume-tex-rescan-buffer-hook)
(not (string-equal
(substring fnam
(string-match " " fnam))
(substring lnam
(string-match " " lnam)))))
(not (string-equal
fnam
(car (funcall find (current-buffer)))))))
(error nil)))))
(let ((fume-scanning-message nil))
(fume-rescan-buffer))))))
(defun fume-install-rescan-buffer-trigger ()
(cond ((not (fume-post-command-hook-p 'fume-rescan-buffer-trigger))
(fume-add-post-command-hook 'fume-rescan-buffer-trigger 'append)
;; Make narrow-to-region tickle func-menu
(or (fboundp 'fume-narrow-to-region)
(fset 'fume-narrow-to-region
(symbol-function 'narrow-to-region)))
(defun narrow-to-region (b e)
"Restrict editing in this buffer to the current region.
The rest of the text becomes temporarily invisible and untouchable
but is not deleted; if you save the buffer in a file, the invisible
text is included in the file. C-x n w makes all visible again.
See also `save-restriction'.
When calling from a program, pass two arguments; positions (integers
or markers) bounding the text that should remain visible"
(interactive "r")
(fume-narrow-to-region b e)
(if fume-funclist (setq fume-funclist-dirty-p t)))
;; Make widen tickle func-menu
(or (fboundp 'fume-widen)
(fset 'fume-widen (symbol-function 'widen)))
(defun widen ()
"Remove restrictions (narrowing) from current buffer.
This allows the buffer's full text to be seen and edited."
(interactive)
(fume-widen)
(if fume-funclist (setq fume-funclist-dirty-p t))))))
(defun fume-rescan-buffer (&optional popmenu)
"Rescans the buffer for function names.
If optional arg POPMENU is non-nil, brings up the function-menu."
(interactive)
(let ((find (symbol-value 'fume-find-next-function-name-method))
(fnam)
(flst '())
(buffer-to-scan (current-buffer)))
(save-excursion
(goto-char (point-min))
(cond (fume-scanning-message
(display-message 'progress (format fume-scanning-message 0)))
(fume-rescanning-message
(display-message 'progress fume-rescanning-message)))
(while (setq fnam
(condition-case ()
(funcall find buffer-to-scan)
(error
;; test for more possible fns after this error trap
(if (consp fume-function-name-regexp)
(save-excursion
(re-search-forward
(car fume-function-name-regexp) nil t))
(and fume-function-name-regexp
(save-excursion
(re-search-forward
fume-function-name-regexp nil t)))))))
(cond ((listp fnam)
(setq flst (cons fnam flst))
(if fume-found-function-hook
(save-excursion (run-hooks 'fume-found-function-hook)))))
(if fume-scanning-message
(display-message 'progress (format fume-scanning-message (fume-relative-position)))))
(cond (fume-scanning-message
(display-message 'progress (format "%s done" (format fume-scanning-message 100))))
(fume-rescanning-message
(display-message 'progress (format "%s done" fume-rescanning-message))))
;; make a copy of flst sorted by position in buffer
(setq fume-modeline-funclist
(nreverse
(sort (fume-shallow-copy-list flst) 'fume-sort-by-position)))
(if fume-sort-function
(setq fume-funclist (sort flst fume-sort-function))
(setq fume-funclist (nreverse flst)))
(if fume-rescan-buffer-hook
(run-hooks 'fume-rescan-buffer-hook))))
(if popmenu
(function-menu)
(let ((fume-rescan-inhibit-p t))
(fume-update-menubar-entry)))
;; Reset dirty flag
(setq fume-funclist-dirty-p nil))
(defun fume-scan-buffer ()
(or fume-funclist (progn (fume-set-defaults) (fume-rescan-buffer))))
;;; Routine to position cursor
;;;
(defun fume-goto-function (fn pos)
"Position cursor at function FN at location POS"
(let ((orig-pos (point))
(case-fold-search nil)
(match-fn (cond ((string-match "DEFUN " fn) ; Emacs DEFUN declaration
(substring fn (match-end 0)))
((string-match "^[ \t]*" fn) ; strip leading spaces
(substring fn (match-end 0)))
(t
fn))))
(save-excursion
(goto-char pos)
(or (looking-at (regexp-quote match-fn))
(let ((fume-scanning-message nil))
(fume-rescan-buffer)
(setq pos (cdr-safe (assoc fn fume-funclist))))))
(if pos
(progn
(goto-char pos)
;; possibly set mark
(or (= orig-pos (point))
(push-mark orig-pos (null fume-scanning-message)))
(if (numberp fume-fn-window-position)
(set-window-start
(selected-window)
(save-excursion
(beginning-of-line
(- 1 (min (- (window-height) 2) fume-fn-window-position)))
(point)))
(recenter)))
(ding)
(message "%s not found" fn)
(function-menu))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;; The main entry points for this package ;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Interface to function-menu for mouse bindings only
;;;
(defun mouse-function-menu (event)
"Wrapper for mouse button bindings for function-menu"
(interactive "e")
(let ((currwin (selected-window)))
(condition-case ()
(progn
(select-window (fume-event-window event))
(let ((fume-auto-position-popup nil))
(call-interactively 'function-menu)))
(error (select-window currwin)))))
;;; Interface for Key bindings
;;;
(defun function-menu (&optional use-menubar return-only)
"Pop up a menu of functions for selection with the mouse.
Jumps to the selected function. A mark is set at the old position,
so you can easily go back with C-u \\[set-mark-command].
With a prefix arg adds the menu to the current menubar.
Optional second argument, RETURN-ONLY if non-nil simply returns
the basic menu of functions."
(interactive "P")
(setq use-menubar
(and use-menubar fume-running-xemacs fume-not-tty current-menubar))
(catch 'no-functions
(or (fume-set-defaults)
(if (not (interactive-p))
(throw 'no-functions t)
(error "func-menu does not support the mode \"%s\"" mode-name)))
;; Create a list for this buffer only if there isn't any.
(or fume-funclist
(if fume-rescan-inhibit-p
(fume-remove-menubar-entry)
(fume-rescan-buffer)))
(or fume-funclist
(if (not (interactive-p))
(throw 'no-functions t)
(error "No functions found in this buffer.")))
;; Rescan buffer trigger
(fume-install-rescan-buffer-trigger)
;; Function name in modeline
(fume-maybe-install-modeline-feature)
;; The rest of this routine works only for (Lucid) XEmacs
(cond (fume-running-xemacs
;; Create the menu
(let* ((count 0)
(index-method
(intern (format "fume-index-sublist-method-%d"
fume-index-method)))
function-menu
(function-menu-items
(mapcar
(function
(lambda (sublist)
(setq count (1+ count))
(cons (format "%s"
(funcall index-method sublist count))
(mapcar
(function
(lambda (menu)
(vector (format "%s" (car menu))
(list 'fume-goto-function
(car menu) (cdr menu))
t)))
sublist))))
(fume-split fume-funclist fume-max-items))))
(or (> count 1)
(setq function-menu-items (cdr (car function-menu-items))))
(if return-only
nil
(setq function-menu
(` ((,@ function-menu-items)
"----"
["Display full list of functions"
fume-list-functions t]
[(, (concat "Rescan buffer : " (buffer-name)))
(fume-rescan-buffer (, (null use-menubar))) t]
"----"
["Toggle modeline display"
fume-toggle-modeline-display t]
["Toggle buffer auto rescanning"
fume-toggle-auto-rescanning t]
["About Func-Menu" fume-about t])))
(cond (use-menubar
(fume-remove-menubar-entry)
(set-buffer-menubar (copy-sequence current-menubar))
(fume-add-submenu
fume-menubar-menu-name
(` ((,@ function-menu)
"----"
["Remove Function Menu from menubar"
fume-remove-menubar-entry t]))
fume-menubar-menu-location))
((and fume-not-tty ; trap tty segmentation faults...
(not (popup-up-p)))
(or (fume-update-menubar-entry)
(setq function-menu
(cons
["Put Function Menu into menubar"
(function-menu t) t]
(cons "----" function-menu))))
(if fume-auto-position-popup
(fume-set-mouse-position))
(popup-menu
(cons fume-menubar-menu-name function-menu)))))
;; Return basic function menu for display by another function
function-menu-items)))))
(defun fume-mouse-function-goto (event)
"Goto function clicked on or prompt in minibuffer (with completion)."
(interactive "@e")
(let ((orig-pos (point)))
(goto-char (event-point event))
(let ((fume-no-prompt-on-valid-default t))
(fume-prompt-function-goto))
(or (= orig-pos (point))
(push-mark orig-pos (null fume-scanning-message)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;; Keyboard access to func-menu for tty users ;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Internal variables only
;;;
(defvar fume-list-srcbuffer nil)
(defvar fume-list-reused-win-p nil)
(defvar fume-list-trampled-buffer nil)
;;; Espen Skoglund <espensk@stud.cs.uit.no>
;;; David Hughes <d.hughes@videonetworks.com>
;;;
(defun fume-prompt-function-goto (&optional other-window-p)
"Goto function prompted for in minibuffer (with completion).
With prefix arg, jumps to function in a different window."
(interactive "P")
(let* ((default-name (fume-what-looking-at t))
(OrigBuffer (current-buffer))
(flistMode (eq major-mode 'fume-list-mode))
(no-prompt (or flistMode fume-no-prompt-on-valid-default))
(TargetBuffer (if flistMode fume-list-srcbuffer OrigBuffer)))
(switch-to-buffer TargetBuffer)
(fume-scan-buffer) ;; Create funclist and set defaults if required
(let* (;; verify default-name is a valid function name
(default-exists-p (assoc default-name fume-funclist))
;; Prompt for function name in minibuffer, unless there is a valid
;; function name at point & fume-no-prompt-on-valid-default set to t
(function-name
(if (and default-exists-p no-prompt)
""
(let ((this-command last-command)) ; preserve last-command
(completing-read
(format "Goto function%s%s: "
(if other-window-p " other window" "")
(if default-exists-p
(concat " (" default-name ")")
""))
fume-funclist nil t))))
;; Use default function name if just RET was pressed
(function-name (if (and default-exists-p (string= "" function-name))
default-name
function-name)))
(switch-to-buffer OrigBuffer)
;; Goto function or just return if function name is empty string
(cond ((not (string= "" function-name))
(if other-window-p
(cond ((prog1 (one-window-p)
(if (not (windowp other-window-p))
(switch-to-buffer-other-window TargetBuffer)
(select-window other-window-p)
(switch-to-buffer TargetBuffer)))
(other-window 1)
(shrink-window-if-larger-than-buffer)
(other-window 1)))
(switch-to-buffer TargetBuffer))
(fume-goto-function
function-name (cdr (assoc function-name fume-funclist))))))))
(defun fume-prompt-function-goto-one-window ()
(interactive)
(delete-other-windows)
(fume-prompt-function-goto))
(defun fume-prompt-function-goto-other-window ()
(interactive)
(fume-prompt-function-goto t))
(defun fume-list-functions-show-fn-other-window (&optional window)
(interactive)
(beginning-of-line)
(select-window
(prog1 (selected-window) (fume-prompt-function-goto (or window t)))))
(defun fume-list-functions-show-prev-fn-other-window (&optional window)
(interactive)
(forward-line -1)
(fume-list-functions-show-fn-other-window window))
(defun fume-list-functions-show-next-fn-other-window (&optional window)
(interactive)
(forward-line 1)
(beginning-of-line)
(fume-list-functions-show-fn-other-window window))
(defun fume-list-functions-help ()
(interactive)
(fume-about)
(sit-for 1)
(display-message 'prompt
(format "SPC=%s, p=%s, n=%s, o=%s, G=%s, RET=%s, q=%s"
"this"
"previous"
"next"
"other win"
"one win"
"this win"
"quit")))
(defun fume-list-functions-quit ()
(interactive)
(if (eq major-mode 'fume-list-mode)
(kill-buffer (current-buffer)))
(if fume-list-reused-win-p
(condition-case ()
(switch-to-buffer fume-list-trampled-buffer)
(error nil))
(or (one-window-p)
(delete-window (selected-window))))
(if (not (eq (current-buffer) fume-list-srcbuffer))
(condition-case ()
(select-window (get-buffer-window fume-list-srcbuffer))
(error
(condition-case ()
(switch-to-buffer fume-list-srcbuffer)
(error nil))))))
(defun fume-list-mouse-select (event)
(interactive "e")
(let (ws cb cp (wc (current-window-configuration)))
(mouse-set-point event)
(fume-prompt-function-goto-other-window)
(setq ws (save-excursion
(beginning-of-line (- 1 fume-fn-window-position)) (point))
cb (current-buffer)
cp (point))
(set-window-configuration wc)
(switch-to-buffer cb)
(set-window-start (selected-window) ws)
(goto-char cp)))
(defvar fume-list-mode-map nil)
(or fume-list-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "q" 'fume-list-functions-quit)
(define-key map "h" 'fume-list-functions-help)
(define-key map "?" 'fume-list-functions-help)
(define-key map "g" 'fume-prompt-function-goto)
(define-key map "\C-m" 'fume-prompt-function-goto)
(define-key map "G" 'fume-prompt-function-goto-one-window)
(define-key map "o" 'fume-prompt-function-goto-other-window)
(define-key map " " 'fume-list-functions-show-fn-other-window)
(define-key map "p" 'fume-list-functions-show-prev-fn-other-window)
(define-key map "n" 'fume-list-functions-show-next-fn-other-window)
(if fume-not-tty
(define-key map [(button2)] 'fume-list-mouse-select))
(setq fume-list-mode-map map)))
(defvar fume-list-mode-hook nil "*Hook to run after fume-list-mode entered")
(defun fume-list-functions (&optional this-window)
"Creates a temporary buffer listing functions found in the current buffer"
(interactive "P")
(fume-scan-buffer) ;; Create funclist and set defaults if required
(let ((func-near-point (format "^%s$" (fume-function-before-point))))
(cond ((or fume-function-name-regexp (fume-maybe-install-modeline-feature))
(save-excursion
(let ((srcbuffer (current-buffer)))
(set-buffer (get-buffer-create fume-buffer-name))
(let (buffer-read-only) (erase-buffer))
(use-local-map fume-list-mode-map)
(setq buffer-read-only t
mode-name "Func-Menu"
major-mode 'fume-list-mode
fume-list-srcbuffer srcbuffer
fume-list-reused-win-p (not (one-window-p)))
(if fume-not-tty
(setq mode-motion-hook 'mode-motion-highlight-symbol))
(run-hooks 'fume-list-mode-hook)))
(or fume-funclist (fume-rescan-buffer))
(if fume-funclist
(mapcar (function
(lambda (p)
(save-excursion
(set-buffer fume-buffer-name)
(let (buffer-read-only)
(goto-char (point-max))
(if (= (point-min) (point))
(insert (car p))
(insert (concat "\n" (car p))))
(set-buffer-modified-p nil)
(goto-char (point-min))))))
fume-funclist))
(cond ((interactive-p)
(if current-prefix-arg
(switch-to-buffer fume-buffer-name)
(switch-to-buffer-other-window fume-buffer-name)
(setq fume-list-trampled-buffer (other-buffer))
(or fume-list-reused-win-p
(shrink-window-if-larger-than-buffer)))
(cond (func-near-point
(re-search-forward func-near-point nil t)
(beginning-of-line)))
(fume-list-functions-help))))
(t
(error "Func-Menu is not operative in this buffer")))))
(provide 'func-menu)
;;; end of file
|