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
|
;;; helm-lib.el --- Helm routines. -*- lexical-binding: t -*-
;; Copyright (C) 2015 ~ 2025 Thierry Volpiatto
;; Author: Thierry Volpiatto
;; URL: http://github.com/emacs-helm/helm
;; 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 of the License, 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, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; All helm functions that don't require specific helm code should go here.
;;; Code:
(require 'cl-lib)
(declare-function ansi-color--find-face "ansi-color.el")
(declare-function ansi-color-apply-sequence "ansi-color.el")
(declare-function dired-current-directory "dired.el")
(declare-function ffap-file-remote-p "ffap.el")
(declare-function ffap-url-p "ffap.el")
(declare-function helm-get-attr "helm-core.el")
(declare-function helm-set-attr "helm-core.el")
(declare-function helm-follow-mode-p "helm-core.el")
(declare-function helm-get-current-source "helm-core.el")
(declare-function helm-get-selection "helm-core.el")
(declare-function helm-get-sources "helm-core.el")
(declare-function helm-interpret-value "helm-core.el")
(declare-function helm-log-run-hook "helm-core.el")
(declare-function helm-next-line "helm-core.el")
(declare-function helm-get-next-header-pos "helm-core.el")
(declare-function helm-mark-current-line "helm-core.el")
(declare-function helm-marked-candidates "helm-core.el")
(declare-function helm-set-case-fold-search "helm-core.el")
(declare-function helm-get-previous-header-pos "helm-core.el")
(declare-function helm-source--cl--print-table "helm-source.el")
(declare-function helm-update "helm-core.el")
(declare-function org-content "org.el")
(declare-function org-mark-ring-goto "org.el")
(declare-function org-mark-ring-push "org.el")
(declare-function org-table-p "org-compat.el")
(declare-function org-table-align "org-table.el")
(declare-function org-table-end "org-table.el")
(declare-function org-open-at-point "org.el")
(declare-function helm-read-file-name "helm-mode.el")
(declare-function find-function-library "find-func.el")
(declare-function find-library-name "find-func.el")
(defvar helm-sources)
(defvar helm-initial-frame)
(defvar helm-current-position)
(defvar helm-persistent-action-display-window)
(defvar helm--buffer-in-new-frame-p)
(defvar helm-completion-style)
(defvar helm-completion-styles-alist)
(defvar helm-persistent-action-window-buffer)
(defvar helm-help-buffer-name)
(defvar completion-flex-nospace)
(defvar find-function-source-path)
(defvar ffap-machine-p-unknown)
(defvar ffap-machine-p-local)
(defvar ffap-machine-p-known)
(defvar helm-debug-output-buffer)
;;; User vars.
;;
(defcustom helm-file-globstar t
"Same as globstar bash shopt option.
When non-nil a pattern beginning with two stars will expand
recursively.
Directories expansion is not supported yet."
:group 'helm
:type 'boolean)
(defcustom helm-yank-text-at-point-function nil
"The function used to forward point with `helm-yank-text-at-point'.
With a nil value, fallback to default `forward-word'.
The function should take one arg, an integer like `forward-word'.
NOTE: Using `forward-symbol' here is not very useful as it is
already provided by \\<helm-map>\\[next-history-element]."
:type 'function
:group 'helm)
(defcustom helm-scroll-amount nil
"Scroll amount when scrolling helm window or other window in a helm session.
It is used by `helm-scroll-other-window', `helm-scroll-up', `helm-scroll-down'
and `helm-scroll-other-window-down'.
If you prefer scrolling line by line, set this value to 1."
:group 'helm
:type 'integer)
(defcustom helm-help-full-frame t
"Display help window in full frame when non nil.
Even when nil probably the same result (full frame) can be
reached by tweaking `display-buffer-alist', but it is much more
convenient to use a simple boolean value here."
:type 'boolean
:group 'helm-help)
(defvar helm-ff--boring-regexp nil)
(defun helm-ff--setup-boring-regex (var val)
(set var val)
(setq helm-ff--boring-regexp
(cl-loop for r on val
if (cdr r)
concat (concat (car r) "\\|")
else concat (car r))))
(defcustom helm-boring-file-regexp-list
(mapcar (lambda (f)
(let ((rgx (regexp-quote f)))
(if (string-match-p "[^/]$" f)
;; files: e.g .o => \\.o$
(concat rgx "$")
;; To not ignore files with same prefix as directory names
;; (bug#2009) use e.g. .git/ => \.git\?$.
;; See also PR in bug#2012.
(concat rgx "?$"))))
completion-ignored-extensions)
"A list of regexps matching boring files.
This list is build by default on `completion-ignored-extensions'.
The directory names should end with \"/?$\" e.g. \"\\.git/?$\" and
the file names should end with \"$\" e.g. \"\\.o$\".
These regexps may be used to match the entire path, not just the
file name, so for example to ignore files with a prefix
\".bak.\", use \"\\.bak\\..*$\" as the regexp.
NOTE: When modifying this, be sure to use customize interface or
the customize functions e.g. `customize-set-variable' and NOT
`setq'."
:group 'helm-files
:type '(repeat (choice regexp))
:set 'helm-ff--setup-boring-regex)
(defcustom helm-describe-function-function 'describe-function
"Function used to describe functions in Helm."
:group 'helm-elisp
:type 'function)
(defcustom helm-describe-variable-function 'describe-variable
"Function used to describe variables in Helm."
:group 'helm-elisp
:type 'function)
(defcustom helm-current-directory-alist
'((dired-mode . dired-current-directory)
(mu4e-main-mode . mu4e-root-maildir)
(gnus-group-mode . gnus-directory)
(gnus-summary-mode . gnus-directory)
(gnus-article-mode . gnus-directory))
"Tell `helm-current-directory' what to use according to `major-mode'.
Each element of alist is (MAJOR-MODE . SYMBOL) where SYMBOL is either a variable
or a function."
:type '(alist :key-type symbol :value-type sexp)
:group 'helm-files)
;;; Internal vars
;;
(defvar helm-yank-point nil)
(defvar helm-pattern ""
"The input pattern used to update the helm buffer.")
(defvar helm-buffer "*helm*"
"Buffer showing completions.")
(defvar helm-current-buffer nil
"Current buffer when `helm' is invoked.")
(defvar helm-suspend-update-flag nil)
(defvar helm-action-buffer "*helm action*"
"Buffer showing actions.")
(defvar helm-current-prefix-arg nil
"Record `current-prefix-arg' when exiting minibuffer.")
(defvar helm-current-error nil
"Same as `compilation-current-error' but for helm-occur and helm-grep.")
;;; Compatibility
;;
(defun helm-add-face-text-properties (beg end face &optional append object)
"Add the face property to the text from START to END.
It is a compatibility function which behaves exactly like
`add-face-text-property' if available, otherwise like
`add-text-properties'. When only `add-text-properties' is
available APPEND is ignored."
(if (fboundp 'add-face-text-property)
(add-face-text-property beg end face append object)
(add-text-properties beg end `(face ,face) object)))
;;; Override `push-mark'
;;
;; Fix duplicates in `mark-ring' and `global-mark-ring' and update
;; buffers in `global-mark-ring' to recentest mark.
(defun helm--advice-push-mark (&optional location nomsg activate)
(unless (null (mark t))
(let ((marker (copy-marker (mark-marker))))
(setq mark-ring (cons marker (delete marker mark-ring))))
(when (> (length mark-ring) mark-ring-max)
;; Move marker to nowhere.
(set-marker (car (nthcdr mark-ring-max mark-ring)) nil)
(setcdr (nthcdr (1- mark-ring-max) mark-ring) nil)))
(set-marker (mark-marker) (or location (point)) (current-buffer))
;; Now push the mark on the global mark ring.
(setq global-mark-ring (cons (copy-marker (mark-marker))
;; Avoid having multiple entries
;; for same buffer in `global-mark-ring'.
(cl-loop with mb = (current-buffer)
for m in global-mark-ring
for nmb = (marker-buffer m)
unless (eq mb nmb)
collect m)))
(when (> (length global-mark-ring) global-mark-ring-max)
(set-marker (car (nthcdr global-mark-ring-max global-mark-ring)) nil)
(setcdr (nthcdr (1- global-mark-ring-max) global-mark-ring) nil))
(or nomsg executing-kbd-macro (> (minibuffer-depth) 0)
(message "Mark set"))
(when (or activate (not transient-mark-mode))
(set-mark (mark t)))
nil)
(defcustom helm-advice-push-mark t
"Override `push-mark' with a version avoiding duplicates when non-nil."
:group 'helm
:type 'boolean
:set (lambda (var val)
(set var val)
(if val
(advice-add 'push-mark :override #'helm--advice-push-mark '((depth . 100)))
(advice-remove 'push-mark #'helm--advice-push-mark))))
;; This the version of Emacs-27 written by Stefan
(defun helm-advice--ffap-read-file-or-url (prompt guess)
(or guess (setq guess default-directory))
(if (ffap-url-p guess)
(read-string prompt guess nil nil t)
(unless (ffap-file-remote-p guess)
(setq guess (abbreviate-file-name (expand-file-name guess))))
(read-file-name prompt (file-name-directory guess) nil nil
(file-name-nondirectory guess))))
;; The native-comp branch of emacs "is a modified Emacs capable of compiling
;; and running Emacs Lisp as native code in form of re-loadable elf files."
;; (https://akrl.sdf.org/gccemacs.html). The function subr-native-elisp-p is a
;; native function available only in this branch and evaluates to true if the
;; argument supplied is a natively compiled lisp function. Use this function
;; if it's available, otherwise return nil. Helm needs to distinguish compiled
;; functions from other symbols in a various places.
(defun helm-subr-native-elisp-p (object)
(when (fboundp 'subr-native-elisp-p)
(subr-native-elisp-p object)))
;; Available only in Emacs-28+
(unless (fboundp 'file-modes-number-to-symbolic)
(defun file-modes-number-to-symbolic (mode &optional filetype)
"Return a string describing a file's MODE.
For instance, if MODE is #o700, then it produces `-rwx------'.
FILETYPE if provided should be a character denoting the type of file,
such as `?d' for a directory, or `?l' for a symbolic link and will override
the leading `-' char."
(string
(or filetype
(pcase (ash mode -12)
;; POSIX specifies that the file type is included in st_mode
;; and provides names for the file types but values only for
;; the permissions (e.g., S_IWOTH=2).
;; (#o017 ??) ;; #define S_IFMT 00170000
(#o014 ?s) ;; #define S_IFSOCK 0140000
(#o012 ?l) ;; #define S_IFLNK 0120000
;; (8 ??) ;; #define S_IFREG 0100000
(#o006 ?b) ;; #define S_IFBLK 0060000
(#o004 ?d) ;; #define S_IFDIR 0040000
(#o002 ?c) ;; #define S_IFCHR 0020000
(#o001 ?p) ;; #define S_IFIFO 0010000
(_ ?-)))
(if (zerop (logand 256 mode)) ?- ?r)
(if (zerop (logand 128 mode)) ?- ?w)
(if (zerop (logand 64 mode))
(if (zerop (logand 2048 mode)) ?- ?S)
(if (zerop (logand 2048 mode)) ?x ?s))
(if (zerop (logand 32 mode)) ?- ?r)
(if (zerop (logand 16 mode)) ?- ?w)
(if (zerop (logand 8 mode))
(if (zerop (logand 1024 mode)) ?- ?S)
(if (zerop (logand 1024 mode)) ?x ?s))
(if (zerop (logand 4 mode)) ?- ?r)
(if (zerop (logand 2 mode)) ?- ?w)
(if (zerop (logand 512 mode))
(if (zerop (logand 1 mode)) ?- ?x)
(if (zerop (logand 1 mode)) ?T ?t)))))
(unless (and (fboundp 'pos-bol) (fboundp 'pos-eol))
(defalias 'pos-bol 'line-beginning-position)
(defalias 'pos-eol 'line-end-position))
;;; Compatibility with < Emacs-29
;; Needed by helm-packages.el and affixations functions for helm-mode (27)
;; waiting package.el moves on Elpa. Slightly modified to fit with
;; Emacs-27/28.
(when (eval-when-compile (< emacs-major-version 29)) ; Avoid warnings.
(progn
(require 'package)
(eval-and-compile
(defun package--archives-initialize ()
"Make sure the list of installed and remote packages are initialized."
(unless package--initialized
(package-initialize t))
(unless package-archive-contents
(package-refresh-contents)))
(defun package-get-descriptor (pkg-name)
"Return the `package-desc' of PKG-NAME."
(unless package--initialized (package-initialize 'no-activate))
(or (cadr (assq pkg-name package-alist))
(cadr (assq pkg-name package-archive-contents))))
(defun package-upgrade (name)
"Upgrade package NAME if a newer version exists."
(let* ((package (if (symbolp name)
name
(intern name)))
(pkg-desc (cadr (assq package package-alist))))
;; `pkg-desc' will be nil when the package is an "active built-in".
(when pkg-desc
(package-delete pkg-desc 'force 'dont-unselect))
(package-install package
;; An active built-in has never been "selected"
;; before. Mark it as installed explicitly.
(and pkg-desc 'dont-select))))
(defun package-recompile (pkg)
"Byte-compile package PKG again.
PKG should be either a symbol, the package name, or a `package-desc'
object."
(let ((pkg-desc (if (package-desc-p pkg)
pkg
(cadr (assq pkg package-alist)))))
;; Delete the old .elc files to ensure that we don't inadvertently
;; load them (in case they contain byte code/macros that are now
;; invalid).
(dolist (elc (directory-files-recursively
(package-desc-dir pkg-desc) "\\.elc\\'"))
(delete-file elc))
(package--compile pkg-desc))))))
;;; Provide `help--symbol-class' not available in emacs-27
;;
(unless (fboundp 'help--symbol-class)
(defun help--symbol-class (s)
"Return symbol class characters for symbol S."
(when (stringp s)
(setq s (intern-soft s)))
(concat
(when (fboundp s)
(concat
(cond
((commandp s) "c")
((eq (car-safe (symbol-function s)) 'macro) "m")
(t "f"))
(and (let ((flist (indirect-function s)))
(advice--p (if (eq 'macro (car-safe flist)) (cdr flist) flist)))
"!")
(and (get s 'byte-obsolete-info) "-")))
(when (boundp s)
(concat
(if (custom-variable-p s) "u" "v")
(and (local-variable-if-set-p s) "'")
(and (ignore-errors (not (equal (symbol-value s) (default-value s)))) "*")
(and (get s 'byte-obsolete-variable) "-")))
(and (facep s) "a")
(and (fboundp 'cl-find-class) (cl-find-class s) "t"))))
;; Inline `kmacro--to-vector' from E29 to fix compatibility of
;; `helm-kbd-macro-concat-macros' with E29 and E28.
(unless (fboundp 'kmacro--to-vector)
(defun kmacro--to-vector (object)
"Normalize an old-style key sequence to the vector form."
(if (not (stringp object))
object
(let ((vec (string-to-vector object)))
(unless (multibyte-string-p object)
(dotimes (i (length vec))
(let ((k (aref vec i)))
(when (> k 127)
(setf (aref vec i) (+ k ?\M-\C-@ -128))))))
vec))))
(defun helm-proper-list-p (obj)
"Compatibility function for `proper-list-p'."
(if (fboundp 'proper-list-p)
(proper-list-p obj) ; 27+
(and (listp obj) (not (cdr (last obj))))))
;;; Macros helper.
;;
(defmacro helm-with-gensyms (symbols &rest body)
"Bind the SYMBOLS to fresh uninterned symbols and eval BODY."
(declare (indent 1))
`(let ,(mapcar (lambda (s)
;; Use cl-gensym here instead of make-symbol
;; to ensure a symbol that have a live that go
;; beyond the live of its macro have different name.
;; i.e symbols created with `with-helm-temp-hook'
;; should have random names.
`(,s (cl-gensym (symbol-name ',s))))
symbols)
,@body))
;;; Command loop helper
;;
(defconst helm-this-command-black-list
'(helm-maybe-exit-minibuffer
helm-confirm-and-exit-minibuffer
helm-exit-minibuffer
exit-minibuffer
helm-M-x))
(defconst helm-this-command-functions '(read-multiple-choice--long-answers)
"The functions that should be returned by `helm-this-command' when found.")
(defun helm-this-command ()
"Return the actual command in action.
Like `this-command' but return the real command, and not
`exit-minibuffer' or other unwanted functions."
(cl-loop for count from 1 to 50
for btf = (backtrace-frame count)
for fn = (cl-second btf)
;; Some commands like `kill-buffer' may call another function
;; involving a completing-read, in this case we want to stop at this
;; function and not go up to the initial interactive call (in this
;; case kill-buffer) See Issue#2634.
if (or (memq fn helm-this-command-functions)
(and
;; In some cases we may have in the way an
;; advice compiled resulting in byte-code,
;; ignore it (Bug#691).
(symbolp fn)
(commandp fn)
(not (memq fn helm-this-command-black-list))))
return fn
else
if (and (eq fn 'call-interactively)
(> (length btf) 2))
return (cadr (cdr btf))))
;;; Iterators
;;
(defun helm-iter-list (seq &optional cycle)
"Return an iterator object from SEQ.
The iterator die and return nil when it reach end of SEQ.
When CYCLE is specified the iterator never ends."
(let ((lis seq))
(lambda ()
(let ((elm (car lis)))
(setq lis (if cycle
(or (cdr lis) seq)
(cdr lis)))
elm))))
(defun helm-iter-circular (seq)
"Infinite iteration on SEQ."
(helm-iter-list seq 'cycle))
(cl-defun helm-iter-sub-next-circular (seq elm &key (test 'eq))
"Infinite iteration of SEQ starting at ELM."
(let* ((pos (1+ (helm-position elm seq :test test)))
(sub (append (nthcdr pos seq) (helm-take seq pos)))
(iterator (helm-iter-circular sub)))
(lambda ()
(helm-iter-next iterator))))
(defun helm-iter-next (iterator)
"Return next elm of ITERATOR."
(and iterator (funcall iterator)))
;;; Anaphoric macros.
;;
(defmacro helm-aif (test-form then-form &rest else-forms)
"Anaphoric version of `if'.
Like `if' but set the result of TEST-FORM in a temporary variable
called `it'. THEN-FORM and ELSE-FORMS are then executed just like
in `if'."
(declare (indent 2) (debug t))
`(let ((it ,test-form))
(if it ,then-form ,@else-forms)))
(defmacro helm-awhile (sexp &rest body)
"Anaphoric version of `while'.
Same usage as `while' except that SEXP is bound to a temporary
variable called `it' at each turn.
An implicit nil block is bound to the loop so usage of
`cl-return' is possible to exit the loop."
(declare (indent 1) (debug t))
(helm-with-gensyms (flag)
`(let ((,flag t))
(cl-block nil
(while ,flag
(helm-aif ,sexp
(progn ,@body)
(setq ,flag nil)))))))
(defmacro helm-acond (&rest clauses)
"Anaphoric version of `cond'.
In each clause of CLAUSES, the result of the car of clause is
stored in a temporary variable called `it' and usable in the cdr
of this same clause. Each `it' variable is independent of its
clause. The usage is the same as `cond'."
(declare (debug cond))
(unless (null clauses)
(helm-with-gensyms (sym)
(let ((clause1 (car clauses)))
`(let ((,sym ,(car clause1)))
(helm-aif ,sym
(if (cdr ',clause1)
(progn ,@(cdr clause1))
it)
(helm-acond ,@(cdr clauses))))))))
(defmacro helm-aand (&rest conditions)
"Anaphoric version of `and'.
Each condition is bound to a temporary variable called `it' which
is usable in next condition."
(declare (debug (&rest form)))
(cond ((null conditions) t)
((null (cdr conditions)) (car conditions))
(t `(helm-aif ,(car conditions)
(helm-aand ,@(cdr conditions))))))
(defmacro helm-acase (expr &rest clauses)
"Check if EXPR match KEYLIST and then execute BODY.
`helm-acase' is a small macro mixing the features of `cl-case'
and `cond'.
KEYLIST can be any object that will be compared with `equal' or
an expression starting with special symbol `guard*' which is then
evaluated. Once evaluated the symbol `guard' is bound to the
returned value that can be used in the cdr of clause. When
KEYLIST match EXPR or `guard*' sexp evaluation is non-nil, BODY
is executed and `helm-acase' exits with its value.
Note:
`guard*' sexp should not be a single symbol to eval, e.g. (guard* foo)
in such cases you should use (guard* (progn foo)).
KEYLIST can also be a list starting with special symbol `dst*'
followed by an expression suitable for `cl-destructuring-bind'.
In this case all elements of `it' are bound to the elements of
this expression e.g.
(helm-acase \\='(1 2 3 4 5)
((dst* (l &rest args)) args))
=> (2 3 4 5)
If KEYLIST is a list, it is compared with EXPR, also each
elements of the list are checked with `member' to see if one
matches EXPR, ensure to not use special symbols `guard*' and
`dst*' at start of such KEYLIST to avoid confusing helm-acase
even if this is partially supported.
The last clause can use `t' or \\='otherwise as KEYLIST to specify a
fallback clause when previous clauses didn't match, if such a clause
starting with `t' or \\='otherwise is specified before last clause it
will override all next clauses, if you want to match an EXPR value equal
to `t' in any clauses quote it, i.e. `'t' or use an explicit
\(guard* (eq it t)).
EXPR is bound to a temporary variable called `it' which is
usable in all clauses to refer to EXPR.
\(fn EXPR (KEYLIST BODY...)...)"
(declare (indent 1) (debug (form &rest ([&or (symbolp form) sexp] body))))
(unless (null clauses)
(let* ((clause1 (car clauses))
(key (car clause1))
(sexp (car-safe (cdr-safe key)))
(sp-sym (car-safe key))
;; Ensure dst* and guard* are not treated as special symbols when
;; they are not followed by one sexp and nothing else, however if the
;; following sexp is not meant to be evaluated but just compared we
;; fail miserably, is it worth fixing it?
(issexp (and (consp sexp) (= (length key) 2)))
(isguard (and (eq 'guard* sp-sym) issexp))
(isdst (and (eq 'dst* sp-sym) issexp))
(special (or isguard isdst))
(guard-sexp (and isguard sexp))
(dst-sexp (and isdst sexp)))
`(let* ((it ,expr)
(guard ,guard-sexp)
(dst (and (consp it) ',dst-sexp)))
(cond ((or guard
(and ,(not special)
(or (equal it ',key)
(and (listp ',key) (member it ',key))))
(and (symbolp ',key)
(or (eq ',key t) (eq ',key 'otherwise))))
;; When this branch is expanded the compiler complains about not
;; referenced variables (the ones in `dst' that will be used in
;; next branch) so prevent warnings instead of using a progn
;; Merci Stefan!
(with-no-warnings ,@(cdr clause1)))
((and dst
(condition-case nil
(cl-destructuring-bind ,dst-sexp it
,@(cdr clause1))
(wrong-number-of-arguments nil))))
(t
(helm-acase it ,@(cdr clauses))))))))
;;; Fuzzy matching routines
;;
(defsubst helm--mapconcat-pattern (pattern)
"Transform string PATTERN in regexp for further fuzzy matching.
E.g.: helm.el$
=> \"[^h]*h[^e]*e[^l]*l[^m]*m[^.]*\\\\.[^e]*e[^l]*l$\"
^helm.el$
=> \"helm\\\\.el$\"."
(let ((ls (split-string-and-unquote pattern "")))
(if (string= "^" (car ls))
;; Exact match.
(mapconcat (lambda (c)
(if (and (string= c "$")
(string-match "$\\'" pattern))
c (regexp-quote c)))
(cdr ls) "")
;; Fuzzy match.
(mapconcat (lambda (c)
(if (and (string= c "$")
(string-match "$\\'" pattern))
c (format "[^%s]*%s" c (regexp-quote c))))
ls ""))))
(defsubst helm--collect-pairs-in-string (string)
;; We want to collect e.g.
;; in "abcd" -> (("a" "b") ("b" "c") ("c" "d"))
;; and not (("a" "b") ("c" "d")) so we use by #'cdr which is the default.
;; If the last pair have no cdr i.e. (s1 nil) ignore it.
(cl-loop for (s1 s2) on (split-string string "" t)
when s2 collect (list s1 s2)))
;;; Help routines.
;;
(defvar helm-help--iter-org-state nil)
(defvar helm-help-mode-before-hook nil
"A hook that runs before helm-help starts.")
(defvar helm-help-mode-after-hook nil
"A hook that runs when helm-help exits.")
(defcustom helm-help-default-prompt
"[SPC,C-v,next:ScrollUp b,M-v,prior:ScrollDown TAB:Cycle M-TAB:All C-s/r:Isearch q:Quit]"
"The prompt used in `helm-help'."
:type 'string
:group 'helm)
(defcustom helm-help-hkmap
'(("C-v" . helm-help-scroll-up)
("SPC" . helm-help-scroll-up)
("<next>" . helm-help-scroll-up)
("M-v" . helm-help-scroll-down)
("b" . helm-help-scroll-down)
("<prior>" . helm-help-scroll-down)
("C-s" . isearch-forward)
("C-r" . isearch-backward)
("C-a" . move-beginning-of-line)
("C-e" . move-end-of-line)
("C-f" . forward-char)
("<right>" . forward-char)
("C-b" . backward-char)
("<left>" . backward-char)
("C-n" . helm-help-next-line)
("C-p" . helm-help-previous-line)
("<down>" . helm-help-next-line)
("<up>" . helm-help-previous-line)
("M-a" . backward-sentence)
("M-e" . forward-sentence)
("M-f" . forward-word)
("M-b" . backward-word)
("M->" . end-of-buffer)
("C-M-f" . forward-sexp)
("C-M-b" . backward-sexp)
("M-<" . beginning-of-buffer)
("C-SPC" . helm-help-toggle-mark)
("C-M-SPC" . mark-sexp)
("TAB" . org-cycle)
("C-m" . helm-help-org-open-at-point)
("C-&" . helm-help-org-mark-ring-goto)
("C-%" . org-mark-ring-push)
("M-TAB" . helm-help-org-cycle)
("M-w" . helm-help-copy-region-as-kill)
("q" . helm-help-quit))
"Alist of (KEY . FUNCTION) for `helm-help'.
This is not a standard keymap, just an alist where it is possible to
define a simple KEY (a string with no spaces) associated with a
FUNCTION. More complex key like \"C-x C-x\" are not supported.
Interactive functions will be called interactively whereas other
functions will be called with funcall except commands that are in
`helm-help-not-interactive-command'.
For convenience you can add bindings here with `helm-help-define-key'."
:type '(alist :key-type string :key-value symbol)
:group 'helm)
(defvar helm-help-not-interactive-command '(isearch-forward isearch-backward)
"Commands that we don't want to call interactively in `helm-help'.")
(defun helm-help-internal (bufname insert-content-fn)
"Show long message during Helm session in BUFNAME.
INSERT-CONTENT-FN is the function that inserts text to be
displayed in BUFNAME."
(let ((winconf (current-frame-configuration))
(hframe (selected-frame)))
(helm-log-run-hook "helm-help-internal" 'helm-help-mode-before-hook)
(with-selected-frame helm-initial-frame
(select-frame-set-input-focus helm-initial-frame)
(unwind-protect
(progn
(setq helm-suspend-update-flag t)
(set-buffer (get-buffer-create bufname))
(switch-to-buffer bufname)
(when helm-help-full-frame (delete-other-windows))
(delete-region (point-min) (point-max))
(org-mode)
(save-excursion
(funcall insert-content-fn)
(goto-char (point-min))
(while (re-search-forward "^[|]" nil t)
(when (org-table-p t)
(org-table-align)
(goto-char (org-table-end)))))
(org-mark-ring-push) ; Put mark at bob
(buffer-disable-undo)
(helm-help-event-loop))
(raise-frame hframe)
(helm-log-run-hook "helm-help-internal" 'helm-help-mode-after-hook)
(setq helm-suspend-update-flag nil)
(set-frame-configuration winconf)))))
(cl-defun helm-help-scroll-up (&optional (amount helm-scroll-amount))
"Scroll up in `helm-help'."
(condition-case _err
(scroll-up-command amount)
(beginning-of-buffer nil)
(end-of-buffer nil)))
(cl-defun helm-help-scroll-down (&optional (amount helm-scroll-amount))
"Scroll down in `helm-help'."
(condition-case _err
(scroll-down-command amount)
(beginning-of-buffer nil)
(end-of-buffer nil)))
(defun helm-help-next-line ()
"Next line function for `helm-help'."
(condition-case _err
(call-interactively #'next-line)
(beginning-of-buffer nil)
(end-of-buffer nil)))
(defun helm-help-previous-line ()
"Previous line function for `helm-help'."
(condition-case _err
(call-interactively #'previous-line)
(beginning-of-buffer nil)
(end-of-buffer nil)))
(defun helm-help-toggle-mark ()
"Toggle mark in `helm-help'."
(if (region-active-p)
(deactivate-mark)
(push-mark nil nil t)))
(defun helm-help-org-cycle ()
"Runs `org-cycle' in `helm-help'."
(helm-acase (helm-iter-next helm-help--iter-org-state)
((guard* (numberp it)) (org-content))
;; See `helm--help-org-prefargs' about `org-cycle' ARG.
(t (org-cycle it))))
(defun helm-help-copy-region-as-kill ()
"Copy region function for `helm-help'"
(copy-region-as-kill
(region-beginning) (region-end))
(deactivate-mark))
(defun helm-help-quit ()
"Quit `helm-help'."
(if (or (get-buffer-window helm-help-buffer-name 'visible)
(get-buffer-window helm-debug-output-buffer 'visible))
(throw 'helm-help-quit nil)
(quit-window)))
(defun helm-help-org-open-at-point ()
"Calls `org-open-at-point' ignoring errors."
(ignore-errors
(org-open-at-point)))
(defun helm-help-org-mark-ring-goto ()
"Calls `org-mark-ring-goto' ignoring errors."
(ignore-errors
(org-mark-ring-goto)))
(defvar helm--help-org-prefargs
(if (> emacs-major-version 28)
'(1 (4) (16)) '(1 (16) (64)))
"`org-cycle' ARG have not the same meaning across Emacs versions.")
(defun helm-help-event-loop ()
"The loop in charge of scanning keybindings in `helm-help'."
(let ((prompt (propertize
helm-help-default-prompt
'face 'helm-helper))
scroll-error-top-bottom
(helm-help--iter-org-state (helm-iter-circular helm--help-org-prefargs)))
(catch 'helm-help-quit
(helm-awhile (read-key prompt)
(let ((fun (cl-loop for (k . v) in helm-help-hkmap
when (eql (aref (kbd k) 0) it)
return v)))
(when fun
(if (and (commandp fun)
(not (memq fun helm-help-not-interactive-command)))
;; For movement of cursor in help buffer we need to
;; call interactively commands for impaired people
;; using a synthetizer (Bug#1347).
(call-interactively fun)
(funcall fun))))))))
(defun helm-help-define-key (key function &optional override)
"Add KEY bound to fUNCTION in `helm-help-hkmap'.
If OVERRIDE is non nil, all bindings associated with FUNCTION are
removed and only (KEY . FUNCTION) is kept.
If FUNCTION is nil (KEY . FUNCTION) is not added and removed from
alist if already present.
See `helm-help-hkmap' for supported keys and functions."
(cl-assert (not (cdr (split-string key))) nil
(format "Error: Unsuported key `%s'" key))
(when override
(helm-awhile (rassoc function helm-help-hkmap)
(setq helm-help-hkmap (delete it helm-help-hkmap))))
(helm-aif (and (null function) (assoc key helm-help-hkmap))
(setq helm-help-hkmap (delete it helm-help-hkmap))
(and function (add-to-list 'helm-help-hkmap `(,key . ,function)))))
;;; Multiline transformer
;;
(defun helm-multiline-transformer (candidates _source)
(cl-loop with offset = (helm-interpret-value
(assoc-default 'multiline (helm-get-current-source)))
for cand in candidates
for disp = (or (car-safe cand) cand)
for real = (or (cdr-safe cand) cand)
if (numberp offset)
collect (cons (helm--multiline-get-truncated-candidate disp offset)
real)
else collect (cons disp real)))
(defun helm--multiline-get-truncated-candidate (candidate offset)
"Truncate CANDIDATE when its length is > than OFFSET."
(with-temp-buffer
(insert candidate)
(goto-char (point-min))
(if (and offset
(> (buffer-size) offset))
(let ((end-str "[...]"))
(concat
(buffer-substring
(point)
(save-excursion
(forward-char offset)
(setq end-str (if (looking-at "\n")
end-str (concat "\n" end-str)))
(point)))
end-str))
(buffer-string))))
;;; List processing
;;
(defun helm-flatten-list (seq)
"Return a list of all single elements of sublists in SEQ.
Example:
(helm-flatten-list \\='(1 (2 . 3) nil (4 5 (6) 7) 8 (9 . 10)))
=> (1 2 3 4 5 6 7 8 9 10)"
(let (result)
(cl-labels ((flatten
(seq)
(cl-loop for elm in seq
if (consp elm)
do (flatten
(if (atom (cdr elm))
(list (car elm) (cdr elm))
elm))
else do (and elm (push elm result)))))
(flatten seq))
(nreverse result)))
(defun helm-mklist (obj)
"Return OBJ as a proper list.
Otherwise make a proper list with one element OBJ.
Anonymous functions (lambdas) are treated as single elements."
(if (and (helm-proper-list-p obj) (not (functionp obj)))
obj
(list obj)))
(cl-defun helm-fast-remove-dups (seq &key (test 'eq))
"Remove duplicates elements in list SEQ.
This is same as `remove-duplicates' but with memoisation.
It is much faster, especially in large lists.
A test function can be provided with TEST argument key.
Default is `eq'.
NOTE: Comparison of special Elisp objects (e.g., markers etc.)
fails because their printed representations which are stored in
hash-table can't be compared with with the real object in SEQ.
This is a bug in `puthash' which store the printable
representation of object instead of storing the object itself,
this to provide at the end a printable representation of
hashtable itself."
(let ((table (make-hash-table :test test)))
(mapcan (lambda (x)
(unless (gethash x table)
(list (puthash x x table))))
seq)))
(defsubst helm--string-join (strings &optional separator)
"Join all STRINGS using SEPARATOR."
(mapconcat 'identity strings separator))
(defun helm--concat-regexps (regexp-list)
"Return a regexp which matches any of the regexps in REGEXP-LIST."
(if regexp-list
(concat "\\(?:" (helm--string-join regexp-list "\\)\\|\\(?:") "\\)")
"\\`\\'")) ; Match nothing
(defun helm-skip-entries (seq black-regexp-list &optional white-regexp-list)
"Remove entries which match one of REGEXP-LIST from SEQ."
(let ((black-regexp (helm--concat-regexps black-regexp-list))
(white-regexp (helm--concat-regexps white-regexp-list)))
(cl-loop for i in seq
unless (and (stringp i)
(string-match-p black-regexp i)
(null
(string-match-p white-regexp i)))
collect i)))
(defun helm-boring-directory-p (directory black-list)
"Check if one regexp in BLACK-LIST matches DIRECTORY."
(helm-awhile (helm-basedir (directory-file-name
(expand-file-name directory)))
;; Break at root to avoid infloop, root is / or on Windows
;; C:/ i.e. <volume>:/ (Bug#2308).
(when (string-match-p "\\`[A-Za-z]?:?/\\'" it)
(cl-return nil))
(when (cl-loop for r in black-list
thereis (string-match-p
r (directory-file-name directory)))
(cl-return t))
(setq directory it)))
(defun helm-shadow-entries (seq regexp-list)
"Put shadow property on entries in SEQ matching a regexp in REGEXP-LIST."
(let ((face 'italic))
(cl-loop for i in seq
if (cl-loop for regexp in regexp-list
thereis (and (stringp i)
(string-match regexp i)))
collect (propertize i 'face face)
else collect i)))
(defun helm-remove-if-not-match (regexp seq)
"Remove all elements of SEQ that don't match REGEXP."
(cl-loop for s in seq
for str = (cond ((symbolp s)
(symbol-name s))
((consp s)
(car s))
(t s))
when (string-match-p regexp str)
collect s))
(defun helm-remove-if-match (regexp seq)
"Remove all elements of SEQ that match REGEXP."
(cl-loop for s in seq
for str = (cond ((symbolp s)
(symbol-name s))
((consp s)
(car s))
(t s))
unless (string-match-p regexp str)
collect s))
(defun helm-transform-mapcar (fn seq)
"Apply function FN on all elements of list SEQ.
When SEQ is a list of cons cells apply FN on the cdr of each element,
keeping their car unmodified.
Examples:
(helm-transform-mapcar \\='upcase \\='(\"foo\" \"bar\"))
=> (\"FOO\" \"BAR\")
(helm-transform-mapcar \\='upcase \\='((\"1st\" . \"foo\") (\"2nd\" . \"bar\")))
=> ((\"1st\" . \"FOO\") (\"2nd\" . \"BAR\"))
"
(cl-loop for elm in seq
if (consp elm)
collect (cons (car elm) (funcall fn (cdr elm)))
else
collect (funcall fn elm)))
(defun helm-append-at-nth (seq elm index)
"Append ELM at INDEX in SEQ.
When INDEX is > to the SEQ length ELM is added at end of SEQ.
When INDEX is 0 or negative, ELM is added at beginning of SEQ.
Examples:
(helm-append-at-nth \\='(a b c d) \\='(z) 2)
=>(a b z c d)
(helm-append-at-nth \\='(a b c d) \\='((x . 1) (y . 2)) 2)
=>(a b (x . 1) (y . 2) c d)
(helm-append-at-nth \\='((a . 1) (b . 2) (c . 3)) \\='(x . 1) 1)
=>((a . 1) (x . 1) (b . 2) (c . 3))
"
(setq index (min (max index 0) (length seq))
elm (helm-mklist elm))
(if (zerop index)
(append elm seq)
(let* ((end-part (nthcdr index seq))
(len (length end-part))
(beg-part (butlast seq len)))
(append beg-part elm end-part))))
;;;###autoload
(defun helm-add-to-list (var elm index &optional replace)
"Add or move ELM to the value of VAR at INDEX unless already here.
If ELM is member of var value and at index INDEX, return var value
unchanged, if INDEX value is different move ELM at this `nth' INDEX value.
If ELM is not present in list add it at `nth' INDEX.
If REPLACE is non nil replace element at INDEX by ELM.
Do not use this function in helm code, use `helm-append-at-nth'
instead. It is meant to be used in config files only."
(cl-assert (boundp var) nil "Unbound variable `%s'" var)
(let ((val (symbol-value var))
flag)
(cond ((and (member elm val) (equal elm (nth index val))))
((member elm val)
(setq val (delete elm val) flag t))
((and replace (not (< index 0)) (not (> index (length val))))
(setq val (delete (nth index val) val) flag t))
(t (setq flag t)))
(if flag
(set var (helm-append-at-nth val elm index))
val)))
(cl-defgeneric helm-take (seq n)
"Return the first N elements of SEQ if SEQ is longer than N.
It is used for narrowing list of candidates to the
`helm-candidate-number-limit'."
(if (> (length seq) n) (cl-subseq seq 0 n) seq))
(cl-defmethod helm-take ((seq list) n)
"`helm-take' optimized for lists."
(let ((store '()))
(if (> n (length seq))
seq
(while (> (1+ (cl-decf n)) 0)
(push (pop seq) store))
(nreverse store))))
(defalias 'helm-take-first-elements 'helm-take)
(make-obsolete 'helm-take-first-elements 'helm-take "3.9.1")
(defun helm-source-by-name (name &optional sources)
"Get a Helm source in SOURCES by NAME.
Optional argument SOURCES is a list of Helm sources which default
to `helm-sources'."
(cl-loop with src-list = (if sources
(cl-loop for src in sources
collect (if (listp src)
src
(symbol-value src)))
helm-sources)
for source in src-list
thereis (and (string= name (assoc-default 'name source)) source)))
(defun helm-make-actions (&rest args)
"Build an alist with (NAME . ACTION) elements with each pairs in ARGS.
Where NAME is a string or a function returning a string or nil
and ACTION a function.
If NAME returns nil the pair is skipped.
\(fn NAME ACTION ...)"
(cl-loop for (name fn) on args by #'cddr
when (functionp name)
do (setq name (funcall name))
when name
collect (cons name fn)))
(defun helm-closest-number-in-list (num list)
"Return closest number to NUM found in LIST.
LIST is a list of numbers and NUM a number."
(cl-loop for i in list
for diff = (if (> num i) (- num i) (- i num))
collect (cons diff i) into res
minimize diff into min
finally return (cdr (assq min res))))
(defun helm-group-candidates-by (candidates function &optional selection separate)
"Group similar items in CANDIDATES according to FUNCTION.
Items not matching FUNCTION are grouped as well in a separate group.
Example:
(setq B \\='(1 2 3 4 5 6 7 8 9))
(helm-group-candidates-by B #\\='cl-oddp 2 \\='separate)
=> ((2 4 6 8) (1 3 5 7 9))
SELECTION specify where to start in CANDIDATES.
Similar candidates to SELECTION will be listed on top.
If SEPARATE is non-nil returns a list of groups i.e. a list of lists,
otherwise a plain list is returned."
(cl-loop with sel = (or selection (helm-get-selection) "")
with lst = (copy-sequence candidates)
while lst
for group = (cl-loop for c in lst
when (equal (funcall function c)
(funcall function sel))
collect c into grp
and do (setq lst (delete c lst))
finally return (prog1 grp
(setq sel (car lst))))
if separate collect group
else append group))
(defun helm-reorganize-sequence-from-elm (sequence elm &optional reverse)
"Reorganize SEQUENCE from ELM.
Examples:
(helm-reorganize-sequence-from-elm \\='(a b c d e f g h i j k l) \\='e)
=> (f g h i j k l a b c d e)
(helm-reorganize-sequence-from-elm \\='(a b c d e f g h i j k l) \\='e t)
=> (d c b a l k j i h g f e)
"
(let* ((new-seq (if reverse
(reverse sequence)
sequence))
(pos (1+ (helm-position elm new-seq :test 'equal))))
(append (nthcdr pos new-seq) (helm-take new-seq pos))))
(cl-defun helm-position (elm seq &key (test 'eq) from-end)
"Return position of ELM in SEQ.
Comparison is tested with keyword TEST which default to `eq'.
If keyword FROM-END is non nil search from end."
(let ((count (if from-end (1- (length seq)) 0)))
(while (if from-end
(not (zerop count))
(<= count (1- (length seq))))
(when (funcall test (if (listp seq)
(car (nthcdr count seq))
(aref seq count))
elm)
(cl-return-from helm-position count))
(setq count (funcall (if from-end #'1- #'1+) count)))))
(defsubst helm-copy-sequence (seq)
"Return a copy of SEQ.
When the elements of SEQ are strings, they are
copied; they are not shared with the original.
Otherwise returns SEQ unchanged, the elements are not copied."
(cl-loop for elm in seq collect
(if (stringp elm)
(copy-sequence elm)
elm)))
;;; Strings processing.
;;
(defun helm-stringify (elm)
"Return the representation of ELM as a string.
ELM can be a string, a number or a symbol."
(helm-acase elm
((guard* (stringp it)) it)
((guard* (numberp it)) (number-to-string it))
((guard* (symbolp it)) (symbol-name it))))
(defun helm-substring (str width)
"Return the substring of string STR from 0 to WIDTH.
Handle multibyte characters by moving by columns."
(with-temp-buffer
(save-excursion
(insert str))
(move-to-column width)
(buffer-substring (pos-bol) (point))))
(defun helm-substring-by-width (str width &optional endstr)
"Truncate string STR to end at column WIDTH.
Similar to `truncate-string-to-width'.
Add ENDSTR at end of truncated STR.
Add spaces at end if needed to reach WIDTH when STR is shorter
than WIDTH."
(cl-loop for ini-str = str
then (substring ini-str 0 (1- (length ini-str)))
for sw = (string-width ini-str)
when (<= sw width) return
(concat ini-str endstr (make-string (- width sw) ? ))))
(defun helm-string-multibyte-p (str)
"Check if string STR contains multibyte characters."
(cl-loop for c across str
thereis (> (char-width c) 1)))
(defun helm-get-pid-from-process-name (process-name)
"Get pid from running process PROCESS-NAME."
;; Protect system processes calls (Issue #2497)
;; Ensure `list-system-processes' and `process-attributes' don't run
;; on remote (only Emacs-28/29+).
(cl-loop with default-directory = temporary-file-directory
with process-list = (list-system-processes)
for pid in process-list
for process = (assoc-default 'comm (process-attributes pid))
when (and process (string-match process-name process))
return pid))
(defun helm-ff-find-printers ()
"Return a list of available printers on Unix systems."
(when (executable-find "lpstat")
(let ((printer-list (with-temp-buffer
(call-process "lpstat" nil t nil "-a")
(split-string (buffer-string) "\n"))))
(cl-loop for p in printer-list
for printer = (car (split-string p))
when printer
collect printer))))
(defun helm-region-active-p ()
(and transient-mark-mode mark-active (/= (mark) (point))))
(defun helm-quote-whitespace (candidate)
"Quote whitespace, if some, in string CANDIDATE."
(replace-regexp-in-string " " "\\\\ " candidate))
(defun helm-current-line-contents ()
"Current line string without properties."
(buffer-substring-no-properties (pos-bol) (pos-eol)))
(defun helm--replace-regexp-in-buffer-string (regexp rep str &optional fixedcase literal subexp start)
"Replace REGEXP by REP in string STR.
Same as `replace-regexp-in-string' but handle properly REP as
function with SUBEXP specified.
E.g.:
(helm--replace-regexp-in-buffer-string
\"e\\\\(m\\\\)acs\" \\='upcase \"emacs\" t nil 1)
=> \"eMacs\"
(replace-regexp-in-string
\"e\\\\(m\\\\)acs\" \\='upcase \"emacs\" t nil 1)
=> \"eEMACSacs\"
Also START argument behaves as expected unlike
`replace-regexp-in-string'.
E.g.:
(helm--replace-regexp-in-buffer-string \"f\" \"r\" \"foofoo\" t nil nil 3)
=> \"fooroo\"
(replace-regexp-in-string \"f\" \"r\" \"foofoo\" t nil nil 3)
=> \"roo\"
Unlike `replace-regexp-in-string' this function is buffer-based
implemented i.e. replacement is computed inside a temp buffer, so
REGEXP should be used differently than with
`replace-regexp-in-string'.
NOTE: This function is used internally for
`helm-ff-query-replace-on-filenames' and builded for this.
You should use `replace-regexp-in-string' instead unless the
behaviour of this function is really needed."
(with-temp-buffer
(insert str)
(goto-char (or start (point-min)))
(while (re-search-forward regexp nil t)
(replace-match (cond ((and (functionp rep) subexp)
(funcall rep (match-string subexp)))
((functionp rep)
(funcall rep str))
(t rep))
fixedcase literal nil subexp))
(buffer-string)))
(defun helm-url-unhex-string (str)
"Same as `url-unhex-string' but ensure STR is completely decoded."
(setq str (or str ""))
(with-temp-buffer
(save-excursion (insert str))
(while (re-search-forward "%[A-Za-z0-9]\\{2\\}" nil t)
(replace-match (byte-to-string (string-to-number
(substring (match-string 0) 1)
16))
t t)
;; Restart from beginning until string is completely decoded.
(goto-char (point-min)))
(decode-coding-string (buffer-string) 'utf-8)))
(cl-defun helm-read-answer (prompt answer-list
&optional (help 'helm-read-answer-default-help-fn))
"Prompt user for an answer.
Arg PROMPT is the prompt to present user the different possible
answers, ANSWER-LIST is a list of strings.
If user enters an answer which is one of ANSWER-LIST return this
answer, otherwise keep prompting for a valid answer.
Note that answer should be a single char, only short answer are
accepted.
When HELP is provided, it is a string or a function that returns a string
which will be displayed in a buffer when \"h\"
is pressed (don't forget to add \"h\" in prompt).
Example:
(helm-acase (helm-read-answer
\"answer [y,n,!,q,h]: \"
\\='(\"y\" \"n\" \"!\" \"q\"))
(\"y\" \"yes\")
(\"n\" \"no\")
(\"!\" \"all\")
(\"q\" \"quit\"))
"
(unwind-protect
(helm-awhile (read-key (propertize
prompt 'face 'minibuffer-prompt))
(let ((str (and (characterp it) (string it)))
(choices (remove "h" answer-list)))
(cond ((and str (member str choices))
(cl-return str))
((and help (string= str "h"))
(helm-aif (get-buffer-window "*choices help*" 'visible)
(quit-window t it)
(with-current-buffer-window "*choices help*"
'(display-buffer-at-bottom
(window-height . fit-window-to-buffer)
(preserve-size . (nil . t)))
nil (progn
(insert (if (functionp help)
(funcall help) help))
(setq-local cursor-type nil)))))
(t (message "Please answer by %s"
(mapconcat 'identity choices ", "))
(sit-for 1)))))
(helm-aand help (get-buffer-window "*choices help*") (quit-window t it))))
(defun helm-read-answer-default-help-fn ()
"Return a string suitable for `helm-read-answer' help."
(with-temp-buffer
(save-excursion
(insert "y: yes\n"
"n: no\n"
"!: yes for all\n"
"q: quit\n"
"h: toggle this help"))
(while (re-search-forward "^\\(.\\):" nil t)
(helm-add-face-text-properties (match-beginning 1) (match-end 1)
'font-lock-variable-name-face))
(buffer-string)))
(defun helm-read-answer-dolist-with-action (prompt list action
&optional
prompt-formater
help-function)
"Read answer with PROMPT and execute ACTION on each element of LIST.
Argument PROMPT is a format spec string e.g. \"Do this on %s?\"
which take each elements of LIST as argument, no need to provide
the help part i.e. [y,n,!,q] it will be already added.
While looping through LIST, ACTION is executed on each elements
differently depending of answer:
- y Execute ACTION on element.
- n Skip element.
- ! Don't ask anymore and execute ACTION on remaining elements.
- q Skip all remaining elements.
PROMPT-FORMATER may be a function or a list containing strings and
functions. Functions either in list or alone are called on each element
in LIST to be displayed in PROMPT."
(let (dont-ask)
(catch 'break
(dolist (elm list)
(if dont-ask
(funcall action elm)
(helm-acase (helm-read-answer
(apply #'format
(concat prompt "[y,n,!,q,h]")
(helm-acase prompt-formater
((guard* (consp it))
(mapcar (lambda (x)
(if (functionp x)
(funcall x elm)
x))
it))
((guard* (functionp it))
(list (funcall it elm)))
(t (list elm))))
'("y" "n" "!" "q")
(or help-function #'helm-read-answer-default-help-fn))
("y" (funcall action elm))
("n" (ignore))
("!" (prog1
(funcall action elm)
(setq dont-ask t)))
("q" (throw 'break nil))))))))
(defsubst helm-string-numberp (str)
"Return non nil if string STR represent a number."
(cl-assert (stringp str) t)
(cl-loop with chars = '(?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9)
for c across str always (memql c chars)))
(defsubst helm-re-search-forward (regexp &optional bound noerror count)
"Same as `re-search-forward' but return nil when point doesn't move.
This avoid possible infloop when a wrong regexp is entered in minibuffer."
;; See Issue#2652 and Issue#2653.
(let ((pos (point)))
(helm-acase (re-search-forward regexp bound noerror count)
((guard* (eql it pos)) nil)
(t it))))
;;; Symbols routines
;;
(defun helm-symbolify (str-or-sym)
"Get symbol of STR-OR-SYM."
(helm-acase str-or-sym
((guard* (symbolp it)) it)
("" nil)
(t (intern it))))
(defun helm-symbol-name (obj)
"Return name of OBJ.
If object is a lambda, return \"Anonymous\"."
;; lambdas are no more represented as list in
;; Emacs-29+ Bug#2666.
(if (or (and (not (symbolp obj)) (functionp obj))
(byte-code-function-p obj)
(helm-subr-native-elisp-p obj))
"Anonymous"
(symbol-name obj)))
(defun helm-describe-class (class)
"Display documentation of Eieio CLASS, a symbol or a string."
(cl-letf (((symbol-function 'cl--print-table)
#'helm-source--cl--print-table))
(if (fboundp 'cl-describe-type)
(cl-describe-type (helm-symbolify class))
(let ((helm-describe-function-function 'describe-function))
(helm-describe-function (helm-symbolify class))))))
(defun helm-describe-function (func)
"Display documentation of FUNC, a symbol or string."
(cl-letf (((symbol-function 'message) #'ignore))
(funcall helm-describe-function-function (helm-symbolify func))))
(defun helm-describe-variable (var)
"Display documentation of VAR, a symbol or a string."
(cl-letf (((symbol-function 'message) #'ignore))
(funcall helm-describe-variable-function (helm-symbolify var))))
(defun helm-describe-symbol (sym)
"Display documentation of SYM, a symbol or a string."
(cl-letf (((symbol-function 'message) #'ignore))
(let ((helm-describe-function-function 'describe-symbol))
(funcall helm-describe-function-function (helm-symbolify sym)))))
(defun helm-describe-face (face)
"Display documentation of FACE, a symbol or a string."
(let ((faces (helm-marked-candidates)))
(cl-letf (((symbol-function 'message) #'ignore))
(describe-face (if (cdr faces)
(mapcar 'helm-symbolify faces)
(helm-symbolify face))))))
(defun helm-describe-re-char-classes-1 (exp)
(helm-acase exp
(":xdigit:"
(format "%s
This matches the hexadecimal digits.
‘0’ through ‘9’, ‘a’ through ‘f’ and ‘A’ through ‘F’." it))
(":word:"
(format "%s
This matches any character that has word syntax.
Note that the syntax of a character, and thus which characters are considered
“word-constituent”, depends on the major mode." it))
(":upper:"
(format "%s
This matches any upper-case letter.
It is determined by the current case table.
If ‘case-fold-search’ is non-‘nil’, this
also matches any lower-case letter. Note that a buffer can have
its own local case table different from the default one." it))
(":unibyte:"
(format "%s
This matches any unibyte character." it))
(":space:"
(format "%s
This matches any character that has whitespace syntax.
Note that the syntax of a character, and thus
which characters are considered “whitespace”, depends on the major mode." it))
(":punct:"
(format "%s
This matches any punctuation character.
At present, for multibyte characters, it matches anything that has non-word syntax,
and thus its exact definition can vary from one major mode to another, since
the syntax of a character depends on the major mode.)" it))
(":print:"
(format "%s
This matches any printing character.
Either spaces or graphic characters matched by ‘[:graph:]’." it))
(":nonascii:"
(format "%s
This matches any non-ASCII character." it))
(":multibyte:"
(format "%s
This matches any multibyte character." it))
(":lower:"
(format "%s
This matches any lower-case letter.
It is determined by the current case table.
If ‘case-fold-search’ is non-‘nil’, this also matches
any upper-case letter. Note that a buffer can have its own local
case table different from the default one." it))
(":graph:"
(format "%s
This matches graphic characters.
Everything except spaces, ASCII and
non-ASCII control characters, surrogates, and codepoints unassigned
by Unicode, as indicated by the Unicode ‘general-category’ property." it))
(":digit:"
(format "%s
This matches ‘0’ through ‘9’.
Thus, ‘[-+[:digit:]]’ matches any digit,as well as ‘+’ and ‘-’." it))
(":cntrl:"
(format "%s
This matches any cntrl character.
That is any character whose code is in the range 0–31." it))
(":blank:"
(format "%s
This matches horizontal whitespace.
It is defined by Annex C of the Unicode Technical Standard #18.
In particular, it matches spaces,tabs,
and other characters whose Unicode ‘general-category’
property indicates they are spacing separators." it))
(":alpha:"
(format "%s
This matches any letter.
For multibyte characters, it matches characters
whose Unicode ‘general-category’ property indicates
they are alphabetic characters." it))
(":alnum:"
(format "%s
This matches any letter or digit.
For multibyte characters, it matches characters
whose Unicode ‘general-category’ property
indicates they are alphabetic or decimal number characters." it))
(":ascii:"
(format "%s
This matches any ASCII character (codes 0–127)." it))))
(defun helm-describe-re-char-classes (exp)
"Describe Char Classes for regexps."
(with-output-to-temp-buffer "*help*"
(princ (helm-describe-re-char-classes-1 exp))))
(defun helm-elisp--persistent-help (candidate fun &optional name)
"Used to build persistent actions describing CANDIDATE with FUN.
Argument NAME is used internally to know which command to use
when symbol CANDIDATE refers at the same time to a variable and a
function.
See `helm-elisp-show-help'."
(let ((hbuf (get-buffer (help-buffer))))
(cond ((helm-follow-mode-p)
(if name
(funcall fun candidate name)
(funcall fun candidate)))
((or (and (helm-get-attr 'help-running-p)
(string= candidate (helm-get-attr 'help-current-symbol))))
(progn
;; When started from a help buffer,
;; Don't kill this buffer as it is helm-current-buffer.
(unless (equal hbuf helm-current-buffer)
(kill-buffer hbuf)
(set-window-buffer (get-buffer-window hbuf)
;; It is generally
;; helm-current-buffer but it may
;; be another buffer when helm have
;; been started from a dedicated window.
(if helm--buffer-in-new-frame-p
helm-current-buffer
helm-persistent-action-window-buffer)))
(helm-set-attr 'help-running-p nil))
;; Force running update hook to may be delete
;; helm-persistent-action-display-window, this is done in
;; helm-persistent-action-display-window (the function).
(unless helm--buffer-in-new-frame-p
(helm-update (regexp-quote (helm-get-selection)))))
(t
(if name
(funcall fun candidate name)
(funcall fun candidate))
(helm-set-attr 'help-running-p t)))
(helm-set-attr 'help-current-symbol candidate)))
(defcustom helm-find-function-default-project nil
"Default directories to search symbols definitions from `helm-apropos'.
A list of directories or a single directory name.
Helm will allow you selecting one of those directories with `M-n' when
using a prefix arg with the `find-function' action in `helm-apropos'.
This is a good idea to add the directory names of the projects you are
working on to quickly jump to the definitions in the project source
files instead of jumping to the loaded files located in `load-path'."
:type '(choice (repeat string)
string)
:group 'helm-elisp)
(defun helm-find-function-noselect (func &optional root-dir type)
"Find FUNC definition without selecting buffer.
FUNC can be a symbol or a string.
Instead of looking in LOAD-PATH to find library, this function
search in all subdirs of ROOT-DIR, if ROOT-DIR is unspecified ask for
it with completion.
TYPE when nil specify function, for other values see
`find-function-regexp-alist'."
(require 'find-func)
(let* ((sym (helm-symbolify func))
(dir (or root-dir (helm-read-file-name
"Project directory: "
:test 'file-directory-p
:default (helm-mklist helm-find-function-default-project)
:must-match t)))
(find-function-source-path
(cons dir (helm-walk-directory dir
:directories 'only
:path 'full)))
(symbol-lib (helm-acase type
((defvar defface)
(or (symbol-file sym it)
(help-C-file-name sym 'var)))
;; Sometimes e.g. with prefix key symbols
;; `find-function-library' returns a list of only one
;; element, the symbol itself i.e. no library.
(t (cdr (find-function-library sym)))))
(library (and symbol-lib
(find-library-name
(helm-basename symbol-lib t)))))
(if library
(find-function-search-for-symbol sym type library)
(error "Don't know where `%s' is defined" sym))))
(defun helm-find-function (func)
"Try to jump to FUNC definition.
With a prefix arg ask for the project directory to search in instead of
using LOAD-PATH."
(if (not helm-current-prefix-arg)
(find-function (helm-symbolify func))
(let ((place (helm-find-function-noselect func)))
(if (cdr place)
(progn
(switch-to-buffer (car place)) (goto-char (cdr place)))
(helm-aif (car place)
(message "Couldn't find Function `%s' in `%s'"
func (buffer-name it))
(message "Couldn't find Function `%s'" func))))))
(defun helm-find-variable (var)
"Try to jump to VAR definition.
With a prefix arg ask for the project directory to search in instead of
using LOAD-PATH."
(if (not helm-current-prefix-arg)
(find-variable (helm-symbolify var))
(let ((place (helm-find-function-noselect var nil 'defvar)))
(when place
(switch-to-buffer (car place)) (goto-char (cdr place))))))
(defun helm-find-face-definition (face)
"Try to jump to FACE definition.
With a prefix arg ask for the project directory to search in instead of
using LOAD-PATH."
(if (not helm-current-prefix-arg)
(find-face-definition (helm-symbolify face))
(let ((place (helm-find-function-noselect face nil 'defface)))
(when place
(switch-to-buffer (car place)) (goto-char (cdr place))))))
(defun helm-kill-new (candidate &optional replace)
"CANDIDATE is symbol or string.
See `kill-new' for argument REPLACE."
(kill-new (helm-stringify candidate) replace))
(defun helm-group-p (symbol)
"Return non nil when SYMBOL is a group."
(or (and (get symbol 'custom-loads)
(not (get symbol 'custom-autoload)))
(get symbol 'custom-group)))
;;; Modes
;;
(defun helm-same-major-mode-p (start-buffer alist)
"Decide if current-buffer is related to START-BUFFER.
Argument ALIST is an alist of associated major modes."
;; START-BUFFER is the current-buffer where we start searching.
;; Determine the major-mode of START-BUFFER as `cur-maj-mode'.
;; Each time the loop go in another buffer we try from this buffer
;; to determine if its `major-mode' is:
;; - same as the `cur-maj-mode'
;; - derived from `cur-maj-mode' and from
;; START-BUFFER if its mode is derived from the one in START-BUFFER.
;; - have an assoc entry (major-mode . cur-maj-mode)
;; - have an rassoc entry (cur-maj-mode . major-mode)
;; - check if one of these entries inherit from another one in
;; `alist'.
(let* ((cur-maj-mode (with-current-buffer start-buffer major-mode))
(maj-mode major-mode)
(c-assoc-mode (assq cur-maj-mode alist))
(c-rassoc-mode (rassq cur-maj-mode alist))
(o-assoc-mode (assq major-mode alist))
(o-rassoc-mode (rassq major-mode alist))
(cdr-c-assoc-mode (cdr c-assoc-mode))
(cdr-o-assoc-mode (cdr o-assoc-mode)))
(or (eq major-mode cur-maj-mode)
(derived-mode-p cur-maj-mode)
(with-current-buffer start-buffer
(derived-mode-p maj-mode))
(or (eq cdr-c-assoc-mode major-mode)
(eq (car c-rassoc-mode) major-mode)
(eq (cdr (assq cdr-c-assoc-mode alist))
major-mode)
(eq (car (rassq cdr-c-assoc-mode alist))
major-mode))
(or (eq cdr-o-assoc-mode cur-maj-mode)
(eq (car o-rassoc-mode) cur-maj-mode)
(eq (cdr (assq cdr-o-assoc-mode alist))
cur-maj-mode)
(eq (car (rassq cdr-o-assoc-mode alist))
cur-maj-mode)))))
;;; Source processing
;;
(defun helm-map-candidates-in-source (src fn pred)
"Map over all candidates in SRC and execute FN if PRED returns non nil.
Arg FN and PRED are functions called with current display part of
candidate as arg."
(declare (indent 1))
(save-excursion
(goto-char (helm-get-previous-header-pos))
(helm-next-line)
(let* ((next-head (helm-get-next-header-pos))
(end (and next-head
(save-excursion
(goto-char next-head)
(forward-line -1)
(point))))
(maxpoint (or end (point-max))))
(while (< (point) maxpoint)
(helm-mark-current-line)
(let ((cand (helm-get-selection nil 'withprop src)))
(when (funcall pred cand)
(funcall fn cand)))
(forward-line 1) (end-of-line)))))
;;; Files routines
;;
(defun helm-file-name-sans-extension (filename)
"Same as `file-name-sans-extension' but remove all extensions."
(helm-aif (file-name-sans-extension filename)
;; Start searching at index 1 for files beginning with a dot
;; (bug#1335).
(if (string-match "\\." (helm-basename it) 1)
(helm-file-name-sans-extension it)
it)))
(defsubst helm-file-name-extension (file)
"Returns FILE extension if it is not a number."
(helm-aif (file-name-extension file)
(and (not (helm-string-numberp it)) it)))
(defun helm-basename (fname &optional ext)
"Print FNAME with any leading directory components removed.
If specified, also remove filename extension EXT.
If FNAME is a directory EXT arg is ignored.
Arg EXT can be specified as a string, a number or `t' .
When specified as a string, this string is stripped from end of FNAME.
e.g. (helm-basename \"tutorial.el.gz\" \".el.gz\") => tutorial.
When `t' no checking of `file-name-extension' is done and the first
extension is removed unconditionally with `file-name-sans-extension'.
e.g. (helm-basename \"tutorial.el.gz\" t) => tutorial.el.
When a number, remove that many times extensions from FNAME until FNAME ends
with its real extension which is by default \".el\".
e.g. (helm-basename \"tutorial.el.gz\" 2) => tutorial
To specify the extension where to stop use a cons cell where the cdr is a regexp
matching extension e.g. (2 . \\\\.py$).
e.g. (helm-basename \"~/ucs-utils-6.0-delta.py.gz\" \\='(2 . \"\\\\.py\\\\\\='\"))
=>ucs-utils-6.0-delta."
(let ((non-essential t)
(ext-regexp (cond ((consp ext) (cdr ext))
((numberp ext) "\\.el\\'")
(t ext)))
result)
(cond ((or (null ext) (file-directory-p fname))
(file-name-nondirectory (directory-file-name fname)))
((or (numberp ext) (consp ext))
(cl-dotimes (_ (if (consp ext) (car ext) ext))
(let ((bn (file-name-nondirectory (or result fname))))
(helm-aif (file-name-sans-extension bn)
(if (string-match-p ext-regexp bn)
(cl-return (setq result (file-name-sans-extension bn)))
(setq result (file-name-sans-extension bn))))))
result)
((eq t ext)
(file-name-sans-extension (file-name-nondirectory fname)))
((stringp ext)
(replace-regexp-in-string (concat (regexp-quote ext) "\\'") ""
(file-name-nondirectory fname))))))
(defun helm-basedir (fname &optional parent)
"Return the base directory of FNAME ending by a slash.
If PARENT is non nil and FNAME is a directory return the parent
directory of FNAME, if PARENT is a number return the parent directory up to
PARENT level.
If PARENT is not specified but FNAME doesn't end by a slash, the returned value
is same as with PARENT."
(helm-aif (and fname
(or (and (string= fname "~") "~")
(file-name-directory
(helm-acase parent
((guard* (numberp it))
(cl-loop repeat it
for bd = (helm-basedir (or bd fname) t)
finally return bd))
((guard* (eq it t))
(directory-file-name fname))
(t fname)))))
(file-name-as-directory it)))
(defun helm-current-directory ()
"Return current-directory name at point.
It is done according to `helm-current-directory-alist'."
(expand-file-name
(helm-acase major-mode
((guard* (assoc-default it helm-current-directory-alist))
(helm-interpret-value guard))
(t default-directory))))
(defun helm-shadow-boring-files (files)
"Files matching `helm-boring-file-regexp' will be
displayed with the `file-name-shadow' face if available."
(helm-shadow-entries files helm-boring-file-regexp-list))
(defun helm-skip-boring-files (files)
"Files matching `helm-boring-file-regexp' will be skipped."
(helm-skip-entries files helm-boring-file-regexp-list))
(defun helm-skip-current-file (files)
"Current file will be skipped."
(remove (buffer-file-name helm-current-buffer) files))
(defun helm-w32-pathname-transformer (args)
"Change undesirable features of windows pathnames to ones more acceptable to
other candidate transformers."
(if (eq system-type 'windows-nt)
(helm-transform-mapcar
(lambda (x)
(replace-regexp-in-string
"/cygdrive/\\(.\\)" "\\1:"
(replace-regexp-in-string "\\\\" "/" x)))
args)
args))
(defun helm-w32-prepare-filename (file)
"Convert filename FILE to something usable by external w32 executables."
(replace-regexp-in-string ; For UNC paths
"/" "\\"
(replace-regexp-in-string ; Strip cygdrive paths
"/cygdrive/\\(.\\)" "\\1:"
file nil nil) nil t))
(defun helm-w32-shell-execute-open-file (file)
(with-no-warnings
(w32-shell-execute "open" (helm-w32-prepare-filename file))))
;; Same as `vc-directory-exclusion-list'.
(defvar helm-walk-ignore-directories
'("SCCS/" "RCS/" "CVS/" "MCVS/" ".svn/" ".git/" ".hg/" ".bzr/"
"_MTN/" "_darcs/" "{arch}/" ".gvfs/"))
(defsubst helm--dir-file-name (file dir)
(expand-file-name
(substring file 0 (1- (length file))) dir))
(defsubst helm--dir-name-p (str)
(char-equal (aref str (1- (length str))) ?/))
(cl-defun helm-walk-directory (directory &key (path 'basename)
directories
match skip-subdirs
noerror)
"Walk through DIRECTORY tree.
Argument PATH can be one of basename, relative, full, or a
function called on file name, default to basename.
Argument DIRECTORIES when t return also directories names,
otherwise skip directories names, with a value of `only' returns
only subdirectories, i.e. files are skipped.
Argument MATCH is a regexp matching files or directories.
Argument SKIP-SUBDIRS when t will skip
`helm-walk-ignore-directories', otherwise if it is given as a
list of directories, this list will be used instead of
`helm-walk-ignore-directories'.
Argument NOERROR when t will skip directories which are not
accessible."
(let ((fn (cl-case path
(basename 'file-name-nondirectory)
(relative 'file-relative-name)
(full 'identity)
(t path)))) ; A function.
(setq skip-subdirs (if (listp skip-subdirs)
skip-subdirs
helm-walk-ignore-directories))
(cl-labels ((ls-rec (dir)
(unless (file-symlink-p dir)
(cl-loop for f in (sort (file-name-all-completions "" dir)
'string-lessp)
unless (member f '("./" "../"))
;; A directory.
;; Use `helm--dir-file-name' to remove the final slash.
;; Needed to avoid infloop on directory symlinks.
if (and (helm--dir-name-p f)
(helm--dir-file-name f dir))
nconc
(unless (or (member f skip-subdirs)
(and noerror
(not (file-accessible-directory-p it))))
(if (and directories
(or (null match)
(string-match match f)))
(nconc (list (concat (funcall fn it) "/"))
(ls-rec it))
(ls-rec it)))
;; A regular file.
else nconc
(when (and (null (eq directories 'only))
(or (null match) (string-match match f)))
(list (funcall fn (expand-file-name f dir))))))))
(ls-rec directory))))
(defun helm-file-expand-wildcards (pattern &optional full)
"Same as `file-expand-wildcards' but allow recursion.
Recursion happens when PATTERN starts with two stars.
Directories expansion is not supported."
(let ((bn (helm-basename pattern))
(case-fold-search nil))
(if (and helm-file-globstar
(string-match "\\`\\*\\{2\\}\\(.*\\)" bn))
(helm-walk-directory (helm-basedir pattern)
:path (cl-case full
(full 'full)
(relative 'relative)
((basename nil) 'basename)
(t 'full))
:directories nil
:match (or (helm-wildcard-to-regexp bn)
(wildcard-to-regexp bn))
:skip-subdirs t)
(helm-aif (helm-wildcard-to-regexp bn)
(directory-files (helm-basedir pattern) full it)
;; `file-expand-wildcards' fails to expand weird directories
;; like "[ foo.zz ] bar.*.avi", fallback to `directory-files'
;; in such cases.
(or (file-expand-wildcards pattern full)
(directory-files (helm-basedir pattern)
full (wildcard-to-regexp bn)))))))
(defun helm-wildcard-to-regexp (wc)
"Transform wilcard WC like \"**.{jpg,jpeg}\" in REGEXP."
(when (string-match ".*\\(\\*\\{1,2\\}\\)\\.[{]\\(.*\\)[}]\\'" wc)
(format ".*\\.\\(%s\\)$"
(replace-regexp-in-string
"," "\\\\|" (match-string 2 wc)))))
(defun helm-locate-lib-get-summary (file)
"Extract library description from FILE."
(with-temp-buffer
(let (desc)
(cl-letf (((symbol-function 'message) #'ignore))
(insert-file-contents file nil 0 128))
(goto-char (point-min))
(when (re-search-forward "^;;;?\\(.*\\) ---? \\(.*\\)" (pos-eol) t)
(setq desc (match-string-no-properties 2)))
(if (or (null desc) (string= "" desc)
;; Fix issue#2716 with an header line like
;; ";; foo --- -*-[...]" i.e. desc is not provided.
(string-match "\\`-\\*-" desc))
"Not documented"
(car (split-string desc "-\\*-" nil "[ \t\n\r-]+"))))))
(defun helm-local-directory-files (directory &rest args)
"Run `directory-files' without tramp file name handlers.
Take same args as `directory-files'."
(require 'tramp)
(let ((file-name-handler-alist
(cl-loop for (re . sym) in file-name-handler-alist
unless (and (symbolp sym)
(string-prefix-p "tramp-" (symbol-name sym)))
collect `(,re . ,sym)))
tramp-mode)
;; Avoid error with 5nth arg COUNT which is not available in previous Emacs,
;; at least 27.1, see bug#2662.
(apply #'directory-files directory args)))
(defun helm-common-dir-1 (files)
"Find the common directories of FILES."
(if (cdr files)
(cl-loop with base = (car files)
with others = nil
for file in files
for cpart = (fill-common-string-prefix base file)
if cpart
do (setq base cpart)
else do (push file others)
finally return (if (and others base)
(nconc (list (directory-file-name base))
(helm-common-dir-1 others))
(list (and base (directory-file-name base)))))
(and files (list (directory-file-name
(file-name-directory (car files)))))))
(defun helm-common-dir (files)
"Return the longest common directory path of FILES list.
If FILES are not all common to the same drive (Windows) a list of
common directory is returned."
(let ((result (helm-common-dir-1 files)))
(if (cdr result) result (car result))))
;; Tests:
;; (helm-common-dir '("c:/foo" "c:/foo/bar/baz"
;; "f:/foo" "e:/foo" "f:/foo/bar"
;; "d:/foo" "d:/foo/bar/baz"
;; "e:/foo/bar/baz"))
;; ("c:/foo" "e:/foo" "f:/foo" "d:/foo")
;; (helm-common-dir '("/home/you/download/foo/"
;; "/home/you/download/foo/bar/baz"
;; "/home/you/tmp/foo"))
;; "/home/you"
;;; helm internals
;;
(defun helm-set-pattern (pattern &optional noupdate)
"Set minibuffer contents to PATTERN.
If optional NOUPDATE is non-nil, the Helm buffer is not changed."
(with-selected-window (or (active-minibuffer-window) (minibuffer-window))
;; Minibuffer may have a read-only string when using completion-in-region,
;; which prevent inserting in minibuffer. see
;; `helm-mode--completion-in-region-initial-input'.
(let ((inhibit-read-only t))
(delete-minibuffer-contents)
(insert pattern)))
(when noupdate
(setq helm-pattern pattern)))
(defun helm-minibuffer-completion-contents ()
"Return the user input in a minibuffer before point as a string.
That is what completion commands operate on."
(buffer-substring (field-beginning) (point)))
(defmacro with-helm-buffer (&rest body)
"Eval BODY inside `helm-buffer'."
(declare (indent 0) (debug t))
`(with-current-buffer (helm-buffer-get)
,@body))
(defmacro with-helm-current-buffer (&rest body)
"Eval BODY inside `helm-current-buffer'."
(declare (indent 0) (debug t))
`(with-current-buffer (or (and (buffer-live-p helm-current-buffer)
helm-current-buffer)
(setq helm-current-buffer
(current-buffer)))
,@body))
(defun helm-buffer-get ()
"Return `helm-action-buffer' if shown otherwise `helm-buffer'."
(if (helm-action-window)
helm-action-buffer
helm-buffer))
(defun helm-window ()
"Window of `helm-buffer'."
(get-buffer-window (helm-buffer-get) 0))
(defun helm-action-window ()
"Window of `helm-action-buffer'."
(get-buffer-window helm-action-buffer 'visible))
(defmacro with-helm-window (&rest body)
"Be sure BODY is excuted in the helm window."
(declare (indent 0) (debug t))
`(with-selected-window (helm-window)
,@body))
(defmacro helm-without-follow (&rest body)
"Ensure BODY runs without following.
I.e. when using `helm-next-line' and friends in BODY."
(declare (indent 0) (debug t))
`(cl-letf (((symbol-function 'helm-follow-mode-p)
(lambda (&optional _) nil)))
(let (helm-follow-mode-persistent)
(progn ,@body))))
(defun helm-candidate-prefixed-p (candidate)
"Return non nil when CANDIDATE is prefixed.
Candidates files are prefixed with [+] or a specific icon when candidate is a
non existing file, in other places candidates may be prefixed with an unknown
symbol [?], these candidate have the text property <helm-new-file> or <unknown>
property."
(or (get-text-property 0 'helm-new-file candidate)
(get-text-property 0 'unknown candidate)))
;; Completion styles related functions
;;
(defun helm--setup-completion-styles-alist ()
(cl-pushnew '(helm helm-completion-try-completion
helm-completion-all-completions
"helm multi completion style.")
completion-styles-alist
:test 'equal)
(unless (assq 'flex completion-styles-alist)
;; Add helm-flex style only if flex is not available.
(cl-pushnew '(helm-flex helm-flex-completion-try-completion
helm-flex-completion-all-completions
"helm flex completion style.\nProvide flex matching for emacs-26.")
completion-styles-alist
:test 'equal)))
(defvar helm-blacklist-completion-styles '(emacs21 emacs22))
(defun helm--prepare-completion-styles (&optional com-or-mode styles)
"Return a suitable list of styles for `completion-styles'.
When `helm-completion-style' is not `emacs' the Emacs vanilla
default `completion-styles' is used except for
`helm-dynamic-completion' which uses inconditionally `emacs' as
value for `helm-completion-style'.
If styles are specified in `helm-completion-styles-alist' for a
particular mode, use these styles for the corresponding mode.
If COM-OR-MODE (a mode or a command) is specified it is used to find the
corresponding styles in `helm-completion-styles-alist'.
If STYLES is specified as a list of styles suitable for
`completion-styles' these styles are used in the given order.
Otherwise helm style is added to `completion-styles' always after
flex or helm-flex completion style if present."
;; For `helm-completion-style' and `helm-completion-styles-alist'.
(require 'helm-mode)
(let ((from (if com-or-mode com-or-mode major-mode)))
(if (memq helm-completion-style '(helm helm-fuzzy))
;; Keep default settings, but probably nil is fine as well.
'(basic partial-completion emacs22)
(or
styles
(helm-acase (cdr (assq from helm-completion-styles-alist))
((dst* (_l &rest args)) args))
;; We need to have flex always behind helm, otherwise
;; when matching against e.g. '(foo foobar foao frogo bar
;; baz) with pattern "foo" helm style if before flex will
;; return foo and foobar only defeating flex that would
;; return foo foobar foao and frogo.
(let* ((wflex (car (or (assq 'flex completion-styles-alist)
(assq 'helm-flex completion-styles-alist))))
(styles (append (and (memq wflex completion-styles)
(list wflex))
(cl-loop for s in completion-styles
unless (or (memq s helm-blacklist-completion-styles)
(memq wflex completion-styles))
collect s))))
(helm-append-at-nth
styles '(helm)
(if (memq wflex completion-styles)
1 0)))))))
(defun helm-guess-filename-at-point ()
(with-helm-current-buffer
;; Ensure to disable the evil `ffap-machine-at-point' which may run here as
;; `file-name-at-point-functions' contains by default
;; `ffap-guess-file-name-at-point' See bug#2574.
;; Use same value as in Emacs-29 for next 3 vars to ensure `ffap-machine-p'
;; never ping.
(let ((ffap-machine-p-known 'accept)
(ffap-machine-p-local 'reject)
(ffap-machine-p-unknown 'reject))
(run-hook-with-args-until-success 'file-name-at-point-functions))))
;; Yank text at point.
;;
;;
(defun helm-yank-text-at-point (arg)
"Yank text at point in `helm-current-buffer' into minibuffer."
(interactive "p")
(with-helm-current-buffer
(let ((fwd-fn (or helm-yank-text-at-point-function #'forward-word))
diff)
;; Start to initial point if C-w have never been hit.
(unless helm-yank-point
(setq helm-yank-point (car helm-current-position)))
(save-excursion
(goto-char helm-yank-point)
(helm-set-pattern
(if (< arg 0)
(with-temp-buffer
(insert helm-pattern)
(let ((end (point-max)))
(goto-char end)
(funcall fwd-fn -1)
(setq diff (- end (point)))
(delete-region (point) end)
(buffer-string)))
(funcall fwd-fn arg)
(concat
;; Allow yankink beyond eol allow inserting e.g long
;; urls in mail buffers.
helm-pattern (replace-regexp-in-string
"\\`\n" ""
(buffer-substring-no-properties
helm-yank-point (point))))))
(setq helm-yank-point (if diff (- (point) diff) (point)))))))
(put 'helm-yank-text-at-point 'helm-only t)
(defun helm-undo-yank-text-at-point ()
"Undo last entry added by `helm-yank-text-at-point'."
(interactive)
(helm-yank-text-at-point -1))
(put 'helm-undo-yank-text-at-point 'helm-only t)
(defun helm-reset-yank-point ()
(setq helm-yank-point nil))
(add-hook 'helm-cleanup-hook 'helm-reset-yank-point)
(add-hook 'helm-after-initialize-hook 'helm-reset-yank-point)
;;; Ansi
;;
;;
(defvar helm--ansi-color-regexp
"\033\\[\\(K\\|[0-9;]*m\\)")
(defvar helm--ansi-color-drop-regexp
"\033\\[\\([ABCDsuK]\\|[12][JK]\\|=[0-9]+[hI]\\|[0-9;]*[Hf]\\)")
(with-suppressed-warnings ((obsolete ansi-color-apply-sequence))
(defun helm--ansi-color-apply (string)
"A version of `ansi-color-apply' immune to upstream changes.
Similar to the emacs-24.5 version without support to
`ansi-color-context' which is buggy in Emacs.
Modify also `ansi-color-regexp' by using own variable
`helm--ansi-color-regexp' that matches whole STRING.
This is needed to provide compatibility for both emacs-25 and
emacs-24.5 as emacs-25 version of `ansi-color-apply' is partially
broken."
(require 'ansi-color)
(let ((start 0)
codes end escape-sequence
result colorized-substring)
;; Find the next escape sequence.
(while (setq end (string-match helm--ansi-color-regexp string start))
(setq escape-sequence (match-string 1 string))
;; Colorize the old block from start to end using old face.
(when codes
(put-text-property
start end 'font-lock-face (ansi-color--find-face codes) string))
(setq colorized-substring (substring string start end)
start (match-end 0))
;; Eliminate unrecognized ANSI sequences.
(while (string-match helm--ansi-color-drop-regexp colorized-substring)
(setq colorized-substring
(replace-match "" nil nil colorized-substring)))
(push colorized-substring result)
;; Create new face, by applying escape sequence parameters.
(setq codes (ansi-color-apply-sequence escape-sequence codes)))
;; If the rest of the string should have a face, put it there.
(when codes
(put-text-property
start (length string)
'font-lock-face (ansi-color--find-face codes) string))
;; Save the remainder of the string to the result.
(if (string-match "\033" string start)
(push (substring string start (match-beginning 0)) result)
(push (substring string start) result))
(apply 'concat (nreverse result)))))
(when (< emacs-major-version 26)
(advice-add 'ansi-color-apply :override #'helm--ansi-color-apply))
;;; Fontlock
(dolist (mode '(emacs-lisp-mode lisp-interaction-mode))
(font-lock-add-keywords
mode
'(("(\\<\\(with-helm-after-update-hook\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-temp-hook\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-window\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-current-buffer\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-buffer\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-show-completion\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-default-directory\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(with-helm-restore-variables\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-multi-key-defun\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-while-no-input\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-aif\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-awhile\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-acond\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-aand\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-with-gensyms\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-read-answer-dolist-with-action\\)\\>" 1 font-lock-keyword-face)
("(\\<\\(helm-read-answer\\)\\>" 1 font-lock-keyword-face))))
(provide 'helm-lib)
;;; helm-lib.el ends here
|