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
|
" vim:tabstop=2:shiftwidth=2:expandtab:textwidth=99
" File: Emoji List
" Home: https://github.com/vimwiki/vimwiki/
" Desc: For emoji concealing and completion
" Called: syntax/vimwiki.vim
" List Copied From: https://github.com/onmyway133/emoji/blob/master/README.md
" Code Copied From: https://github.com/junegunn/vim-emoji
scriptencoding utf-8
let s:emoji_single = {
\ '+1': '๐',
\ '-1': '๐',
\ '100': '๐ฏ',
\ '1234': '๐ข',
\ '1st_place_medal': '๐ฅ',
\ '2nd_place_medal': '๐ฅ',
\ '3rd_place_medal': '๐ฅ',
\ '8ball': '๐ฑ',
\ 'a': '๐
ฐ๏ธ',
\ 'ab': '๐',
\ 'abacus': '๐งฎ',
\ 'abc': '๐ค',
\ 'abcd': '๐ก',
\ 'accept': '๐',
\ 'accordion': '๐ช',
\ 'adhesive_bandage': '๐ฉน',
\ 'adult': '๐ง',
\ 'aerial_tramway': '๐ก',
\ 'airplane': 'โ๏ธ',
\ 'alarm_clock': 'โฐ',
\ 'alembic': 'โ๏ธ',
\ 'alien': '๐ฝ',
\ 'ambulance': '๐',
\ 'amphora': '๐บ',
\ 'anatomical_heart': '๐ซ',
\ 'anchor': 'โ๏ธ',
\ 'angel': '๐ผ',
\ 'anger': '๐ข',
\ 'angry': '๐ ',
\ 'anguished': '๐ง',
\ 'ant': '๐',
\ 'apple': '๐',
\ 'aquarius': 'โ๏ธ',
\ 'aries': 'โ๏ธ',
\ 'arrow_backward': 'โ๏ธ',
\ 'arrow_double_down': 'โฌ',
\ 'arrow_double_up': 'โซ',
\ 'arrow_down': 'โฌ๏ธ',
\ 'arrow_down_small': '๐ฝ',
\ 'arrow_forward': 'โถ๏ธ',
\ 'arrow_heading_down': 'โคต๏ธ',
\ 'arrow_heading_up': 'โคด๏ธ',
\ 'arrow_left': 'โฌ
๏ธ',
\ 'arrow_lower_left': 'โ๏ธ',
\ 'arrow_lower_right': 'โ๏ธ',
\ 'arrow_right': 'โก๏ธ',
\ 'arrow_right_hook': 'โช๏ธ',
\ 'arrow_up': 'โฌ๏ธ',
\ 'arrow_up_down': 'โ๏ธ',
\ 'arrow_up_small': '๐ผ',
\ 'arrow_upper_left': 'โ๏ธ',
\ 'arrow_upper_right': 'โ๏ธ',
\ 'arrows_clockwise': '๐',
\ 'arrows_counterclockwise': '๐',
\ 'art': '๐จ',
\ 'articulated_lorry': '๐',
\ 'artificial_satellite': '๐ฐ๏ธ',
\ 'asterisk': '*๏ธโฃ',
\ 'astonished': '๐ฒ',
\ 'athletic_shoe': '๐',
\ 'atm': '๐ง',
\ 'atom_symbol': 'โ๏ธ',
\ 'auto_rickshaw': '๐บ',
\ 'avocado': '๐ฅ',
\ 'axe': '๐ช',
\ 'b': '๐
ฑ๏ธ',
\ 'baby': '๐ถ',
\ 'baby_bottle': '๐ผ',
\ 'baby_chick': '๐ค',
\ 'baby_symbol': '๐ผ',
\ 'back': '๐',
\ 'bacon': '๐ฅ',
\ 'badger': '๐ฆก',
\ 'badminton': '๐ธ',
\ 'bagel': '๐ฅฏ',
\ 'baggage_claim': '๐',
\ 'baguette_bread': '๐ฅ',
\ 'balance_scale': 'โ๏ธ',
\ 'ballet_shoes': '๐ฉฐ',
\ 'balloon': '๐',
\ 'ballot_box': '๐ณ๏ธ',
\ 'ballot_box_with_check': 'โ๏ธ',
\ 'bamboo': '๐',
\ 'banana': '๐',
\ 'bangbang': 'โผ๏ธ',
\ 'banjo': '๐ช',
\ 'bank': '๐ฆ',
\ 'bar_chart': '๐',
\ 'barber': '๐',
\ 'baseball': 'โพ',
\ 'basket': '๐งบ',
\ 'basketball': '๐',
\ 'basketball_man': 'โน๏ธ',
\ 'bat': '๐ฆ',
\ 'bath': '๐',
\ 'bathtub': '๐',
\ 'battery': '๐',
\ 'beach_umbrella': '๐๏ธ',
\ 'bear': '๐ป',
\ 'bearded_person': '๐ง',
\ 'beaver': '๐ฆซ',
\ 'bed': '๐๏ธ',
\ 'bee': '๐',
\ 'beer': '๐บ',
\ 'beers': '๐ป',
\ 'beetle': '๐',
\ 'beginner': '๐ฐ',
\ 'bell': '๐',
\ 'bell_pepper': '๐ซ',
\ 'bellhop_bell': '๐๏ธ',
\ 'bento': '๐ฑ',
\ 'beverage_box': '๐ง',
\ 'bicyclist': '๐ด',
\ 'bike': '๐ฒ',
\ 'biking_man': '๐ด',
\ 'bikini': '๐',
\ 'billed_cap': '๐งข',
\ 'biohazard': 'โฃ๏ธ',
\ 'bird': '๐ฆ',
\ 'birthday': '๐',
\ 'bison': '๐ฆฌ',
\ 'black_circle': 'โซ๏ธ',
\ 'black_flag': '๐ด',
\ 'black_heart': '๐ค',
\ 'black_joker': '๐',
\ 'black_large_square': 'โฌ๏ธ',
\ 'black_medium_small_square': 'โพ๏ธ',
\ 'black_medium_square': 'โผ๏ธ',
\ 'black_nib': 'โ๏ธ',
\ 'black_small_square': 'โช๏ธ',
\ 'black_square_button': '๐ฒ',
\ 'blond_haired_person': '๐ฑ',
\ 'blonde_man': '๐ฑ',
\ 'blossom': '๐ผ',
\ 'blowfish': '๐ก',
\ 'blue_book': '๐',
\ 'blue_car': '๐',
\ 'blue_heart': '๐',
\ 'blue_square': '๐ฆ',
\ 'blueberries': '๐ซ',
\ 'blush': '๐',
\ 'boar': '๐',
\ 'boat': 'โต๏ธ',
\ 'bomb': '๐ฃ',
\ 'bone': '๐ฆด',
\ 'book': '๐',
\ 'bookmark': '๐',
\ 'bookmark_tabs': '๐',
\ 'books': '๐',
\ 'boom': '๐ฅ',
\ 'boomerang': '๐ช',
\ 'boot': '๐ข',
\ 'bouncing_ball_person': 'โน๏ธ',
\ 'bouquet': '๐',
\ 'bow': '๐',
\ 'bow_and_arrow': '๐น',
\ 'bowing_man': '๐',
\ 'bowl_with_spoon': '๐ฅฃ',
\ 'bowling': '๐ณ',
\ 'boxing_glove': '๐ฅ',
\ 'boy': '๐ฆ',
\ 'brain': '๐ง ',
\ 'bread': '๐',
\ 'breast_feeding': '๐คฑ',
\ 'bricks': '๐งฑ',
\ 'bride_with_veil': '๐ฐ',
\ 'bridge_at_night': '๐',
\ 'briefcase': '๐ผ',
\ 'broccoli': '๐ฅฆ',
\ 'broken_heart': '๐',
\ 'broom': '๐งน',
\ 'brown_circle': '๐ค',
\ 'brown_heart': '๐ค',
\ 'brown_square': '๐ซ',
\ 'bubble_tea': '๐ง',
\ 'bucket': '๐ชฃ',
\ 'bug': '๐',
\ 'building_construction': '๐๏ธ',
\ 'bulb': '๐ก',
\ 'bullettrain_front': '๐
',
\ 'bullettrain_side': '๐',
\ 'burrito': '๐ฏ',
\ 'bus': '๐',
\ 'business_suit_levitating': '๐ด๏ธ',
\ 'busstop': '๐',
\ 'bust_in_silhouette': '๐ค',
\ 'busts_in_silhouette': '๐ฅ',
\ 'butter': '๐ง',
\ 'butterfly': '๐ฆ',
\ 'cactus': '๐ต',
\ 'cake': '๐ฐ',
\ 'calendar': '๐',
\ 'call_me_hand': '๐ค',
\ 'calling': '๐ฒ',
\ 'camel': '๐ซ',
\ 'camera': '๐ท',
\ 'camera_flash': '๐ธ',
\ 'camping': '๐๏ธ',
\ 'cancer': 'โ๏ธ',
\ 'candle': '๐ฏ๏ธ',
\ 'candy': '๐ฌ',
\ 'canned_food': '๐ฅซ',
\ 'canoe': '๐ถ',
\ 'capital_abcd': '๐ ',
\ 'capricorn': 'โ๏ธ',
\ 'car': '๐',
\ 'card_file_box': '๐๏ธ',
\ 'card_index': '๐',
\ 'card_index_dividers': '๐๏ธ',
\ 'carousel_horse': '๐ ',
\ 'carpentry_saw': '๐ช',
\ 'carrot': '๐ฅ',
\ 'cartwheeling': '๐คธ',
\ 'cat': '๐ฑ',
\ 'cat2': '๐',
\ 'cd': '๐ฟ',
\ 'chains': 'โ๏ธ',
\ 'chair': '๐ช',
\ 'champagne': '๐พ',
\ 'chart': '๐น',
\ 'chart_with_downwards_trend': '๐',
\ 'chart_with_upwards_trend': '๐',
\ 'checkered_flag': '๐',
\ 'cheese': '๐ง',
\ 'cherries': '๐',
\ 'cherry_blossom': '๐ธ',
\ 'chess_pawn': 'โ๏ธ',
\ 'chestnut': '๐ฐ',
\ 'chicken': '๐',
\ 'child': '๐ง',
\ 'children_crossing': '๐ธ',
\ 'chipmunk': '๐ฟ๏ธ',
\ 'chocolate_bar': '๐ซ',
\ 'chopsticks': '๐ฅข',
\ 'christmas_tree': '๐',
\ 'church': 'โช๏ธ',
\ 'cinema': '๐ฆ',
\ 'circus_tent': '๐ช',
\ 'city_sunrise': '๐',
\ 'city_sunset': '๐',
\ 'cityscape': '๐๏ธ',
\ 'cl': '๐',
\ 'clamp': '๐๏ธ',
\ 'clap': '๐',
\ 'clapper': '๐ฌ',
\ 'classical_building': '๐๏ธ',
\ 'climbing': '๐ง',
\ 'clinking_glasses': '๐ฅ',
\ 'clipboard': '๐',
\ 'clock1': '๐',
\ 'clock10': '๐',
\ 'clock1030': '๐ฅ',
\ 'clock11': '๐',
\ 'clock1130': '๐ฆ',
\ 'clock12': '๐',
\ 'clock1230': '๐ง',
\ 'clock130': '๐',
\ 'clock2': '๐',
\ 'clock230': '๐',
\ 'clock3': '๐',
\ 'clock330': '๐',
\ 'clock4': '๐',
\ 'clock430': '๐',
\ 'clock5': '๐',
\ 'clock530': '๐ ',
\ 'clock6': '๐',
\ 'clock630': '๐ก',
\ 'clock7': '๐',
\ 'clock730': '๐ข',
\ 'clock8': '๐',
\ 'clock830': '๐ฃ',
\ 'clock9': '๐',
\ 'clock930': '๐ค',
\ 'closed_book': '๐',
\ 'closed_lock_with_key': '๐',
\ 'closed_umbrella': '๐',
\ 'cloud': 'โ๏ธ',
\ 'cloud_with_lightning': '๐ฉ๏ธ',
\ 'cloud_with_lightning_and_rain': 'โ๏ธ',
\ 'cloud_with_rain': '๐ง๏ธ',
\ 'cloud_with_snow': '๐จ๏ธ',
\ 'clown_face': '๐คก',
\ 'clubs': 'โฃ๏ธ',
\ 'coat': '๐งฅ',
\ 'cockroach': '๐ชณ',
\ 'cocktail': '๐ธ',
\ 'coconut': '๐ฅฅ',
\ 'coffee': 'โ๏ธ',
\ 'coffin': 'โฐ๏ธ',
\ 'coin': '๐ช',
\ 'cold_face': '๐ฅถ',
\ 'cold_sweat': '๐ฐ',
\ 'collision': '๐ฅ',
\ 'comet': 'โ๏ธ',
\ 'compass': '๐งญ',
\ 'computer': '๐ป',
\ 'computer_mouse': '๐ฑ๏ธ',
\ 'confetti_ball': '๐',
\ 'confounded': '๐',
\ 'confused': '๐',
\ 'congratulations': 'ใ๏ธ',
\ 'construction': '๐ง',
\ 'construction_worker': '๐ท',
\ 'construction_worker_man': '๐ท',
\ 'control_knobs': '๐',
\ 'convenience_store': '๐ช',
\ 'cookie': '๐ช',
\ 'cool': '๐',
\ 'cop': '๐ฎ',
\ 'copyright': 'ยฉ๏ธ',
\ 'corn': '๐ฝ',
\ 'couch_and_lamp': '๐๏ธ',
\ 'couple': '๐ซ',
\ 'couple_with_heart': '๐',
\ 'couple_with_heart_woman_man': '๐',
\ 'couplekiss': '๐',
\ 'couplekiss_man_woman': '๐',
\ 'cow': '๐ฎ',
\ 'cow2': '๐',
\ 'cowboy_hat_face': '๐ค ',
\ 'crab': '๐ฆ',
\ 'crayon': '๐๏ธ',
\ 'credit_card': '๐ณ',
\ 'crescent_moon': '๐',
\ 'cricket': '๐',
\ 'cricket_game': '๐',
\ 'crocodile': '๐',
\ 'croissant': '๐ฅ',
\ 'crossed_fingers': '๐ค',
\ 'crossed_flags': '๐',
\ 'crossed_swords': 'โ๏ธ',
\ 'crown': '๐',
\ 'cry': '๐ข',
\ 'crying_cat_face': '๐ฟ',
\ 'crystal_ball': '๐ฎ',
\ 'cucumber': '๐ฅ',
\ 'cup_with_straw': '๐ฅค',
\ 'cupcake': '๐ง',
\ 'cupid': '๐',
\ 'curling_stone': '๐ฅ',
\ 'curly_loop': 'โฐ',
\ 'currency_exchange': '๐ฑ',
\ 'curry': '๐',
\ 'cursing_face': '๐คฌ',
\ 'custard': '๐ฎ',
\ 'customs': '๐',
\ 'cut_of_meat': '๐ฅฉ',
\ 'cyclone': '๐',
\ 'dagger': '๐ก๏ธ',
\ 'dancer': '๐',
\ 'dancers': '๐ฏ',
\ 'dancing_women': '๐ฏ',
\ 'dango': '๐ก',
\ 'dark_sunglasses': '๐ถ๏ธ',
\ 'dart': '๐ฏ',
\ 'dash': '๐จ',
\ 'date': '๐
',
\ 'deaf_person': '๐ง',
\ 'deciduous_tree': '๐ณ',
\ 'deer': '๐ฆ',
\ 'department_store': '๐ฌ',
\ 'derelict_house': '๐',
\ 'desert': '๐๏ธ',
\ 'desert_island': '๐๏ธ',
\ 'desktop_computer': '๐ฅ๏ธ',
\ 'detective': '๐ต๏ธ',
\ 'diamond_shape_with_a_dot_inside': '๐ ',
\ 'diamonds': 'โฆ๏ธ',
\ 'disappointed': '๐',
\ 'disappointed_relieved': '๐ฅ',
\ 'disguised_face': '๐ฅธ',
\ 'diving_mask': '๐คฟ',
\ 'diya_lamp': '๐ช',
\ 'dizzy': '๐ซ',
\ 'dizzy_face': '๐ต',
\ 'dna': '๐งฌ',
\ 'do_not_litter': '๐ฏ',
\ 'dodo': '๐ฆค',
\ 'dog': '๐ถ',
\ 'dog2': '๐',
\ 'dollar': '๐ต',
\ 'dolls': '๐',
\ 'dolphin': '๐ฌ',
\ 'door': '๐ช',
\ 'doughnut': '๐ฉ',
\ 'dove': '๐๏ธ',
\ 'dragon': '๐',
\ 'dragon_face': '๐ฒ',
\ 'dress': '๐',
\ 'dromedary_camel': '๐ช',
\ 'drooling_face': '๐คค',
\ 'drop_of_blood': '๐ฉธ',
\ 'droplet': '๐ง',
\ 'drum': '๐ฅ',
\ 'duck': '๐ฆ',
\ 'dumpling': '๐ฅ',
\ 'dvd': '๐',
\ 'e-mail': '๐ง',
\ 'eagle': '๐ฆ
',
\ 'ear': '๐',
\ 'ear_of_rice': '๐พ',
\ 'ear_with_hearing_aid': '๐ฆป',
\ 'earth_africa': '๐',
\ 'earth_americas': '๐',
\ 'earth_asia': '๐',
\ 'egg': '๐ฅ',
\ 'eggplant': '๐',
\ 'eight': '8๏ธโฃ',
\ 'eight_pointed_black_star': 'โด๏ธ',
\ 'eight_spoked_asterisk': 'โณ๏ธ',
\ 'eject_button': 'โ๏ธ',
\ 'electric_plug': '๐',
\ 'elephant': '๐',
\ 'elevator': '๐',
\ 'elf': '๐ง',
\ 'email': 'โ๏ธ',
\ 'end': '๐',
\ 'envelope': 'โ๏ธ',
\ 'envelope_with_arrow': '๐ฉ',
\ 'euro': '๐ถ',
\ 'european_castle': '๐ฐ',
\ 'european_post_office': '๐ค',
\ 'evergreen_tree': '๐ฒ',
\ 'exclamation': 'โ๏ธ',
\ 'exploding_head': '๐คฏ',
\ 'expressionless': '๐',
\ 'eye': '๐',
\ 'eyeglasses': '๐',
\ 'eyes': '๐',
\ 'face_with_head_bandage': '๐ค',
\ 'face_with_thermometer': '๐ค',
\ 'facepalm': '๐คฆ',
\ 'facepunch': '๐',
\ 'factory': '๐ญ',
\ 'fairy': '๐ง',
\ 'falafel': '๐ง',
\ 'fallen_leaf': '๐',
\ 'family': '๐ช',
\ 'family_man_woman_boy': '๐ช',
\ 'fast_forward': 'โฉ',
\ 'fax': '๐ ',
\ 'fearful': '๐จ',
\ 'feather': '๐ชถ',
\ 'feet': '๐พ',
\ 'female_sign': 'โ๏ธ',
\ 'ferris_wheel': '๐ก',
\ 'ferry': 'โด๏ธ',
\ 'field_hockey': '๐',
\ 'file_cabinet': '๐๏ธ',
\ 'file_folder': '๐',
\ 'film_projector': '๐ฝ๏ธ',
\ 'film_strip': '๐๏ธ',
\ 'fire': '๐ฅ',
\ 'fire_engine': '๐',
\ 'fire_extinguisher': '๐งฏ',
\ 'firecracker': '๐งจ',
\ 'fireworks': '๐',
\ 'first_quarter_moon': '๐',
\ 'first_quarter_moon_with_face': '๐',
\ 'fish': '๐',
\ 'fish_cake': '๐ฅ',
\ 'fishing_pole_and_fish': '๐ฃ',
\ 'fist': 'โ',
\ 'fist_left': '๐ค',
\ 'fist_oncoming': '๐',
\ 'fist_raised': 'โ',
\ 'fist_right': '๐ค',
\ 'five': '5๏ธโฃ',
\ 'flags': '๐',
\ 'flamingo': '๐ฆฉ',
\ 'flashlight': '๐ฆ',
\ 'flat_shoe': '๐ฅฟ',
\ 'flatbread': '๐ซ',
\ 'fleur_de_lis': 'โ๏ธ',
\ 'flight_arrival': '๐ฌ',
\ 'flight_departure': '๐ซ',
\ 'floppy_disk': '๐พ',
\ 'flower_playing_cards': '๐ด',
\ 'flushed': '๐ณ',
\ 'fly': '๐ชฐ',
\ 'flying_disc': '๐ฅ',
\ 'flying_saucer': '๐ธ',
\ 'fog': '๐ซ๏ธ',
\ 'foggy': '๐',
\ 'fondue': '๐ซ',
\ 'foot': '๐ฆถ',
\ 'football': '๐',
\ 'footprints': '๐ฃ',
\ 'fork_and_knife': '๐ด',
\ 'fortune_cookie': '๐ฅ ',
\ 'fountain': 'โฒ๏ธ',
\ 'fountain_pen': '๐๏ธ',
\ 'four': '4๏ธโฃ',
\ 'four_leaf_clover': '๐',
\ 'fox_face': '๐ฆ',
\ 'framed_picture': '๐ผ๏ธ',
\ 'free': '๐',
\ 'fried_egg': '๐ณ',
\ 'fried_shrimp': '๐ค',
\ 'fries': '๐',
\ 'frog': '๐ธ',
\ 'frowning': '๐ฆ',
\ 'frowning_face': 'โน๏ธ',
\ 'frowning_person': '๐',
\ 'frowning_woman': '๐',
\ 'fu': '๐',
\ 'fuelpump': 'โฝ๏ธ',
\ 'full_moon': '๐',
\ 'full_moon_with_face': '๐',
\ 'funeral_urn': 'โฑ๏ธ',
\ 'game_die': '๐ฒ',
\ 'garlic': '๐ง',
\ 'gear': 'โ๏ธ',
\ 'gem': '๐',
\ 'gemini': 'โ๏ธ',
\ 'genie': '๐ง',
\ 'ghost': '๐ป',
\ 'gift': '๐',
\ 'gift_heart': '๐',
\ 'giraffe': '๐ฆ',
\ 'girl': '๐ง',
\ 'globe_with_meridians': '๐',
\ 'gloves': '๐งค',
\ 'goal_net': '๐ฅ
',
\ 'goat': '๐',
\ 'goggles': '๐ฅฝ',
\ 'golf': 'โณ๏ธ',
\ 'golfing': '๐๏ธ',
\ 'golfing_man': '๐๏ธ',
\ 'gorilla': '๐ฆ',
\ 'grapes': '๐',
\ 'green_apple': '๐',
\ 'green_book': '๐',
\ 'green_circle': '๐ข',
\ 'green_heart': '๐',
\ 'green_salad': '๐ฅ',
\ 'green_square': '๐ฉ',
\ 'grey_exclamation': 'โ',
\ 'grey_question': 'โ',
\ 'grimacing': '๐ฌ',
\ 'grin': '๐',
\ 'grinning': '๐',
\ 'guard': '๐',
\ 'guardsman': '๐',
\ 'guide_dog': '๐ฆฎ',
\ 'guitar': '๐ธ',
\ 'gun': '๐ซ',
\ 'haircut': '๐',
\ 'haircut_woman': '๐',
\ 'hamburger': '๐',
\ 'hammer': '๐จ',
\ 'hammer_and_pick': 'โ๏ธ',
\ 'hammer_and_wrench': '๐ ๏ธ',
\ 'hamster': '๐น',
\ 'hand': 'โ',
\ 'hand_over_mouth': '๐คญ',
\ 'handbag': '๐',
\ 'handball_person': '๐คพ',
\ 'handshake': '๐ค',
\ 'hankey': '๐ฉ',
\ 'hash': '#๏ธโฃ',
\ 'hatched_chick': '๐ฅ',
\ 'hatching_chick': '๐ฃ',
\ 'headphones': '๐ง',
\ 'headstone': '๐ชฆ',
\ 'hear_no_evil': '๐',
\ 'heart': 'โค๏ธ',
\ 'heart_decoration': '๐',
\ 'heart_eyes': '๐',
\ 'heart_eyes_cat': '๐ป',
\ 'heartbeat': '๐',
\ 'heartpulse': '๐',
\ 'hearts': 'โฅ๏ธ',
\ 'heavy_check_mark': 'โ๏ธ',
\ 'heavy_division_sign': 'โ',
\ 'heavy_dollar_sign': '๐ฒ',
\ 'heavy_exclamation_mark': 'โ๏ธ',
\ 'heavy_heart_exclamation': 'โฃ๏ธ',
\ 'heavy_minus_sign': 'โ',
\ 'heavy_multiplication_x': 'โ๏ธ',
\ 'heavy_plus_sign': 'โ',
\ 'hedgehog': '๐ฆ',
\ 'helicopter': '๐',
\ 'herb': '๐ฟ',
\ 'hibiscus': '๐บ',
\ 'high_brightness': '๐',
\ 'high_heel': '๐ ',
\ 'hiking_boot': '๐ฅพ',
\ 'hindu_temple': '๐',
\ 'hippopotamus': '๐ฆ',
\ 'hocho': '๐ช',
\ 'hole': '๐ณ๏ธ',
\ 'honey_pot': '๐ฏ',
\ 'honeybee': '๐',
\ 'hook': '๐ช',
\ 'horse': '๐ด',
\ 'horse_racing': '๐',
\ 'hospital': '๐ฅ',
\ 'hot_face': '๐ฅต',
\ 'hot_pepper': '๐ถ๏ธ',
\ 'hotdog': '๐ญ',
\ 'hotel': '๐จ',
\ 'hotsprings': 'โจ๏ธ',
\ 'hourglass': 'โ๏ธ',
\ 'hourglass_flowing_sand': 'โณ',
\ 'house': '๐ ',
\ 'house_with_garden': '๐ก',
\ 'houses': '๐๏ธ',
\ 'hugs': '๐ค',
\ 'hushed': '๐ฏ',
\ 'hut': '๐',
\ 'ice_cream': '๐จ',
\ 'ice_cube': '๐ง',
\ 'ice_hockey': '๐',
\ 'ice_skate': 'โธ๏ธ',
\ 'icecream': '๐ฆ',
\ 'id': '๐',
\ 'ideograph_advantage': '๐',
\ 'imp': '๐ฟ',
\ 'inbox_tray': '๐ฅ',
\ 'incoming_envelope': '๐จ',
\ 'infinity': 'โพ๏ธ',
\ 'information_desk_person': '๐',
\ 'information_source': 'โน๏ธ',
\ 'innocent': '๐',
\ 'interrobang': 'โ๏ธ',
\ 'iphone': '๐ฑ',
\ 'izakaya_lantern': '๐ฎ',
\ 'jack_o_lantern': '๐',
\ 'japan': '๐พ',
\ 'japanese_castle': '๐ฏ',
\ 'japanese_goblin': '๐บ',
\ 'japanese_ogre': '๐น',
\ 'jeans': '๐',
\ 'jigsaw': '๐งฉ',
\ 'joy': '๐',
\ 'joy_cat': '๐น',
\ 'joystick': '๐น๏ธ',
\ 'juggling_person': '๐คน',
\ 'kaaba': '๐',
\ 'kangaroo': '๐ฆ',
\ 'key': '๐',
\ 'keyboard': 'โจ๏ธ',
\ 'keycap_ten': '๐',
\ 'kick_scooter': '๐ด',
\ 'kimono': '๐',
\ 'kiss': '๐',
\ 'kissing': '๐',
\ 'kissing_cat': '๐ฝ',
\ 'kissing_closed_eyes': '๐',
\ 'kissing_heart': '๐',
\ 'kissing_smiling_eyes': '๐',
\ 'kite': '๐ช',
\ 'kiwi_fruit': '๐ฅ',
\ 'kneeling_person': '๐ง',
\ 'knot': '๐ชข',
\ 'koala': '๐จ',
\ 'koko': '๐',
\ 'lab_coat': '๐ฅผ',
\ 'label': '๐ท๏ธ',
\ 'lacrosse': '๐ฅ',
\ 'ladder': '๐ช',
\ 'lady_beetle': '๐',
\ 'large_blue_circle': '๐ต',
\ 'large_blue_diamond': '๐ท',
\ 'large_orange_diamond': '๐ถ',
\ 'last_quarter_moon': '๐',
\ 'last_quarter_moon_with_face': '๐',
\ 'latin_cross': 'โ๏ธ',
\ 'laughing': '๐',
\ 'leafy_green': '๐ฅฌ',
\ 'leaves': '๐',
\ 'ledger': '๐',
\ 'left_luggage': '๐
',
\ 'left_right_arrow': 'โ๏ธ',
\ 'left_speech_bubble': '๐จ๏ธ',
\ 'leftwards_arrow_with_hook': 'โฉ๏ธ',
\ 'leg': '๐ฆต',
\ 'lemon': '๐',
\ 'leo': 'โ๏ธ',
\ 'leopard': '๐',
\ 'level_slider': '๐๏ธ',
\ 'libra': 'โ๏ธ',
\ 'light_rail': '๐',
\ 'link': '๐',
\ 'lion': '๐ฆ',
\ 'lips': '๐',
\ 'lipstick': '๐',
\ 'lizard': '๐ฆ',
\ 'llama': '๐ฆ',
\ 'lobster': '๐ฆ',
\ 'lock': '๐',
\ 'lock_with_ink_pen': '๐',
\ 'lollipop': '๐ญ',
\ 'long_drum': '๐ช',
\ 'loop': 'โฟ',
\ 'lotion_bottle': '๐งด',
\ 'lotus_position': '๐ง',
\ 'loud_sound': '๐',
\ 'loudspeaker': '๐ข',
\ 'love_hotel': '๐ฉ',
\ 'love_letter': '๐',
\ 'love_you_gesture': '๐ค',
\ 'low_brightness': '๐
',
\ 'luggage': '๐งณ',
\ 'lungs': '๐ซ',
\ 'lying_face': '๐คฅ',
\ 'm': 'โ๏ธ',
\ 'mag': '๐',
\ 'mag_right': '๐',
\ 'mage': '๐ง',
\ 'magic_wand': '๐ช',
\ 'magnet': '๐งฒ',
\ 'mahjong': '๐๏ธ',
\ 'mailbox': '๐ซ',
\ 'mailbox_closed': '๐ช',
\ 'mailbox_with_mail': '๐ฌ',
\ 'mailbox_with_no_mail': '๐ญ',
\ 'male_detective': '๐ต๏ธ',
\ 'male_sign': 'โ๏ธ',
\ 'mammoth': '๐ฆฃ',
\ 'man': '๐จ',
\ 'man_dancing': '๐บ',
\ 'man_in_tuxedo': '๐คต',
\ 'man_with_gua_pi_mao': '๐ฒ',
\ 'man_with_turban': '๐ณ',
\ 'mango': '๐ฅญ',
\ 'mans_shoe': '๐',
\ 'mantelpiece_clock': '๐ฐ๏ธ',
\ 'manual_wheelchair': '๐ฆฝ',
\ 'maple_leaf': '๐',
\ 'martial_arts_uniform': '๐ฅ',
\ 'mask': '๐ท',
\ 'massage': '๐',
\ 'massage_woman': '๐',
\ 'mate': '๐ง',
\ 'meat_on_bone': '๐',
\ 'mechanical_arm': '๐ฆพ',
\ 'mechanical_leg': '๐ฆฟ',
\ 'medal_military': '๐๏ธ',
\ 'medal_sports': '๐
',
\ 'medical_symbol': 'โ๏ธ',
\ 'mega': '๐ฃ',
\ 'melon': '๐',
\ 'memo': '๐',
\ 'menorah': '๐',
\ 'mens': '๐น',
\ 'merperson': '๐ง',
\ 'metal': '๐ค',
\ 'metro': '๐',
\ 'microbe': '๐ฆ ',
\ 'microphone': '๐ค',
\ 'microscope': '๐ฌ',
\ 'middle_finger': '๐',
\ 'military_helmet': '๐ช',
\ 'milk_glass': '๐ฅ',
\ 'milky_way': '๐',
\ 'minibus': '๐',
\ 'minidisc': '๐ฝ',
\ 'mirror': '๐ช',
\ 'mobile_phone_off': '๐ด',
\ 'money_mouth_face': '๐ค',
\ 'money_with_wings': '๐ธ',
\ 'moneybag': '๐ฐ',
\ 'monkey': '๐',
\ 'monkey_face': '๐ต',
\ 'monocle_face': '๐ง',
\ 'monorail': '๐',
\ 'moon': '๐',
\ 'moon_cake': '๐ฅฎ',
\ 'mortar_board': '๐',
\ 'mosque': '๐',
\ 'mosquito': '๐ฆ',
\ 'motor_boat': '๐ฅ๏ธ',
\ 'motor_scooter': '๐ต',
\ 'motorcycle': '๐๏ธ',
\ 'motorized_wheelchair': '๐ฆผ',
\ 'motorway': '๐ฃ๏ธ',
\ 'mount_fuji': '๐ป',
\ 'mountain': 'โฐ๏ธ',
\ 'mountain_bicyclist': '๐ต',
\ 'mountain_biking_man': '๐ต',
\ 'mountain_cableway': '๐ ',
\ 'mountain_railway': '๐',
\ 'mountain_snow': '๐๏ธ',
\ 'mouse': '๐ญ',
\ 'mouse2': '๐',
\ 'mouse_trap': '๐ชค',
\ 'movie_camera': '๐ฅ',
\ 'moyai': '๐ฟ',
\ 'mrs_claus': '๐คถ',
\ 'muscle': '๐ช',
\ 'mushroom': '๐',
\ 'musical_keyboard': '๐น',
\ 'musical_note': '๐ต',
\ 'musical_score': '๐ผ',
\ 'mute': '๐',
\ 'nail_care': '๐
',
\ 'name_badge': '๐',
\ 'national_park': '๐๏ธ',
\ 'nauseated_face': '๐คข',
\ 'nazar_amulet': '๐งฟ',
\ 'necktie': '๐',
\ 'negative_squared_cross_mark': 'โ',
\ 'nerd_face': '๐ค',
\ 'nesting_dolls': '๐ช',
\ 'neutral_face': '๐',
\ 'new': '๐',
\ 'new_moon': '๐',
\ 'new_moon_with_face': '๐',
\ 'newspaper': '๐ฐ',
\ 'newspaper_roll': '๐๏ธ',
\ 'next_track_button': 'โญ๏ธ',
\ 'ng': '๐',
\ 'night_with_stars': '๐',
\ 'nine': '9๏ธโฃ',
\ 'ninja': '๐ฅท',
\ 'no_bell': '๐',
\ 'no_bicycles': '๐ณ',
\ 'no_entry': 'โ๏ธ',
\ 'no_entry_sign': '๐ซ',
\ 'no_good': '๐
',
\ 'no_good_woman': '๐
',
\ 'no_mobile_phones': '๐ต',
\ 'no_mouth': '๐ถ',
\ 'no_pedestrians': '๐ท',
\ 'no_smoking': '๐ญ',
\ 'non-potable_water': '๐ฑ',
\ 'nose': '๐',
\ 'notebook': '๐',
\ 'notebook_with_decorative_cover': '๐',
\ 'notes': '๐ถ',
\ 'nut_and_bolt': '๐ฉ',
\ 'o': 'โญ๏ธ',
\ 'o2': '๐
พ๏ธ',
\ 'ocean': '๐',
\ 'octopus': '๐',
\ 'oden': '๐ข',
\ 'office': '๐ข',
\ 'oil_drum': '๐ข๏ธ',
\ 'ok': '๐',
\ 'ok_hand': '๐',
\ 'ok_person': '๐',
\ 'ok_woman': '๐',
\ 'old_key': '๐๏ธ',
\ 'older_adult': '๐ง',
\ 'older_man': '๐ด',
\ 'older_woman': '๐ต',
\ 'olive': '๐ซ',
\ 'om': '๐๏ธ',
\ 'on': '๐',
\ 'oncoming_automobile': '๐',
\ 'oncoming_bus': '๐',
\ 'oncoming_police_car': '๐',
\ 'oncoming_taxi': '๐',
\ 'one': '1๏ธโฃ',
\ 'one_piece_swimsuit': '๐ฉฑ',
\ 'onion': '๐ง
',
\ 'open_file_folder': '๐',
\ 'open_hands': '๐',
\ 'open_mouth': '๐ฎ',
\ 'open_umbrella': 'โ๏ธ',
\ 'ophiuchus': 'โ',
\ 'orange_book': '๐',
\ 'orange_circle': '๐ ',
\ 'orange_heart': '๐งก',
\ 'orange_square': '๐ง',
\ 'orangutan': '๐ฆง',
\ 'orthodox_cross': 'โฆ๏ธ',
\ 'otter': '๐ฆฆ',
\ 'outbox_tray': '๐ค',
\ 'owl': '๐ฆ',
\ 'ox': '๐',
\ 'oyster': '๐ฆช',
\ 'package': '๐ฆ',
\ 'page_facing_up': '๐',
\ 'page_with_curl': '๐',
\ 'pager': '๐',
\ 'paintbrush': '๐๏ธ',
\ 'palm_tree': '๐ด',
\ 'palms_up_together': '๐คฒ',
\ 'pancakes': '๐ฅ',
\ 'panda_face': '๐ผ',
\ 'paperclip': '๐',
\ 'paperclips': '๐๏ธ',
\ 'parachute': '๐ช',
\ 'parasol_on_ground': 'โฑ๏ธ',
\ 'parking': '๐
ฟ๏ธ',
\ 'parrot': '๐ฆ',
\ 'part_alternation_mark': 'ใฝ๏ธ',
\ 'partly_sunny': 'โ
๏ธ',
\ 'partying_face': '๐ฅณ',
\ 'passenger_ship': '๐ณ๏ธ',
\ 'passport_control': '๐',
\ 'pause_button': 'โธ๏ธ',
\ 'paw_prints': '๐พ',
\ 'peace_symbol': 'โฎ๏ธ',
\ 'peach': '๐',
\ 'peacock': '๐ฆ',
\ 'peanuts': '๐ฅ',
\ 'pear': '๐',
\ 'pen': '๐๏ธ',
\ 'pencil': '๐',
\ 'pencil2': 'โ๏ธ',
\ 'penguin': '๐ง',
\ 'pensive': '๐',
\ 'people_hugging': '๐ซ',
\ 'performing_arts': '๐ญ',
\ 'persevere': '๐ฃ',
\ 'person_fencing': '๐คบ',
\ 'person_frowning': '๐',
\ 'person_in_tuxedo': '๐คต',
\ 'person_with_blond_hair': '๐ฑ',
\ 'person_with_pouting_face': '๐',
\ 'person_with_turban': '๐ณ',
\ 'person_with_veil': '๐ฐ',
\ 'petri_dish': '๐งซ',
\ 'phone': 'โ๏ธ',
\ 'pick': 'โ๏ธ',
\ 'pickup_truck': '๐ป',
\ 'pie': '๐ฅง',
\ 'pig': '๐ท',
\ 'pig2': '๐',
\ 'pig_nose': '๐ฝ',
\ 'pill': '๐',
\ 'pinata': '๐ช
',
\ 'pinched_fingers': '๐ค',
\ 'pinching_hand': '๐ค',
\ 'pineapple': '๐',
\ 'ping_pong': '๐',
\ 'pisces': 'โ๏ธ',
\ 'pizza': '๐',
\ 'placard': '๐ชง',
\ 'place_of_worship': '๐',
\ 'plate_with_cutlery': '๐ฝ๏ธ',
\ 'play_or_pause_button': 'โฏ๏ธ',
\ 'pleading_face': '๐ฅบ',
\ 'plunger': '๐ช ',
\ 'point_down': '๐',
\ 'point_left': '๐',
\ 'point_right': '๐',
\ 'point_up': 'โ๏ธ',
\ 'point_up_2': '๐',
\ 'police_car': '๐',
\ 'police_officer': '๐ฎ',
\ 'policeman': '๐ฎ',
\ 'poodle': '๐ฉ',
\ 'poop': '๐ฉ',
\ 'popcorn': '๐ฟ',
\ 'post_office': '๐ฃ',
\ 'postal_horn': '๐ฏ',
\ 'postbox': '๐ฎ',
\ 'potable_water': '๐ฐ',
\ 'potato': '๐ฅ',
\ 'potted_plant': '๐ชด',
\ 'pouch': '๐',
\ 'poultry_leg': '๐',
\ 'pound': '๐ท',
\ 'pouting_cat': '๐พ',
\ 'pouting_face': '๐',
\ 'pouting_woman': '๐',
\ 'pray': '๐',
\ 'prayer_beads': '๐ฟ',
\ 'pregnant_woman': '๐คฐ',
\ 'pretzel': '๐ฅจ',
\ 'previous_track_button': 'โฎ๏ธ',
\ 'prince': '๐คด',
\ 'princess': '๐ธ',
\ 'printer': '๐จ๏ธ',
\ 'probing_cane': '๐ฆฏ',
\ 'punch': '๐',
\ 'purple_circle': '๐ฃ',
\ 'purple_heart': '๐',
\ 'purple_square': '๐ช',
\ 'purse': '๐',
\ 'pushpin': '๐',
\ 'put_litter_in_its_place': '๐ฎ',
\ 'question': 'โ',
\ 'rabbit': '๐ฐ',
\ 'rabbit2': '๐',
\ 'raccoon': '๐ฆ',
\ 'racehorse': '๐',
\ 'racing_car': '๐๏ธ',
\ 'radio': '๐ป',
\ 'radio_button': '๐',
\ 'radioactive': 'โข๏ธ',
\ 'rage': '๐ก',
\ 'railway_car': '๐',
\ 'railway_track': '๐ค๏ธ',
\ 'rainbow': '๐',
\ 'raised_back_of_hand': '๐ค',
\ 'raised_eyebrow': '๐คจ',
\ 'raised_hand': 'โ',
\ 'raised_hand_with_fingers_splayed': '๐๏ธ',
\ 'raised_hands': '๐',
\ 'raising_hand': '๐',
\ 'raising_hand_woman': '๐',
\ 'ram': '๐',
\ 'ramen': '๐',
\ 'rat': '๐',
\ 'razor': '๐ช',
\ 'receipt': '๐งพ',
\ 'record_button': 'โบ๏ธ',
\ 'recycle': 'โป๏ธ',
\ 'red_car': '๐',
\ 'red_circle': '๐ด',
\ 'red_envelope': '๐งง',
\ 'red_square': '๐ฅ',
\ 'registered': 'ยฎ๏ธ',
\ 'relaxed': 'โบ๏ธ',
\ 'relieved': '๐',
\ 'reminder_ribbon': '๐๏ธ',
\ 'repeat': '๐',
\ 'repeat_one': '๐',
\ 'rescue_worker_helmet': 'โ๏ธ',
\ 'restroom': '๐ป',
\ 'revolving_hearts': '๐',
\ 'rewind': 'โช',
\ 'rhinoceros': '๐ฆ',
\ 'ribbon': '๐',
\ 'rice': '๐',
\ 'rice_ball': '๐',
\ 'rice_cracker': '๐',
\ 'rice_scene': '๐',
\ 'right_anger_bubble': '๐ฏ๏ธ',
\ 'ring': '๐',
\ 'ringed_planet': '๐ช',
\ 'robot': '๐ค',
\ 'rock': '๐ชจ',
\ 'rocket': '๐',
\ 'rofl': '๐คฃ',
\ 'roll_eyes': '๐',
\ 'roll_of_paper': '๐งป',
\ 'roller_coaster': '๐ข',
\ 'roller_skate': '๐ผ',
\ 'rooster': '๐',
\ 'rose': '๐น',
\ 'rosette': '๐ต๏ธ',
\ 'rotating_light': '๐จ',
\ 'round_pushpin': '๐',
\ 'rowboat': '๐ฃ',
\ 'rowing_man': '๐ฃ',
\ 'rugby_football': '๐',
\ 'runner': '๐',
\ 'running': '๐',
\ 'running_man': '๐',
\ 'running_shirt_with_sash': '๐ฝ',
\ 'sa': '๐๏ธ',
\ 'safety_pin': '๐งท',
\ 'safety_vest': '๐ฆบ',
\ 'sagittarius': 'โ๏ธ',
\ 'sailboat': 'โต๏ธ',
\ 'sake': '๐ถ',
\ 'salt': '๐ง',
\ 'sandal': '๐ก',
\ 'sandwich': '๐ฅช',
\ 'santa': '๐
',
\ 'sari': '๐ฅป',
\ 'satellite': '๐ก',
\ 'satisfied': '๐',
\ 'sauna_person': '๐ง',
\ 'sauropod': '๐ฆ',
\ 'saxophone': '๐ท',
\ 'scarf': '๐งฃ',
\ 'school': '๐ซ',
\ 'school_satchel': '๐',
\ 'scissors': 'โ๏ธ',
\ 'scorpion': '๐ฆ',
\ 'scorpius': 'โ๏ธ',
\ 'scream': '๐ฑ',
\ 'scream_cat': '๐',
\ 'screwdriver': '๐ช',
\ 'scroll': '๐',
\ 'seal': '๐ฆญ',
\ 'seat': '๐บ',
\ 'secret': 'ใ๏ธ',
\ 'see_no_evil': '๐',
\ 'seedling': '๐ฑ',
\ 'selfie': '๐คณ',
\ 'seven': '7๏ธโฃ',
\ 'sewing_needle': '๐ชก',
\ 'shallow_pan_of_food': '๐ฅ',
\ 'shamrock': 'โ๏ธ',
\ 'shark': '๐ฆ',
\ 'shaved_ice': '๐ง',
\ 'sheep': '๐',
\ 'shell': '๐',
\ 'shield': '๐ก๏ธ',
\ 'shinto_shrine': 'โฉ๏ธ',
\ 'ship': '๐ข',
\ 'shirt': '๐',
\ 'shit': '๐ฉ',
\ 'shoe': '๐',
\ 'shopping': '๐๏ธ',
\ 'shopping_cart': '๐',
\ 'shorts': '๐ฉณ',
\ 'shower': '๐ฟ',
\ 'shrimp': '๐ฆ',
\ 'shrug': '๐คท',
\ 'shushing_face': '๐คซ',
\ 'signal_strength': '๐ถ',
\ 'six': '6๏ธโฃ',
\ 'six_pointed_star': '๐ฏ',
\ 'skateboard': '๐น',
\ 'ski': '๐ฟ',
\ 'skier': 'โท๏ธ',
\ 'skull': '๐',
\ 'skull_and_crossbones': 'โ ๏ธ',
\ 'skunk': '๐ฆจ',
\ 'sled': '๐ท',
\ 'sleeping': '๐ด',
\ 'sleeping_bed': '๐',
\ 'sleepy': '๐ช',
\ 'slightly_frowning_face': '๐',
\ 'slightly_smiling_face': '๐',
\ 'slot_machine': '๐ฐ',
\ 'sloth': '๐ฆฅ',
\ 'small_airplane': '๐ฉ๏ธ',
\ 'small_blue_diamond': '๐น',
\ 'small_orange_diamond': '๐ธ',
\ 'small_red_triangle': '๐บ',
\ 'small_red_triangle_down': '๐ป',
\ 'smile': '๐',
\ 'smile_cat': '๐ธ',
\ 'smiley': '๐',
\ 'smiley_cat': '๐บ',
\ 'smiling_face_with_tear': '๐ฅฒ',
\ 'smiling_face_with_three_hearts': '๐ฅฐ',
\ 'smiling_imp': '๐',
\ 'smirk': '๐',
\ 'smirk_cat': '๐ผ',
\ 'smoking': '๐ฌ',
\ 'snail': '๐',
\ 'snake': '๐',
\ 'sneezing_face': '๐คง',
\ 'snowboarder': '๐',
\ 'snowflake': 'โ๏ธ',
\ 'snowman': 'โ๏ธ',
\ 'snowman_with_snow': 'โ๏ธ',
\ 'soap': '๐งผ',
\ 'sob': '๐ญ',
\ 'soccer': 'โฝ๏ธ',
\ 'socks': '๐งฆ',
\ 'softball': '๐ฅ',
\ 'soon': '๐',
\ 'sos': '๐',
\ 'sound': '๐',
\ 'space_invader': '๐พ',
\ 'spades': 'โ ๏ธ',
\ 'spaghetti': '๐',
\ 'sparkle': 'โ๏ธ',
\ 'sparkler': '๐',
\ 'sparkles': 'โจ',
\ 'sparkling_heart': '๐',
\ 'speak_no_evil': '๐',
\ 'speaker': '๐',
\ 'speaking_head': '๐ฃ๏ธ',
\ 'speech_balloon': '๐ฌ',
\ 'speedboat': '๐ค',
\ 'spider': '๐ท๏ธ',
\ 'spider_web': '๐ธ๏ธ',
\ 'spiral_calendar': '๐๏ธ',
\ 'spiral_notepad': '๐๏ธ',
\ 'sponge': '๐งฝ',
\ 'spoon': '๐ฅ',
\ 'squid': '๐ฆ',
\ 'stadium': '๐๏ธ',
\ 'standing_person': '๐ง',
\ 'star': 'โญ๏ธ',
\ 'star2': '๐',
\ 'star_and_crescent': 'โช๏ธ',
\ 'star_of_david': 'โก๏ธ',
\ 'star_struck': '๐คฉ',
\ 'stars': '๐ ',
\ 'station': '๐',
\ 'statue_of_liberty': '๐ฝ',
\ 'steam_locomotive': '๐',
\ 'stethoscope': '๐ฉบ',
\ 'stew': '๐ฒ',
\ 'stop_button': 'โน๏ธ',
\ 'stop_sign': '๐',
\ 'stopwatch': 'โฑ๏ธ',
\ 'straight_ruler': '๐',
\ 'strawberry': '๐',
\ 'stuck_out_tongue': '๐',
\ 'stuck_out_tongue_closed_eyes': '๐',
\ 'stuck_out_tongue_winking_eye': '๐',
\ 'studio_microphone': '๐๏ธ',
\ 'stuffed_flatbread': '๐ฅ',
\ 'sun_behind_large_cloud': '๐ฅ๏ธ',
\ 'sun_behind_rain_cloud': '๐ฆ๏ธ',
\ 'sun_behind_small_cloud': '๐ค๏ธ',
\ 'sun_with_face': '๐',
\ 'sunflower': '๐ป',
\ 'sunglasses': '๐',
\ 'sunny': 'โ๏ธ',
\ 'sunrise': '๐
',
\ 'sunrise_over_mountains': '๐',
\ 'superhero': '๐ฆธ',
\ 'supervillain': '๐ฆน',
\ 'surfer': '๐',
\ 'surfing_man': '๐',
\ 'sushi': '๐ฃ',
\ 'suspension_railway': '๐',
\ 'swan': '๐ฆข',
\ 'sweat': '๐',
\ 'sweat_drops': '๐ฆ',
\ 'sweat_smile': '๐
',
\ 'sweet_potato': '๐ ',
\ 'swim_brief': '๐ฉฒ',
\ 'swimmer': '๐',
\ 'swimming_man': '๐',
\ 'symbols': '๐ฃ',
\ 'synagogue': '๐',
\ 'syringe': '๐',
\ 't-rex': '๐ฆ',
\ 'taco': '๐ฎ',
\ 'tada': '๐',
\ 'takeout_box': '๐ฅก',
\ 'tamale': '๐ซ',
\ 'tanabata_tree': '๐',
\ 'tangerine': '๐',
\ 'taurus': 'โ๏ธ',
\ 'taxi': '๐',
\ 'tea': '๐ต',
\ 'teapot': '๐ซ',
\ 'teddy_bear': '๐งธ',
\ 'telephone': 'โ๏ธ',
\ 'telephone_receiver': '๐',
\ 'telescope': '๐ญ',
\ 'tennis': '๐พ',
\ 'tent': 'โบ๏ธ',
\ 'test_tube': '๐งช',
\ 'thermometer': '๐ก๏ธ',
\ 'thinking': '๐ค',
\ 'thong_sandal': '๐ฉด',
\ 'thought_balloon': '๐ญ',
\ 'thread': '๐งต',
\ 'three': '3๏ธโฃ',
\ 'thumbsdown': '๐',
\ 'thumbsup': '๐',
\ 'ticket': '๐ซ',
\ 'tickets': '๐๏ธ',
\ 'tiger': '๐ฏ',
\ 'tiger2': '๐
',
\ 'timer_clock': 'โฒ๏ธ',
\ 'tipping_hand_person': '๐',
\ 'tipping_hand_woman': '๐',
\ 'tired_face': '๐ซ',
\ 'tm': 'โข๏ธ',
\ 'toilet': '๐ฝ',
\ 'tokyo_tower': '๐ผ',
\ 'tomato': '๐
',
\ 'tongue': '๐
',
\ 'toolbox': '๐งฐ',
\ 'tooth': '๐ฆท',
\ 'toothbrush': '๐ชฅ',
\ 'top': '๐',
\ 'tophat': '๐ฉ',
\ 'tornado': '๐ช๏ธ',
\ 'trackball': '๐ฒ๏ธ',
\ 'tractor': '๐',
\ 'traffic_light': '๐ฅ',
\ 'train': '๐',
\ 'train2': '๐',
\ 'tram': '๐',
\ 'transgender_symbol': 'โง๏ธ',
\ 'triangular_flag_on_post': '๐ฉ',
\ 'triangular_ruler': '๐',
\ 'trident': '๐ฑ',
\ 'triumph': '๐ค',
\ 'trolleybus': '๐',
\ 'trophy': '๐',
\ 'tropical_drink': '๐น',
\ 'tropical_fish': '๐ ',
\ 'truck': '๐',
\ 'trumpet': '๐บ',
\ 'tshirt': '๐',
\ 'tulip': '๐ท',
\ 'tumbler_glass': '๐ฅ',
\ 'turkey': '๐ฆ',
\ 'turtle': '๐ข',
\ 'tv': '๐บ',
\ 'twisted_rightwards_arrows': '๐',
\ 'two': '2๏ธโฃ',
\ 'two_hearts': '๐',
\ 'two_men_holding_hands': '๐ฌ',
\ 'two_women_holding_hands': '๐ญ',
\ 'u5272': '๐น',
\ 'u5408': '๐ด',
\ 'u55b6': '๐บ',
\ 'u6307': '๐ฏ๏ธ',
\ 'u6708': '๐ท๏ธ',
\ 'u6709': '๐ถ',
\ 'u6e80': '๐ต',
\ 'u7121': '๐๏ธ',
\ 'u7533': '๐ธ',
\ 'u7981': '๐ฒ',
\ 'u7a7a': '๐ณ',
\ 'umbrella': 'โ๏ธ',
\ 'unamused': '๐',
\ 'underage': '๐',
\ 'unicorn': '๐ฆ',
\ 'unlock': '๐',
\ 'up': '๐',
\ 'upside_down_face': '๐',
\ 'v': 'โ๏ธ',
\ 'vampire': '๐ง',
\ 'vertical_traffic_light': '๐ฆ',
\ 'vhs': '๐ผ',
\ 'vibration_mode': '๐ณ',
\ 'video_camera': '๐น',
\ 'video_game': '๐ฎ',
\ 'violin': '๐ป',
\ 'virgo': 'โ๏ธ',
\ 'volcano': '๐',
\ 'volleyball': '๐',
\ 'vomiting_face': '๐คฎ',
\ 'vs': '๐',
\ 'vulcan_salute': '๐',
\ 'waffle': '๐ง',
\ 'walking': '๐ถ',
\ 'walking_man': '๐ถ',
\ 'waning_crescent_moon': '๐',
\ 'waning_gibbous_moon': '๐',
\ 'warning': 'โ ๏ธ',
\ 'wastebasket': '๐๏ธ',
\ 'watch': 'โ๏ธ',
\ 'water_buffalo': '๐',
\ 'water_polo': '๐คฝ',
\ 'watermelon': '๐',
\ 'wave': '๐',
\ 'wavy_dash': 'ใฐ๏ธ',
\ 'waxing_crescent_moon': '๐',
\ 'waxing_gibbous_moon': '๐',
\ 'wc': '๐พ',
\ 'weary': '๐ฉ',
\ 'wedding': '๐',
\ 'weight_lifting': '๐๏ธ',
\ 'weight_lifting_man': '๐๏ธ',
\ 'whale': '๐ณ',
\ 'whale2': '๐',
\ 'wheel_of_dharma': 'โธ๏ธ',
\ 'wheelchair': 'โฟ๏ธ',
\ 'white_check_mark': 'โ
',
\ 'white_circle': 'โช๏ธ',
\ 'white_flag': '๐ณ๏ธ',
\ 'white_flower': '๐ฎ',
\ 'white_heart': '๐ค',
\ 'white_large_square': 'โฌ๏ธ',
\ 'white_medium_small_square': 'โฝ๏ธ',
\ 'white_medium_square': 'โป๏ธ',
\ 'white_small_square': 'โซ๏ธ',
\ 'white_square_button': '๐ณ',
\ 'wilted_flower': '๐ฅ',
\ 'wind_chime': '๐',
\ 'wind_face': '๐ฌ๏ธ',
\ 'window': '๐ช',
\ 'wine_glass': '๐ท',
\ 'wink': '๐',
\ 'wolf': '๐บ',
\ 'woman': '๐ฉ',
\ 'woman_dancing': '๐',
\ 'woman_with_headscarf': '๐ง',
\ 'womans_clothes': '๐',
\ 'womans_hat': '๐',
\ 'womens': '๐บ',
\ 'wood': '๐ชต',
\ 'woozy_face': '๐ฅด',
\ 'world_map': '๐บ๏ธ',
\ 'worm': '๐ชฑ',
\ 'worried': '๐',
\ 'wrench': '๐ง',
\ 'wrestling': '๐คผ',
\ 'writing_hand': 'โ๏ธ',
\ 'x': 'โ',
\ 'yarn': '๐งถ',
\ 'yawning_face': '๐ฅฑ',
\ 'yellow_circle': '๐ก',
\ 'yellow_heart': '๐',
\ 'yellow_square': '๐จ',
\ 'yen': '๐ด',
\ 'yin_yang': 'โฏ๏ธ',
\ 'yo_yo': '๐ช',
\ 'yum': '๐',
\ 'zany_face': '๐คช',
\ 'zap': 'โก๏ธ',
\ 'zebra': '๐ฆ',
\ 'zero': '0๏ธโฃ',
\ 'zipper_mouth_face': '๐ค',
\ 'zombie': '๐ง',
\ 'zzz': '๐ค',
\ }
let s:emoji_multiple = {
\ 'basketball_woman': 'โน๏ธโโ๏ธ',
\ 'biking_woman': '๐ดโโ๏ธ',
\ 'blonde_woman': '๐ฑโโ๏ธ',
\ 'bowing_woman': '๐โโ๏ธ',
\ 'construction_worker_woman': '๐ทโโ๏ธ',
\ 'couple_with_heart_man_man': '๐จโโค๏ธโ๐จ',
\ 'couple_with_heart_woman_woman': '๐ฉโโค๏ธโ๐ฉ',
\ 'couplekiss_man_man': '๐จโโค๏ธโ๐โ๐จ',
\ 'couplekiss_woman_woman': '๐ฉโโค๏ธโ๐โ๐ฉ',
\ 'dancing_men': '๐ฏโโ๏ธ',
\ 'eye_speech_bubble': '๐โ๐จ',
\ 'family_man_boy': '๐จโ๐ฆ',
\ 'family_man_boy_boy': '๐จโ๐ฆโ๐ฆ',
\ 'family_man_girl': '๐จโ๐ง',
\ 'family_man_girl_boy': '๐จโ๐งโ๐ฆ',
\ 'family_man_girl_girl': '๐จโ๐งโ๐ง',
\ 'family_man_man_boy': '๐จโ๐จโ๐ฆ',
\ 'family_man_man_boy_boy': '๐จโ๐จโ๐ฆโ๐ฆ',
\ 'family_man_man_girl': '๐จโ๐จโ๐ง',
\ 'family_man_man_girl_boy': '๐จโ๐จโ๐งโ๐ฆ',
\ 'family_man_man_girl_girl': '๐จโ๐จโ๐งโ๐ง',
\ 'family_man_woman_boy_boy': '๐จโ๐ฉโ๐ฆโ๐ฆ',
\ 'family_man_woman_girl': '๐จโ๐ฉโ๐ง',
\ 'family_man_woman_girl_boy': '๐จโ๐ฉโ๐งโ๐ฆ',
\ 'family_man_woman_girl_girl': '๐จโ๐ฉโ๐งโ๐ง',
\ 'family_woman_boy': '๐ฉโ๐ฆ',
\ 'family_woman_boy_boy': '๐ฉโ๐ฆโ๐ฆ',
\ 'family_woman_girl': '๐ฉโ๐ง',
\ 'family_woman_girl_boy': '๐ฉโ๐งโ๐ฆ',
\ 'family_woman_girl_girl': '๐ฉโ๐งโ๐ง',
\ 'family_woman_woman_boy': '๐ฉโ๐ฉโ๐ฆ',
\ 'family_woman_woman_boy_boy': '๐ฉโ๐ฉโ๐ฆโ๐ฆ',
\ 'family_woman_woman_girl': '๐ฉโ๐ฉโ๐ง',
\ 'family_woman_woman_girl_boy': '๐ฉโ๐ฉโ๐งโ๐ฆ',
\ 'family_woman_woman_girl_girl': '๐ฉโ๐ฉโ๐งโ๐ง',
\ 'female_detective': '๐ต๏ธโโ๏ธ',
\ 'frowning_man': '๐โโ๏ธ',
\ 'golfing_woman': '๐๏ธโโ๏ธ',
\ 'guardswoman': '๐โโ๏ธ',
\ 'haircut_man': '๐โโ๏ธ',
\ 'man_artist': '๐จโ๐จ',
\ 'man_astronaut': '๐จโ๐',
\ 'man_cartwheeling': '๐คธโโ๏ธ',
\ 'man_cook': '๐จโ๐ณ',
\ 'man_facepalming': '๐คฆโโ๏ธ',
\ 'man_factory_worker': '๐จโ๐ญ',
\ 'man_farmer': '๐จโ๐พ',
\ 'man_firefighter': '๐จโ๐',
\ 'man_health_worker': '๐จโโ๏ธ',
\ 'man_judge': '๐จโโ๏ธ',
\ 'man_juggling': '๐คนโโ๏ธ',
\ 'man_mechanic': '๐จโ๐ง',
\ 'man_office_worker': '๐จโ๐ผ',
\ 'man_pilot': '๐จโโ๏ธ',
\ 'man_playing_handball': '๐คพโโ๏ธ',
\ 'man_playing_water_polo': '๐คฝโโ๏ธ',
\ 'man_scientist': '๐จโ๐ฌ',
\ 'man_shrugging': '๐คทโโ๏ธ',
\ 'man_singer': '๐จโ๐ค',
\ 'man_student': '๐จโ๐',
\ 'man_teacher': '๐จโ๐ซ',
\ 'man_technologist': '๐จโ๐ป',
\ 'massage_man': '๐โโ๏ธ',
\ 'men_wrestling': '๐คผโโ๏ธ',
\ 'mountain_biking_woman': '๐ตโโ๏ธ',
\ 'no_good_man': '๐
โโ๏ธ',
\ 'ok_man': '๐โโ๏ธ',
\ 'policewoman': '๐ฎโโ๏ธ',
\ 'pouting_man': '๐โโ๏ธ',
\ 'rainbow_flag': '๐ณ๏ธโ๐',
\ 'raising_hand_man': '๐โโ๏ธ',
\ 'rowing_woman': '๐ฃโโ๏ธ',
\ 'running_woman': '๐โโ๏ธ',
\ 'surfing_woman': '๐โโ๏ธ',
\ 'swimming_woman': '๐โโ๏ธ',
\ 'tipping_hand_man': '๐โโ๏ธ',
\ 'walking_woman': '๐ถโโ๏ธ',
\ 'weight_lifting_woman': '๐๏ธโโ๏ธ',
\ 'woman_artist': '๐ฉโ๐จ',
\ 'woman_astronaut': '๐ฉโ๐',
\ 'woman_cartwheeling': '๐คธโโ๏ธ',
\ 'woman_cook': '๐ฉโ๐ณ',
\ 'woman_facepalming': '๐คฆโโ๏ธ',
\ 'woman_factory_worker': '๐ฉโ๐ญ',
\ 'woman_farmer': '๐ฉโ๐พ',
\ 'woman_firefighter': '๐ฉโ๐',
\ 'woman_health_worker': '๐ฉโโ๏ธ',
\ 'woman_judge': '๐ฉโโ๏ธ',
\ 'woman_juggling': '๐คนโโ๏ธ',
\ 'woman_mechanic': '๐ฉโ๐ง',
\ 'woman_office_worker': '๐ฉโ๐ผ',
\ 'woman_pilot': '๐ฉโโ๏ธ',
\ 'woman_playing_handball': '๐คพโโ๏ธ',
\ 'woman_playing_water_polo': '๐คฝโโ๏ธ',
\ 'woman_scientist': '๐ฉโ๐ฌ',
\ 'woman_shrugging': '๐คทโโ๏ธ',
\ 'woman_singer': '๐ฉโ๐ค',
\ 'woman_student': '๐ฉโ๐',
\ 'woman_teacher': '๐ฉโ๐ซ',
\ 'woman_technologist': '๐ฉโ๐ป',
\ 'woman_with_turban': '๐ณโโ๏ธ',
\ 'women_wrestling': '๐คผโโ๏ธ',
\ 'aland_islands': '๐ฆ๐ฝ',
\ 'albania': '๐ฆ๐ฑ',
\ 'algeria': '๐ฉ๐ฟ',
\ 'american_samoa': '๐ฆ๐ธ',
\ 'andorra': '๐ฆ๐ฉ',
\ 'angola': '๐ฆ๐ด',
\ 'anguilla': '๐ฆ๐ฎ',
\ 'antarctica': '๐ฆ๐ถ',
\ 'antigua_barbuda': '๐ฆ๐ฌ',
\ 'argentina': '๐ฆ๐ท',
\ 'armenia': '๐ฆ๐ฒ',
\ 'aruba': '๐ฆ๐ผ',
\ 'australia': '๐ฆ๐บ',
\ 'austria': '๐ฆ๐น',
\ 'azerbaijan': '๐ฆ๐ฟ',
\ 'bahamas': '๐ง๐ธ',
\ 'bahrain': '๐ง๐ญ',
\ 'bangladesh': '๐ง๐ฉ',
\ 'barbados': '๐ง๐ง',
\ 'belarus': '๐ง๐พ',
\ 'belgium': '๐ง๐ช',
\ 'belize': '๐ง๐ฟ',
\ 'benin': '๐ง๐ฏ',
\ 'bermuda': '๐ง๐ฒ',
\ 'bhutan': '๐ง๐น',
\ 'bolivia': '๐ง๐ด',
\ 'bosnia_herzegovina': '๐ง๐ฆ',
\ 'botswana': '๐ง๐ผ',
\ 'brazil': '๐ง๐ท',
\ 'british_indian_ocean_territory': '๐ฎ๐ด',
\ 'british_virgin_islands': '๐ป๐ฌ',
\ 'brunei': '๐ง๐ณ',
\ 'bulgaria': '๐ง๐ฌ',
\ 'burkina_faso': '๐ง๐ซ',
\ 'burundi': '๐ง๐ฎ',
\ 'cambodia': '๐ฐ๐ญ',
\ 'cameroon': '๐จ๐ฒ',
\ 'canada': '๐จ๐ฆ',
\ 'canary_islands': '๐ฎ๐จ',
\ 'cape_verde': '๐จ๐ป',
\ 'caribbean_netherlands': '๐ง๐ถ',
\ 'cayman_islands': '๐ฐ๐พ',
\ 'central_african_republic': '๐จ๐ซ',
\ 'chad': '๐น๐ฉ',
\ 'chile': '๐จ๐ฑ',
\ 'christmas_island': '๐จ๐ฝ',
\ 'cn': '๐จ๐ณ',
\ 'cocos_islands': '๐จ๐จ',
\ 'colombia': '๐จ๐ด',
\ 'comoros': '๐ฐ๐ฒ',
\ 'congo_brazzaville': '๐จ๐ฌ',
\ 'congo_kinshasa': '๐จ๐ฉ',
\ 'cook_islands': '๐จ๐ฐ',
\ 'costa_rica': '๐จ๐ท',
\ 'cote_divoire': '๐จ๐ฎ',
\ 'croatia': '๐ญ๐ท',
\ 'cuba': '๐จ๐บ',
\ 'curacao': '๐จ๐ผ',
\ 'cyprus': '๐จ๐พ',
\ 'czech_republic': '๐จ๐ฟ',
\ 'de': '๐ฉ๐ช',
\ 'denmark': '๐ฉ๐ฐ',
\ 'djibouti': '๐ฉ๐ฏ',
\ 'dominica': '๐ฉ๐ฒ',
\ 'dominican_republic': '๐ฉ๐ด',
\ 'ecuador': '๐ช๐จ',
\ 'egypt': '๐ช๐ฌ',
\ 'el_salvador': '๐ธ๐ป',
\ 'equatorial_guinea': '๐ฌ๐ถ',
\ 'eritrea': '๐ช๐ท',
\ 'es': '๐ช๐ธ',
\ 'estonia': '๐ช๐ช',
\ 'ethiopia': '๐ช๐น',
\ 'eu': '๐ช๐บ',
\ 'falkland_islands': '๐ซ๐ฐ',
\ 'faroe_islands': '๐ซ๐ด',
\ 'fiji': '๐ซ๐ฏ',
\ 'finland': '๐ซ๐ฎ',
\ 'fr': '๐ซ๐ท',
\ 'french_guiana': '๐ฌ๐ซ',
\ 'french_polynesia': '๐ต๐ซ',
\ 'french_southern_territories': '๐น๐ซ',
\ 'gabon': '๐ฌ๐ฆ',
\ 'gambia': '๐ฌ๐ฒ',
\ 'gb': '๐ฌ๐ง',
\ 'georgia': '๐ฌ๐ช',
\ 'ghana': '๐ฌ๐ญ',
\ 'gibraltar': '๐ฌ๐ฎ',
\ 'greece': '๐ฌ๐ท',
\ 'greenland': '๐ฌ๐ฑ',
\ 'grenada': '๐ฌ๐ฉ',
\ 'guadeloupe': '๐ฌ๐ต',
\ 'guam': '๐ฌ๐บ',
\ 'guatemala': '๐ฌ๐น',
\ 'guernsey': '๐ฌ๐ฌ',
\ 'guinea': '๐ฌ๐ณ',
\ 'guinea_bissau': '๐ฌ๐ผ',
\ 'guyana': '๐ฌ๐พ',
\ 'haiti': '๐ญ๐น',
\ 'honduras': '๐ญ๐ณ',
\ 'hong_kong': '๐ญ๐ฐ',
\ 'hungary': '๐ญ๐บ',
\ 'iceland': '๐ฎ๐ธ',
\ 'india': '๐ฎ๐ณ',
\ 'indonesia': '๐ฎ๐ฉ',
\ 'iran': '๐ฎ๐ท',
\ 'iraq': '๐ฎ๐ถ',
\ 'ireland': '๐ฎ๐ช',
\ 'isle_of_man': '๐ฎ๐ฒ',
\ 'israel': '๐ฎ๐ฑ',
\ 'it': '๐ฎ๐น',
\ 'jamaica': '๐ฏ๐ฒ',
\ 'jersey': '๐ฏ๐ช',
\ 'jordan': '๐ฏ๐ด',
\ 'jp': '๐ฏ๐ต',
\ 'kazakhstan': '๐ฐ๐ฟ',
\ 'kenya': '๐ฐ๐ช',
\ 'kiribati': '๐ฐ๐ฎ',
\ 'kosovo': '๐ฝ๐ฐ',
\ 'kr': '๐ฐ๐ท',
\ 'kuwait': '๐ฐ๐ผ',
\ 'kyrgyzstan': '๐ฐ๐ฌ',
\ 'laos': '๐ฑ๐ฆ',
\ 'latvia': '๐ฑ๐ป',
\ 'lebanon': '๐ฑ๐ง',
\ 'lesotho': '๐ฑ๐ธ',
\ 'liberia': '๐ฑ๐ท',
\ 'libya': '๐ฑ๐พ',
\ 'liechtenstein': '๐ฑ๐ฎ',
\ 'lithuania': '๐ฑ๐น',
\ 'luxembourg': '๐ฑ๐บ',
\ 'macau': '๐ฒ๐ด',
\ 'macedonia': '๐ฒ๐ฐ',
\ 'madagascar': '๐ฒ๐ฌ',
\ 'malawi': '๐ฒ๐ผ',
\ 'malaysia': '๐ฒ๐พ',
\ 'maldives': '๐ฒ๐ป',
\ 'mali': '๐ฒ๐ฑ',
\ 'malta': '๐ฒ๐น',
\ 'marshall_islands': '๐ฒ๐ญ',
\ 'martinique': '๐ฒ๐ถ',
\ 'mauritania': '๐ฒ๐ท',
\ 'mauritius': '๐ฒ๐บ',
\ 'mayotte': '๐พ๐น',
\ 'mexico': '๐ฒ๐ฝ',
\ 'micronesia': '๐ซ๐ฒ',
\ 'moldova': '๐ฒ๐ฉ',
\ 'monaco': '๐ฒ๐จ',
\ 'mongolia': '๐ฒ๐ณ',
\ 'montenegro': '๐ฒ๐ช',
\ 'montserrat': '๐ฒ๐ธ',
\ 'morocco': '๐ฒ๐ฆ',
\ 'mozambique': '๐ฒ๐ฟ',
\ 'myanmar': '๐ฒ๐ฒ',
\ 'namibia': '๐ณ๐ฆ',
\ 'nauru': '๐ณ๐ท',
\ 'nepal': '๐ณ๐ต',
\ 'netherlands': '๐ณ๐ฑ',
\ 'new_caledonia': '๐ณ๐จ',
\ 'new_zealand': '๐ณ๐ฟ',
\ 'nicaragua': '๐ณ๐ฎ',
\ 'niger': '๐ณ๐ช',
\ 'nigeria': '๐ณ๐ฌ',
\ 'niue': '๐ณ๐บ',
\ 'norfolk_island': '๐ณ๐ซ',
\ 'north_korea': '๐ฐ๐ต',
\ 'northern_mariana_islands': '๐ฒ๐ต',
\ 'norway': '๐ณ๐ด',
\ 'oman': '๐ด๐ฒ',
\ 'pakistan': '๐ต๐ฐ',
\ 'palau': '๐ต๐ผ',
\ 'palestinian_territories': '๐ต๐ธ',
\ 'panama': '๐ต๐ฆ',
\ 'papua_new_guinea': '๐ต๐ฌ',
\ 'paraguay': '๐ต๐พ',
\ 'peru': '๐ต๐ช',
\ 'philippines': '๐ต๐ญ',
\ 'pitcairn_islands': '๐ต๐ณ',
\ 'poland': '๐ต๐ฑ',
\ 'portugal': '๐ต๐น',
\ 'puerto_rico': '๐ต๐ท',
\ 'qatar': '๐ถ๐ฆ',
\ 'reunion': '๐ท๐ช',
\ 'romania': '๐ท๐ด',
\ 'ru': '๐ท๐บ',
\ 'rwanda': '๐ท๐ผ',
\ 'samoa': '๐ผ๐ธ',
\ 'san_marino': '๐ธ๐ฒ',
\ 'sao_tome_principe': '๐ธ๐น',
\ 'saudi_arabia': '๐ธ๐ฆ',
\ 'senegal': '๐ธ๐ณ',
\ 'serbia': '๐ท๐ธ',
\ 'seychelles': '๐ธ๐จ',
\ 'sierra_leone': '๐ธ๐ฑ',
\ 'singapore': '๐ธ๐ฌ',
\ 'sint_maarten': '๐ธ๐ฝ',
\ 'slovakia': '๐ธ๐ฐ',
\ 'slovenia': '๐ธ๐ฎ',
\ 'solomon_islands': '๐ธ๐ง',
\ 'somalia': '๐ธ๐ด',
\ 'south_africa': '๐ฟ๐ฆ',
\ 'south_georgia_south_sandwich_islands': '๐ฌ๐ธ',
\ 'south_sudan': '๐ธ๐ธ',
\ 'sri_lanka': '๐ฑ๐ฐ',
\ 'st_barthelemy': '๐ง๐ฑ',
\ 'st_helena': '๐ธ๐ญ',
\ 'st_kitts_nevis': '๐ฐ๐ณ',
\ 'st_lucia': '๐ฑ๐จ',
\ 'st_pierre_miquelon': '๐ต๐ฒ',
\ 'st_vincent_grenadines': '๐ป๐จ',
\ 'sudan': '๐ธ๐ฉ',
\ 'suriname': '๐ธ๐ท',
\ 'swaziland': '๐ธ๐ฟ',
\ 'sweden': '๐ธ๐ช',
\ 'switzerland': '๐จ๐ญ',
\ 'syria': '๐ธ๐พ',
\ 'taiwan': '๐น๐ผ',
\ 'tajikistan': '๐น๐ฏ',
\ 'tanzania': '๐น๐ฟ',
\ 'thailand': '๐น๐ญ',
\ 'timor_leste': '๐น๐ฑ',
\ 'togo': '๐น๐ฌ',
\ 'tokelau': '๐น๐ฐ',
\ 'tonga': '๐น๐ด',
\ 'tr': '๐น๐ท',
\ 'trinidad_tobago': '๐น๐น',
\ 'tunisia': '๐น๐ณ',
\ 'turkmenistan': '๐น๐ฒ',
\ 'turks_caicos_islands': '๐น๐จ',
\ 'tuvalu': '๐น๐ป',
\ 'uganda': '๐บ๐ฌ',
\ 'ukraine': '๐บ๐ฆ',
\ 'united_arab_emirates': '๐ฆ๐ช',
\ 'uruguay': '๐บ๐พ',
\ 'us': '๐บ๐ธ',
\ 'us_virgin_islands': '๐ป๐ฎ',
\ 'uzbekistan': '๐บ๐ฟ',
\ 'vanuatu': '๐ป๐บ',
\ 'vatican_city': '๐ป๐ฆ',
\ 'venezuela': '๐ป๐ช',
\ 'vietnam': '๐ป๐ณ',
\ 'wallis_futuna': '๐ผ๐ซ',
\ 'western_sahara': '๐ช๐ญ',
\ 'yemen': '๐พ๐ช',
\ 'zambia': '๐ฟ๐ฒ',
\ 'zimbabwe': '๐ฟ๐ผ',
\ }
let s:emojis = []
let s:emoji_dic = {}
function! vimwiki#emoji#get_dic() abort
" Get Dic:
if s:emoji_dic == {}
call extend(s:emoji_dic, s:emoji_multiple)
call extend(s:emoji_dic, s:emoji_single)
endif
return s:emoji_dic
endfunction
function! vimwiki#emoji#apply_conceal() abort
" Apply Conceal:
for [name, emoji] in items(s:emoji_single)
exe 'syn keyword VimwikiEmoji :' . name . ': conceal cchar=' . emoji
endfor
endfunction
let s:max_score = 1000
function! s:score(haystack, needle) abort
" Get Score: Junegunn fuzzy hack
let idx = stridx(a:haystack, a:needle)
if idx < 0 | return idx | endif
if idx == 0 | return s:max_score * 2 | endif
let bonus = (a:haystack[idx - 1] =~? '[^0-9a-zA-Z]') * s:max_score
return bonus + s:max_score - idx
endfunction
function! vimwiki#emoji#complete(findstart, base) abort
" Complete:
" Init full list if must
if s:emojis == []
let s:emojis = map(sort(keys(vimwiki#emoji#get_dic())),
\ '{ "word": ":".v:val.":", "kind": get(s:emoji_dic, v:val, "") }')
endif
if a:findstart
return match(getline('.')[0:col('.') - 1], ':[^: \t]*$')
elseif empty(a:base)
return s:emojis
else
augroup emoji_complete_redraw
autocmd!
autocmd CursorMoved,CursorMovedI,InsertLeave * redraw!
\| augroup emoji_complete_redraw
\| execute 'autocmd!'
\| augroup END
\| augroup! emoji_complete_redraw
augroup END
" Select [score, emoji_obj]
let matches = filter(
\ map(
\ s:emojis,
\ '[s:score(v:val.word, a:base[1:]), v:val]'),
\ 'v:val[0] >= 0')
" Sort result
function! EmojiSort(t1, t2) abort
if a:t1[0] == a:t2[0]
return a:t1[1].word <= a:t2[1].word ? -1 : 1
endif
return a:t1[0] >= a:t2[0] ? -1 : 1
endfunction
let matches = sort(matches, 'EmojiSort')
delfunction EmojiSort
" Return selected objs
return map(matches, 'v:val[1]')
endif
endfunction
|