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
|
" vi:set ts=8 sts=2 sw=2 tw=0:
"
" autoload/eblook.vim - functions for plugin/eblook.vim
"
" Maintainer: KIHARA Hideto <deton@m1.interq.or.jp>
" Last Change: 2020-04-18
" License: MIT License {{{
" Copyright (c) 2012-2015,2017,2020 KIHARA, Hideto
"
" Permission is hereby granted, free of charge, to any person obtaining a copy of
" this software and associated documentation files (the "Software"), to deal in
" the Software without restriction, including without limitation the rights to
" use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
" the Software, and to permit persons to whom the Software is furnished to do so,
" subject to the following conditions:
"
" The above copyright notice and this permission notice shall be included in all
" copies or substantial portions of the Software.
"
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
" FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
" COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
" IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
" CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
" }}}
scriptencoding utf-8
let s:save_cpo = &cpo
set cpo&vim
" entryウィンドウの行数
if !exists('eblook_entrywin_height')
let eblook_entrywin_height = 4
endif
" contentウィンドウの行数
if !exists('eblook_contentwin_height')
let eblook_contentwin_height = -1
endif
" 保持しておく過去の検索バッファ数の上限
if !exists('eblook_history_max')
let eblook_history_max = 10
endif
" contentウインドウ内でリンクをたどった際に、entryウィンドウ内容を更新するか
if !exists('eblook_update_entrywin_by_contentwin_link')
let eblook_update_entrywin_by_contentwin_link = 1
endif
" 表示変更用に保持しておく訪問済リンク数の上限
if !exists('eblook_visited_max')
let eblook_visited_max = 100
endif
if !exists('eblook_autoformat_default')
let eblook_autoformat_default = 0
endif
if !exists('eblook_show_refindex')
let eblook_show_refindex = 0
endif
if !exists('eblook_stemming')
let eblook_stemming = 0
endif
if !exists('g:eblook_decorate_indmin')
let g:eblook_decorate_indmin = 1
endif
if !exists('g:eblook_decorate_syntax')
if exists("g:syntax_on")
let g:eblook_decorate_syntax = 1
else
let g:eblook_decorate_syntax = 0
endif
endif
if !exists('g:eblook_decorate_supsub')
let g:eblook_decorate_supsub = 0
endif
if !exists('eblook_statusline_content')
let eblook_statusline_content = '%{b:group}Eblook content {%{b:caption}} %{b:dtitle}%<'
endif
if !exists('eblook_statusline_entry')
let eblook_statusline_entry = '%{b:group}Eblook entry {%{b:word}}%< [%L]'
endif
if !exists('eblook_max_hits')
let eblook_max_hits = 0
endif
" eblookプログラムの名前
if !exists('eblookprg')
let eblookprg = 'eblook'
endif
if !exists('eblook_viewers')
if has('win32') || has('win64')
" 第1引数に""を指定しないとコマンドプロンプトが開くだけ
let eblook_viewers = {
\'jpeg': ' start ""',
\'bmp': ' start ""',
\'pbm': ' start ""',
\'wav': ' start ""',
\'mpg': ' start ""',
\}
else
" XXX: mailcapを読み込んで設定する?
let eblook_viewers = {
\'jpeg': 'xdg-open %s &',
\'bmp': 'xdg-open %s &',
\'pbm': 'xdg-open %s &',
\'wav': 'xdg-open %s &',
\'mpg': 'xdg-open %s &',
\}
endif
endif
" eblookプログラムの出力を読み込むときのエンコーディング
if !exists('eblookenc')
let eblookenc = &encoding
endif
" eblookenc値(vimのencoding)からeblook --encodingオプション値への変換テーブル
let s:eblookenc2opt = {
\ 'euc-jp': 'euc',
\ 'cp932': 'sjis',
\ 'sjis': 'sjis',
\ 'utf-8': 'utf8',
\ 'utf8': 'utf8'
\}
let s:eblookopt = ""
if has_key(s:eblookenc2opt, eblookenc)
let s:eblookopt = '-e ' . s:eblookenc2opt[eblookenc]
endif
unlet s:eblookenc2opt
" Unicode表示可能かどうか。
" (vimproc用に&enc=utf-8、&tenc=euc-jisx0213にしている場合はUnicode表示不可)
if &encoding ==# 'utf-8' && (&termencoding == '' || &termencoding ==# 'utf-8')
let s:utf8display = 1
else
let s:utf8display = 0
endif
" eblookにリダイレクトするコマンドを保持する一時ファイル名
let s:cmdfile = tempname()
" entryバッファ名のベース
let s:entrybufname = fnamemodify(s:cmdfile, ':p:h') . '/_eblook_entry_'
let s:entrybufname = substitute(s:entrybufname, '\\', '/', 'g')
" contentバッファ名のベース
let s:contentbufname = fnamemodify(s:cmdfile, ':p:h') . '/_eblook_content_'
let s:contentbufname = substitute(s:contentbufname, '\\', '/', 'g')
" バッファヒストリ中の現在位置
let s:entrybufindex = 0
let s:contentbufindex = 0
" 直前に検索した文字列
let s:lastword = ''
" 表示済referenceアドレスリスト(訪問済リンクの表示変更用)
let s:visited = []
" stemming後の検索文字列。最初の要素がstemming前の文字列
let s:stemmedwords = []
" stemmedwords内の検索中index
let s:stemindex = -1
let s:zen2han = {
\'0':'0','1':'1','2':'2','3':'3','4':'4','5':'5','6':'6','7':'7',
\'8':'8','9':'9','A':'A','B':'B','C':'C','D':'D','E':'E','F':'F'}
augroup Eblook
autocmd!
execute "autocmd BufEnter " . s:entrybufname . "* call <SID>Entry_BufEnter()"
execute "autocmd BufEnter " . s:contentbufname . "* call <SID>Content_BufEnter()"
augroup END
" eblook-vim-1.0.5までの辞書指定形式を読み込む
if !exists("g:eblook_dictlist1")
let g:eblook_dictlist1 = []
let s:i = 1
while exists("g:eblook_dict{s:i}_name")
let dict = { 'name': g:eblook_dict{s:i}_name }
if exists("g:eblook_dict{s:i}_book")
let dict.book = g:eblook_dict{s:i}_book
" appendixが指定されている場合、bookとは分離する(扱いやすくするため)
let bookapp = matchlist(dict.book, '^\("[^"]\+"\)\s\+\(.\+\)\|^\([^"]\+\)\s\+\(.\+\)')
if len(bookapp) > 1
if strlen(bookapp[1]) > 0
let dict.book = bookapp[1]
if strlen(bookapp[2]) > 0
let dict.appendix = bookapp[2]
endif
elseif strlen(bookapp[3]) > 0
let dict.book = bookapp[3]
if strlen(bookapp[4]) > 0
let dict.appendix = bookapp[4]
endif
endif
endif
endif
if exists("g:eblook_dict{s:i}_title")
let dict.title = g:eblook_dict{s:i}_title
else
" 辞書のtitleが設定されていなかったら、辞書番号とnameを設定しておく
let dict.title = s:i . dict.name
endif
if exists("g:eblook_dict{s:i}_skip")
let dict.skip = g:eblook_dict{s:i}_skip
endif
call add(g:eblook_dictlist1, dict)
let s:i = s:i + 1
endwhile
unlet s:i
endif
if !exists('g:eblook_group')
let g:eblook_group = 1
endif
" entryバッファに入った時に実行。set nobuflistedする。
function! s:Entry_BufEnter()
set buftype=nofile
set bufhidden=hide
set noswapfile
if has('persistent_undo')
setlocal noundofile
endif
set nobuflisted
set nolist
setlocal noexpandtab wrapmargin=0 textwidth=0 formatoptions-=a
set filetype=eblook
if has("conceal")
setlocal conceallevel=2 concealcursor=nc
endif
if strlen(g:eblook_statusline_entry) > 0
setlocal statusline=%!g:eblook_statusline_entry
else
setlocal statusline=
endif
nnoremap <buffer> <silent> <CR> :<C-U>call <SID>GetContent(v:count)<CR>
nnoremap <buffer> <silent> J j:call <SID>GetContent(0)<CR>
nnoremap <buffer> <silent> K k:call <SID>GetContent(0)<CR>
nnoremap <buffer> <silent> <Space> :call <SID>ScrollContent(1)<CR>
nnoremap <buffer> <silent> <BS> :call <SID>ScrollContent(0)<CR>
nnoremap <buffer> <silent> o :call <SID>MaximizeContentHeight(1)<CR>
nnoremap <buffer> <silent> r :call <SID>LoadWinHeights(1)<CR>
nnoremap <buffer> <silent> O :call <SID>GetAndFormatContent()<CR>
nnoremap <buffer> <silent> p :call <SID>GoWindow(0)<CR>
nnoremap <buffer> <silent> q :call <SID>Quit()<CR>
nnoremap <buffer> <silent> R :<C-U>call <SID>ListReferences(v:count)<CR>
nnoremap <buffer> <silent> s :<C-U>call eblook#SearchInput(v:count, b:group, 0)<CR>
nnoremap <buffer> <silent> S :<C-U>call <SID>SearchOtherGroup(v:count, b:group)<CR>
nnoremap <buffer> <silent> <C-P> :call <SID>History(-1)<CR>
nnoremap <buffer> <silent> <C-N> :call <SID>History(1)<CR>
nnoremap <buffer> <silent> <Tab> :call search("\t")<CR>
nnoremap <buffer> <silent> <S-Tab> :call search("\t", 'b')<CR>
if has("gui_running")
nnoremap <buffer> <silent> <2-LeftMouse> :call <SID>GetContent(0)<CR>
nnoremap <buffer> <silent> <C-RightMouse> :call <SID>History(-1)<CR>
nnoremap <buffer> <silent> <C-LeftMouse> :call <SID>History(1)<CR>
endif
endfunction
" contentバッファに入った時に実行。set nobuflistedする。
function! s:Content_BufEnter()
set buftype=nofile
set bufhidden=hide
set noswapfile
if has('persistent_undo')
setlocal noundofile
endif
set nobuflisted
set nolist
" s:FormatLine()でgqqとindentまわりの処理を楽にするため
setlocal expandtab autoindent nosmartindent
setlocal formatoptions-=a
set filetype=eblook
if has("conceal")
setlocal conceallevel=2 concealcursor=nc
endif
if strlen(g:eblook_statusline_content) > 0
setlocal statusline=%!g:eblook_statusline_content
else
setlocal statusline=
endif
nnoremap <buffer> <silent> <CR> :<C-U>call <SID>SelectReference(v:count)<CR>
nnoremap <buffer> <silent> x :<C-U>call <SID>ShowMedia(v:count)<CR>
nnoremap <buffer> <silent> <Space> <PageDown>
nnoremap <buffer> <silent> <BS> <PageUp>
nnoremap <buffer> <silent> <Tab> :call search('<\d\+[\|!]')<CR>
nnoremap <buffer> <silent> <S-Tab> :call search('<\d\+[\|!]', 'b')<CR>
nnoremap <buffer> <silent> o :call <SID>MaximizeContentHeight(0)<CR>
nnoremap <buffer> <silent> r :call <SID>LoadWinHeights(0)<CR>
nnoremap <buffer> <silent> O :call <SID>GetContentSub(1)<CR>
nnoremap <buffer> <silent> p :call <SID>GoWindow(1)<CR>
nnoremap <buffer> <silent> q :call <SID>Quit()<CR>
nnoremap <buffer> <silent> R :<C-U>call <SID>FollowReference(v:count, 1)<CR>
nnoremap <buffer> <silent> s :<C-U>call eblook#SearchInput(v:count, b:group, 0)<CR>
nnoremap <buffer> <silent> S :<C-U>call <SID>SearchOtherGroup(v:count, b:group)<CR>
nnoremap <buffer> <silent> <C-P> :call <SID>History(-1)<CR>:call <SID>GoWindow(0)<CR>
nnoremap <buffer> <silent> <C-N> :call <SID>History(1)<CR>:call <SID>GoWindow(0)<CR>
if has("gui_running")
nnoremap <buffer> <silent> <2-LeftMouse> :call <SID>SelectReference(v:count)<CR>
nnoremap <buffer> <silent> <C-RightMouse> :call <SID>History(-1)<CR>:call <SID>GoWindow(0)<CR>
nnoremap <buffer> <silent> <C-LeftMouse> :call <SID>History(1)<CR>:call <SID>GoWindow(0)<CR>
menu .1 PopUp.[eblook]\ Back :call <SID>History(-1)<CR>:call <SID>GoWindow(0)<CR>
menu .2 PopUp.[eblook]\ Forward :call <SID>History(1)<CR>:call <SID>GoWindow(0)<CR>
menu .3 PopUp.[eblook]\ SearchVisual :<C-U>call eblook#SearchVisual(v:count)<CR>
menu .4 PopUp.-SEP_EBLOOK- <Nop>
endif
endfunction
" プロンプトを出して、ユーザから入力された文字列を検索する
" @param {Number} group 対象の辞書グループ番号
" @param {Number} defgroup 対象の辞書グループ番号(デフォルト)
" @param {Boolean} uselastword 直前の検索文字列をデフォルト文字列として入れるか
" (<Leader>yで取得・検索した文字列を一部変更して再検索できるように。
" input()のプロンプトで|c_CTRL-R_=|の後s:lastwordと入力することで実現可能)
function! eblook#SearchInput(group, defgroup, uselastword)
let gr = a:group
if a:group == 0
let gr = a:defgroup
endif
if a:uselastword
let word = s:lastword
else
let word = ''
endif
let str = input(':' . gr . 'EblookSearch ', word)
if strlen(str) == 0 || str ==# word && gr == a:defgroup
return
endif
call eblook#Search(gr, str, 0)
endfunction
" (entry/contentウィンドウから)直前の検索文字列を他の辞書グループで再検索する
" @param {Number} group 対象の辞書グループ番号
" @param {Number} defgroup 現在の辞書グループ番号
function! s:SearchOtherGroup(group, defgroup)
let gr = s:ExpandDefaultGroup(a:group)
if gr == a:defgroup
return
endif
call eblook#Search(gr, s:lastword, 0)
endfunction
" Visual modeで選択されている文字列を検索する
" @param {Number} group 対象の辞書グループ番号
function! eblook#SearchVisual(group)
let save_reg = @@
silent execute 'normal! `<' . visualmode() . '`>y'
call eblook#Search(a:group, substitute(@@, '\n', '', 'g'), 0)
let @@ = save_reg
endfunction
" 指定された単語の検索を行う。
" entryバッファに検索結果のリストを表示し、
" そのうち先頭のentryの内容をcontentバッファに表示する。
" @param {Number} group 対象の辞書グループ番号
" @param {String} word 検索する単語
" @param {Boolean} isstem stemmingした単語の検索中かどうか
function! eblook#Search(group, word, isstem)
if strlen(a:word) == 0
echomsg 'eblook-vim: 検索語が空文字列なので、検索を中止します'
return -1
endif
let s:lastword = a:word
let gr = s:ExpandDefaultGroup(a:group)
let dictlist = s:GetDictList(gr)
if len(dictlist) == 0
echomsg 'eblook-vim: 辞書グループ(g:eblook_dictlist' . gr . ')には辞書がありません'
return -1
endif
let hasoldwin = bufwinnr(s:entrybufname . s:entrybufindex)
if hasoldwin < 0
let hasoldwin = bufwinnr(s:contentbufname . s:contentbufindex)
endif
if hasoldwin >= 0 && !a:isstem " not save if recursion
let s:save_winheights = s:GetWinHeights()
endif
if s:RedirSearchCommand(dictlist, a:word) < 0
return -1
endif
if s:NewBuffers(gr, 1) < 0
return -1
endif
let b:word = a:word
call s:ExecuteEblook()
silent! :g/eblook.*> \(eblook.*> \)/s//\1/g
" 必要なgaiji mapファイルのみ読み込む: <gaiji=のある辞書番号をリストアップ
silent! normal! G$
let gaijidnums = []
while search('<gaiji=', 'bW') != 0
if search('eblook-\d\+>', 'bW') != 0
let dnum = matchstr(getline('.'), 'eblook-\zs\d\+\ze>')
if strlen(dnum) > 0
call add(gaijidnums, str2nr(dnum))
endif
endif
endwhile
let i = 0
while i < len(dictlist)
let dict = dictlist[i]
if get(dict, 'skip')
let i = i + 1
continue
endif
let title = get(dict, 'title', '')
if strlen(title) == 0
" 辞書のtitleが設定されていなかったら、辞書番号とnameを設定する
let dict.title = i . dict.name
let title = dict.title
endif
if index(gaijidnums, i) >= 0
let gaijimap = s:GetGaijiMap(dict)
silent! execute 'g/eblook-' . i . '>/;/^eblook/-1s/<gaiji=\([^>]*\)>/\=s:GetGaiji(gaijimap, submatch(1))/g'
endif
silent! execute 'g/eblook-' . i . '>/;/^eblook/-1s/^/' . title . "\t"
let i = i + 1
endwhile
silent! :g/eblook.\{-}> /s///g
call s:ReplaceUnicode()
call s:FormatDecorate(1)
silent! :g/^$/d _
call histdel('/', -1)
" 各行のreference先を配列に格納して、バッファからは削除
" (concealしてもカウントされるので、行が途中で折り返されていまいちなので)
let b:refs = []
silent! :g/^\(.\{-}\)\t *\d\+\. \(\x\+:\x\+\)\t\(.*\)/s//\=s:MakeEntryReferenceString(submatch(1), submatch(2), submatch(3))/
call histdel('/', -1)
if a:isstem
silent! execute "g/\t/s//\t[" . s:stemmedwords[0] . ' ->] /'
call histdel('/', -1)
endif
setlocal nomodifiable
if s:GetContent(1) < 0
if search('.', 'w') == 0
bwipeout!
silent! call s:History(-1)
if hasoldwin < 0
call s:Quit()
endif
let word = a:word
if a:isstem
let s:stemindex += 1
if s:stemindex < len(s:stemmedwords)
call eblook#Search(gr, s:stemmedwords[s:stemindex], 1)
return
else
let word = s:stemmedwords[0]
endif
elseif g:eblook_stemming
let s:stemmedwords = s:Stem(a:word)
call filter(s:stemmedwords, 'v:val !=# "' . a:word . '"')
if len(s:stemmedwords) > 0
call insert(s:stemmedwords, a:word) " 元の単語を先頭に入れておく
let s:stemindex = 1
call eblook#Search(gr, s:stemmedwords[s:stemindex], 1)
return
endif
endif
"redraw | echomsg 'eblook-vim(' . gr . '): 何も見つかりませんでした: <' . word . '>'
let str = input(':' . gr . 'EblookSearch(何も見つかりませんでした) ', word)
if hasoldwin >= 0
call s:RestoreWinHeights(s:save_winheights)
endif
if strlen(str) == 0 || str ==# word
return
endif
call eblook#Search(gr, str, 0)
endif
endif
endfunction
" stemming/語尾補正した候補文字列のListを取得する
" @param {String} word 対象文字列
" @return 候補文字列のList
function! s:Stem(word)
if a:word =~ '[^ -~]'
return eblook#stem_ja#Stem(a:word)
" XXX: ebviewと同様に、漢字部分のみを追加する
else
return eblook#stem_en#Stem(a:word)
endif
endfunction
" eblookプログラムにリダイレクトするための検索コマンドファイルを作成する
" @param dictlist 対象の辞書グループ
" @param {String} word 検索する単語
function! s:RedirSearchCommand(dictlist, word)
if s:OpenWindow('1new') < 0
return -1
endif
setlocal noswapfile
if has('persistent_undo')
setlocal noundofile
endif
setlocal nobuflisted
setlocal wrapmargin=0 textwidth=0 formatoptions-=a
execute 'normal! iset max-hits ' . g:eblook_max_hits . "\<Esc>"
if s:IsEblookDecorate()
execute 'normal! oset decorate-mode on' . "\<Esc>"
endif
let prev_book = ''
let i = 0
while i < len(a:dictlist)
let dict = a:dictlist[i]
if get(dict, 'skip')
let i = i + 1
continue
endif
if exists('dict.book') && dict.book !=# prev_book
execute 'normal! obook ' . s:MakeBookArgument(dict) . "\<Esc>"
let prev_book = dict.book
endif
execute 'normal! oselect ' . dict.name . "\<CR>"
\ . 'set prompt "eblook-' . i . '> "' . "\<CR>"
\ . 'search "' . a:word . '"' . "\<CR>\<Esc>"
let i = i + 1
endwhile
try
silent execute 'write! ++enc=' . g:eblookenc . ' ' . s:cmdfile
catch /^Vim\%((\a\+)\)\=:E513/
echomsg 'eblook-vim: 検索語をeblookenc(' . g:eblookenc . ')に変換できないため中断: ' . a:word
bwipeout!
return -1
endtry
bwipeout!
return 0
endfunction
" 指定された辞書グループの辞書リストを取得する
" @param {Number} group 対象の辞書グループ番号
" @return 辞書リスト
function! s:GetDictList(group)
let gr = s:ExpandDefaultGroup(a:group)
if exists("g:eblook_dictlist{gr}")
let dictlist = g:eblook_dictlist{gr}
else
let dictlist = []
endif
return dictlist
endfunction
" eblook 1.6.1+media版かどうかを調べる
function! s:IsEblookMediaVersion()
if !exists('s:eblookmedia')
let l:version = system(g:eblookprg . ' -version')
if match(l:version, '^eblook 1\.6\.1+media-') >= 0
let s:eblookmedia = 1
else
let s:eblookmedia = 0
endif
endif
return s:eblookmedia
endfunction
" eblookのbookに指定するための引数値を作る
" @param {Dictionary} dict 辞書情報
" @return {String} bookに指定する引数
function! s:MakeBookArgument(dict)
if exists('a:dict.appendix')
return a:dict.book . ' ' . a:dict.appendix
endif
" 直前のbook用に指定したappendixが引き継がれないようにappendixは必ず付ける
" (eblook 1.6.1+media版では対処されているので不要)
if !exists('s:has_appendix_problem')
if s:IsEblookMediaVersion()
let s:has_appendix_problem = 0
else
let s:has_appendix_problem = 1
endif
endif
if s:has_appendix_problem
return a:dict.book . ' ' . a:dict.book
else
return a:dict.book
endif
endfunction
" eblookプログラムを実行する
function! s:ExecuteEblook()
" ++encを指定しないとEUCでの短い出力をCP932と誤認識することがある
silent execute 'read! ++enc=' . g:eblookenc . ' "' . g:eblookprg . '" ' . s:eblookopt . ' < "' . s:cmdfile . '"'
"if &encoding !=# g:eblookenc
" let &fileencoding = &encoding
"endif
silent! :g/^Warning: you should specify a book directory first$/d _
endfunction
" 新しく検索を行うために、entryバッファとcontentバッファを作る。
" @param {Number} group 対象の辞書グループ番号
" @param {Number} withentrybuf entryバッファを作るかどうか
function! s:NewBuffers(group, withentrybuf)
" eblook_update_entrywin_by_contentwin_linkが1の場合は、
" entryバッファとcontentバッファは一対で扱う。
let oldindexe = s:entrybufindex
if a:withentrybuf
let s:entrybufindex = s:NextBufIndex(s:entrybufindex)
if s:CreateBuffer(s:entrybufname, oldindexe, s:entrybufindex) < 0
let s:entrybufindex = oldindexe
return -1
endif
let b:group = a:group
let b:word = ''
endif
let oldindexc = s:contentbufindex
let s:contentbufindex = s:NextBufIndex(s:contentbufindex)
if s:CreateBuffer(s:contentbufname, oldindexc, s:contentbufindex) < 0
call s:Quit()
let s:entrybufindex = oldindexe
let s:contentbufindex = oldindexc
return -1
endif
if g:eblook_contentwin_height == 0
resize
elseif g:eblook_contentwin_height > 0
execute 'resize' g:eblook_contentwin_height
endif
let b:group = a:group
" eblook内でエラーが発生して、結果が無い状態でstatuslineを表示しようとして
" Undefined variable: b:captionエラーが発生するのを回避
let b:caption = ''
let b:dtitle = ''
if s:GoWindow(1) < 0
call s:Quit()
let s:entrybufindex = oldindexe
let s:contentbufindex = oldindexc
return -1
endif
execute 'resize' g:eblook_entrywin_height
return 0
endfunction
" entryバッファかcontentバッファのいずれかを作る
" @param bufname s:entrybufnameかs:contentbufnameのいずれか
" @param oldindex 現在のentry,contentバッファのインデックス番号
" @param newindex 作成するentry,contentバッファのインデックス番号
function! s:CreateBuffer(bufname, oldindex, newindex)
let oldbufname = a:bufname . a:oldindex
let newbufname = a:bufname . a:newindex
if bufexists(newbufname)
let bufexists = 1
else
let bufexists = 0
endif
if s:SelectWindowByName(oldbufname) < 0
if s:OpenWindow('split ' . newbufname) < 0
return -1
endif
else
silent execute "edit" newbufname
endif
setlocal modifiable
if bufexists
silent %d _
endif
return 0
endfunction
" entryバッファとcontentバッファの高さを返す
function! s:GetWinHeights()
let curbuf = bufnr('')
if s:GoWindow(0) < 0
let content_winheight = -1
else
let content_winheight = winheight(0)
endif
if s:GoWindow(1) < 0
let entry_winheight = -1
else
let entry_winheight = winheight(0)
endif
execute bufwinnr(curbuf) . 'wincmd w'
return [curbuf, content_winheight, entry_winheight]
endfunction
" entryバッファとcontentバッファの高さを復元する
function! s:RestoreWinHeights(winheights)
let content_winheight = a:winheights[1]
if content_winheight > 0
if s:GoWindow(0) >= 0
execute 'resize' content_winheight
endif
endif
let entry_winheight = a:winheights[2]
if entry_winheight > 0
if s:GoWindow(1) >= 0
execute 'resize' entry_winheight
endif
endif
let curbuf = a:winheights[0]
execute bufwinnr(curbuf) . 'wincmd w'
endfunction
" entryバッファの指定行に対応する内容をcontentバッファに表示する
" @param count 対象の行番号。0の場合は現在行
" @return -1:content表示失敗, 0:表示成功
function! s:GetContent(count)
if a:count > 0
call cursor(a:count, 1)
call search("\t")
endif
let lnum = line('.')
let str = getline(lnum)
let title = matchstr(str, '^[^\t]\+')
if strlen(title) == 0
return -1
endif
let dnum = s:GetDictNumFromTitle(b:group, title)
if dnum < 0
return -1
endif
let ref = get(b:refs, lnum - 1)
if type(ref) != type([])
return -1
endif
let refid = ref[0]
if s:GoWindow(0) < 0
return -1
endif
let b:caption = ref[1]
let b:dtitle = title
let b:dictnum = dnum
let b:refid = refid
call s:GetContentSub(0)
call s:GoWindow(1)
return 0
endfunction
function! s:IsEblookDecorate()
if !exists('g:eblook_decorate')
if s:IsEblookMediaVersion()
let g:eblook_decorate = 1
else
let g:eblook_decorate = 0
endif
endif
return g:eblook_decorate
endfunction
" contentを取得してcontentバッファに表示する
" @param doformat 整形するかどうか
function! s:GetContentSub(doformat)
setlocal modifiable
silent %d _
let dictlist = s:GetDictList(b:group)
let dict = dictlist[b:dictnum]
execute 'redir! >' . s:cmdfile
silent echo 'set max-text 0'
if s:IsEblookDecorate()
silent echo 'set decorate-mode on'
endif
if exists("dict.book")
silent echo 'book ' . s:MakeBookArgument(dict)
endif
silent echo 'select ' . dict.name
silent echo 'content ' . b:refid . "\n"
redir END
call s:ExecuteEblook()
"return 0 " DEBUG: 整形前の内容を確認する
silent! :g/eblook> /s///g
if search('<gaiji=', 'nw') != 0
call s:ReplaceGaiji(dict)
endif
call s:ReplaceUnicode()
call s:FormatDecorate(0)
silent! :g/^$/d _
call s:FormatReference()
if exists('dict.autoformat')
if dict.autoformat
call s:FormatContent()
elseif g:eblook_decorate
call s:FormatIndent()
endif
elseif a:doformat || g:eblook_autoformat_default
call s:FormatContent()
elseif g:eblook_decorate
call s:FormatIndent()
endif
setlocal nomodifiable
normal! 1G
if search('.', 'w') > 0 " any result?
let maxover = len(s:visited) - g:eblook_visited_max + 1
if maxover > 0
unlet s:visited[:maxover]
endif
call add(s:visited, b:dtitle . "\t" . b:refid)
endif
endfunction
" decorateタグを整形する
" @param dropind <ind=[0-9]>を削除するかどうか
function! s:FormatDecorate(dropind)
if g:eblook_decorate
" 未対応のタグは削除
silent! :g/<\/\?no-newline>/s///g
call s:ReplaceTag() " <sup>,<sub>
" <em>,<font=bold>,<font=italic>のsyntax対応
if g:eblook_decorate_syntax
" 短縮形式に置換。長いと行分割に影響が大きいので
silent! :g/<font=bold>/s//<b>/g
silent! :g/<font=italic>/s//<i>/g
silent! :g/<\/font>/s//<\/f>/g
" OALD8だと<b><b>xxx</f></f>等があるが、syntaxで対応するのは面倒なので
silent! :%s/<b><b>\(\_.\{-}\)<\/f>/<b>\1/g
silent! :%s/<i><i>\(\_.\{-}\)<\/f>/<i>\1/g
" 1文字ずつ<em>は無駄に長くて、concealすると表示との不一致が大きいので。
" 「<em>単</em><em>語</em>」→「<em>単語</em>」
silent! :g/<\/em><em>/s///g
else
silent! :g/<\/\?em>/s///g
silent! :g/<font=\%(bold\|italic\)>/s///g
silent! :g/<\/font>/s///g
endif
if a:dropind
silent! :g/<ind=[0-9]>/s///g
endif
endif
endfunction
" 上付き文字(<sup>1</sup>)、下付き文字<sub>を置き換える
function! s:ReplaceTag()
" utf-8表示時は、<sup>1</sup>の置換を行う。
" g:eblook_decorate_supsub時は、^{}や_{}への置換を行う。
if s:utf8display || g:eblook_decorate_supsub
" 新英和・和英中辞典のmarshalで、禁則がらみで<sub>と<no-newline>が混ざって、
" 下付き文字がばらばらになってて見にくいので、
" <no-newline>削除後に<sub>を1つにする。
" 例:<no-newline>(<sub>げ</sub></no-newline><sub>んす</sub><no-newline><sub>い</sub>), </no-newline>
" を、「(_{げ}_{んす}_{い}), 」でなく「(_{げんすい}), 」にする。
silent! g/<\/sub><sub>/s///g
silent! g/<\/sup><sup>/s///g
silent! g/<sup>\([^<]*\)<\/sup>/s//\=s:GetReplaceTagStr('sup', submatch(1))/g
silent! g/<sub>\([^<]*\)<\/sub>/s//\=s:GetReplaceTagStr('sub', submatch(1))/g
else
silent! g/<\/\?su[pb]>/s///g
endif
endfunction
" タグの置換文字列を取得する。
" @param tag タグ。'sup'か'sub'
" @param str 元の文字列
" @return 置換文字列
function! s:GetReplaceTagStr(tag, str)
if s:utf8display && has_key(g:eblook#supsubmap_utf8#{a:tag}map, a:str)
return get(g:eblook#supsubmap_utf8#{a:tag}map, a:str, a:str)
elseif g:eblook_decorate_supsub
if a:tag == 'sup'
return '^{' . a:str . '}'
else
" XXX:未対応外字置換の_とぶつかる可能性あり
return '_{' . a:str . '}'
endif
else
return a:str
endif
endfunction
" <gaiji=xxxxx>を置き換える。
function! s:ReplaceGaiji(dict)
let gaijimap = s:GetGaijiMap(a:dict)
silent! :g/<gaiji=\([^>]*\)>/s//\=s:GetGaiji(gaijimap, submatch(1))/g
endfunction
" 外字置換表を取得する
" @param dict 辞書
" @return 外字置換表
function! s:GetGaijiMap(dict)
if !exists("a:dict.gaijimap")
try
let a:dict.gaijimap = s:LoadGaijiMapFile(a:dict)
catch /load-error/
" ウィンドウを閉じて空きを作って再度検索し直した時に外字取得できるように
return {}
endtry
endif
return a:dict.gaijimap
endfunction
" EBWin形式の外字定義ファイルを読み込む
" http://hishida.s271.xrea.com/manual/EBPocket/0_0_4_4.html
" @param dict 辞書
" @return 読み込んだ外字置換表。{'ha121':[unicode, ascii], ...}
function! s:LoadGaijiMapFile(dict)
let name = a:dict.name
let dir = matchstr(a:dict.book, '"\zs[^"]\+\ze"\|\S\+')
" "{dir}/{NAME}_{encoding}.map"が無ければ"{dir}/{NAME}.map"をcp932で読み込み
let mapfilebase = dir . '/' . toupper(name)
let enc = &termencoding
if enc == ''
let enc = &encoding
endif
let encmapfile = mapfilebase . '_' . enc . '.map'
let mapfile = mapfilebase . '.map'
let gaijimap = {}
if filereadable(encmapfile)
let mapfile = encmapfile
elseif filereadable(mapfile)
let enc = 'cp932'
else
return gaijimap
endif
" 現在のウィンドウ(entry/content)の高さが足りない場合、
" OpenWindow()により、高さに余裕のあるウィンドウ上でsviewする可能性があるので
" closeした後で元のウィンドウに明示的に切り替える必要あり
let save_winheights = s:GetWinHeights() " ファイルOpen、Close後に高さを戻す
if s:OpenWindow('1sview ++enc=' . enc . ' ' . mapfile) < 0
throw 'load-error'
endif
setlocal buftype=nowrite
setlocal bufhidden=wipe
setlocal nobuflisted
for line in getline(1, '$')
if line !~ '^[hzcg]\x\{4}'
continue
endif
" 例: hA121 u00E0 a # comment
let lst = split(line)
let gaiji = tolower(get(lst, 0))
let unicode = get(lst, 1, '-')
let ascii = get(lst, 2, '')
if &encoding ==# 'utf-8'
let unicode = substitute(unicode, ',', '', 'g')
let unicode = substitute(unicode, 'u\(\x\{4}\)', '\=nr2char("0x" . submatch(1))', 'g')
endif
let gaijimap[gaiji] = [unicode, ascii]
endfor
bwipeout!
call s:RestoreWinHeights(save_winheights)
return gaijimap
endfunction
" 外字置換文字列を取得する。
" @param gaijimap 外字置換表
" @param key 外字キー
" @return 置換文字列
function! s:GetGaiji(gaijimap, key)
" XXX:GetGaiji()内からGetGaijiMap()を呼びたいが、
" substitute()で\=が再帰的に呼ばれる形になってしまうため動作せず
if !exists("a:gaijimap[a:key]")
return '_'
"return '_' . a:key . '_' " DEBUG
endif
let gaiji = a:gaijimap[a:key]
if s:utf8display
let res = gaiji[0]
if res ==# 'null'
return ''
elseif res ==# '-'
let res = gaiji[1]
endif
else
let res = gaiji[1]
endif
if strlen(res) == 0
return '_'
"return '_' . a:key . '_' " DEBUG
endif
return res
endfunction
" <unicode>4E2F</unicode>等を置換する
" (LogoVistaの「漢字源 改訂第四版」以降で使用されている)
function! s:ReplaceUnicode()
if s:utf8display
silent! g/<unicode>\([0-9A-F]\+\)<\/unicode>/s//\=s:GetUnicode(submatch(1))/g
else
silent! g/<unicode>\([0-9A-F]\+\)<\/unicode>/s//_/g
endif
" 表の表示(もともとの用途。「ロイヤル英文法」で使用されている)
silent! g/<\/\?unicode>/s///g
endfunction
" <unicode>内の文字列に対する置換文字列を返す
function! s:GetUnicode(code)
" XXX: substitute()内なので再帰的に\=は使えない
let han = []
for c in split(a:code, '\zs')
call add(han, get(s:zen2han, c, c))
endfor
return nr2char('0x' . join(han, ''))
endfunction
" contentバッファ中の<reference>等を短縮形式に置換する
function! s:FormatReference()
let b:contentrefsm = []
" <img=jpeg>...</img=589:334>
silent! :g;<img=\([^>]*\)>\(\_.\{-}\)</img=\([^>]*\)>;s;;\=s:MakeCaptionString(submatch(2), 'img', submatch(1), submatch(3));g
silent! :g;<inline=\([^>]*\)>\(\_.\{-}\)</inline=\([^>]*\)>;s;;\=s:MakeCaptionString(submatch(2), 'inline', submatch(1), submatch(3));g
" <snd=wav:433:2032-535:111>
silent! :g;<snd=\(.\{-}\):\([^>]*\)>\(\_.\{-}\)</snd>;s;;\=s:MakeCaptionString(submatch(3), 'snd', submatch(1), submatch(2));g
" <mov=mpg:590357301,590357297,590488370,590684976>
silent! :g;<mov=\(.\{-}\):\([^>]*\)>\(\_.\{-}\)</mov>;s;;\=s:MakeCaptionString(submatch(3), 'mov', submatch(1), submatch(2));g
let b:contentrefs = []
silent! :g;<reference>\(.\{-}\)</reference=\(\x\+:\x\+\)>;s;;\=s:MakeReferenceString(submatch(1), submatch(2));g
" /のhistoryに<reference>\(.\{-}\)</reference=\(\x\+:\x\+\)>が出ないように
call histdel('/', -1)
endfunction
" <img>等のcaptionを〈〉等でくくる。
" <img>等のタグはconcealにするので画像なのか音声/動画なのかを識別できるように。
" @param caption caption文字列。空文字列の可能性あり
" @param tag captionの種類:'inline','img','snd','mov'
" @return 整形後の文字列
function! s:MakeCaptionString(caption, tag, ftype, addr)
let len = strlen(a:caption)
" captionが空の場合は補完:
" eblook 1.6.1+mediaで『理化学辞典第5版』を表示した場合、
" 数式部分でcaptionが空の<inline>が出現。非表示にすると
" 文章がつながらなくなる。(+media無しのeblookの場合は<img>で出現)
if a:tag ==# 'img' || a:tag ==# 'inline'
let markbeg = '〈'
let capstr = (len ? a:caption : '画像')
let markend = '〉'
elseif a:tag ==# 'snd'
let markbeg = '《'
let capstr = (len ? a:caption : '音声')
let markend = '》'
elseif a:tag ==# 'mov'
let markbeg = '《'
let capstr = (len ? a:caption : '動画')
let markend = '》'
else
return a:cation
endif
call add(b:contentrefsm, [a:ftype, a:addr, capstr])
return '<' . len(b:contentrefsm) . markbeg . capstr . markend . '>'
endfunction
" '<reference>caption</reference=xxxx:xxxx>'を
" '<1|caption|>'だけにした文字列を返す。
" concealしても表示されないだけで、整形時にはカウントされているので、
" <reference></reference=xxxx:xxxx>だと長すぎて、
" 行の折り返しがかなり早めにされているように見えるので。
" @param caption caption文字列。空文字列の可能性あり
" @param addr reference先アドレス文字列
" @return 変換後の文字列
function! s:MakeReferenceString(caption, addr)
let len = strlen(a:caption)
let capstr = len ? a:caption : '参照'
call add(b:contentrefs, [a:addr, capstr])
return '<' . len(b:contentrefs) . s:Visited(b:dtitle, a:addr) . capstr . '|>'
endfunction
" 訪問済リンクかどうか調べて、'!'か'|'を返す
function! s:Visited(title, addr)
if match(s:visited, a:title . "\t" . a:addr) >= 0
return '!'
else
return '|'
endif
endfunction
" entryバッファの参照先文字列の置換用関数
function! s:MakeEntryReferenceString(title, addr, caption)
call add(b:refs, [a:addr, a:caption])
return a:title . "\t<" . len(b:refs) . s:Visited(a:title, a:addr) . a:caption . '|>'
endfunction
" entryバッファ上からcontentバッファを整形する
function! s:GetAndFormatContent()
let save = g:eblook_autoformat_default
let g:eblook_autoformat_default = 1
if s:GetContent(0) < 0
let g:eblook_autoformat_default = save
return -1
endif
let g:eblook_autoformat_default = save
call s:GoWindow(1)
endfunction
" <ind=[1-9]>で指定されるindent量を使用して現在行をindnet
" @param indcur 現在のindent量
function! s:FormatHeadIndent(indcur)
let ind = a:indcur
let indnew = matchstr(getline('.'), '^<ind=\zs[0-9]\ze>')
" 行頭に<ind=>がある場合は、indent量を更新
while indnew != ''
let ind = indnew
s/^<ind=[0-9]>//
call histdel('/', -1)
" ^<ind=1><ind=3>のような場合があるのでループしてチェック
let indnew = matchstr(getline('.'), '^<ind=\zs[0-9]\ze>')
endwhile
if ind > g:eblook_decorate_indmin
s/^/\=printf('%*s', ind - g:eblook_decorate_indmin, '')/
call histdel('/', -1)
endif
return ind
endfunction
" contentバッファ内の<ind=[1-9]>を整形する
function! s:FormatIndent()
silent! :g/^<\%(next\|prev\)>/s/^/<ind=0>/
let ind = 0
let lnum = 1
let lastline = line('$')
while lnum <= lastline
call cursor(lnum, 1)
let ind = s:FormatHeadIndent(ind)
" 行の途中に<ind=>がある場合は、次行以降のindent量を更新
let indnew = matchstr(getline('.'), '<ind=\zs[0-9]\ze>')
while indnew != ''
s/<ind=[0-9]>//
let ind = indnew
let indnew = matchstr(getline('.'), '<ind=\zs[0-9]\ze>')
endwhile
let lnum = lnum + 1
endwhile
endfunction
" contentバッファを整形する
function! s:FormatContent()
let tw = &textwidth
if tw == 0 && &wrapmargin
let tw = winwidth(0) - &wrapmargin
else
let tw = winwidth(0) - 1
endif
if tw <= 0
return
endif
setlocal modifiable
if g:eblook_decorate
silent! :g/^<\%(next\|prev\)>/s/^/<ind=0>/
endif
let ind = 0
normal! 1G$
while 1
if g:eblook_decorate
let ind = s:FormatHeadIndent(ind)
" 行の途中にある<ind=>を考慮して長い行を分割する
normal! ^
while search('<ind=[0-9]>', 'c', line('.')) > 0
let indnew = matchstr(getline('.'), '<ind=\zs[0-9]\ze>')
let vcol = virtcol('.')
if vcol > tw
let startline = line('.')
let stopline = s:FormatLine(ind)
call cursor(startline, 1)
let indline = search('<ind=[0-9]>', 'c', stopline)
s/<ind=[0-9]>//
" <ind=[0-9]>を削った後、再整形のため行結合
if indline < stopline
let n = stopline - indline + 1
execute "normal! " . n . "J"
endif
else
s/<ind=[0-9]>//
endif
let ind = indnew
endwhile
normal! $
endif
if virtcol('$') > tw
call s:FormatLine(ind)
endif
if line('.') == line('$')
break
endif
normal! j$
endwhile
setlocal nomodifiable
normal! 1G
endfunction
" 長い行を分割する。
" @param ind インデント量
" @return 分割後の複数行のうちの最終行の行番号(line('.')と同じ)
function! s:FormatLine(ind)
let first = line('.')
let indprev = matchstr(getline('.'), '^ *')
silent normal! gqq
let last = line('.')
if last == first
return last
endif
" gqqが付けたindentは削除。<ind=[1-9]>をもとにindentを付けるので、余分。
if g:eblook_decorate
if a:ind > g:eblook_decorate_indmin
let indcur = printf('%*s', a:ind - g:eblook_decorate_indmin, '')
else
let indcur = ''
endif
if indcur != indprev
silent! execute (first + 1) . ',' . last . 's/^' . indprev . '/' . indcur . '/'
call cursor(last, 1)
endif
endif
return last
endfunction
" contentバッファ中のカーソル位置付近のreferenceを抽出して、
" その内容を表示する。
" @param count [count]で指定された、表示対象のreferenceのindex番号
function! s:SelectReference(count)
if a:count > 0
let index = a:count
if a:count > len(b:contentrefs)
let index = len(b:contentrefs)
endif
else
let index = s:GetIndex('<\zs\d\+\ze[|!]')
if strlen(index) == 0
return
endif
endif
call s:FollowReference(index, g:eblook_update_entrywin_by_contentwin_link)
endfunction
" contentバッファ中のカーソル位置付近のrefpatを抽出して、
" refpatに含まれるindex番号を返す。
function! s:GetIndex(refpat)
let index = s:GetIndexHere(a:refpat, '.')
if strlen(index) == 0
" 複数行にわたるcaptionの2行目以降で操作した場合でも表示できるようにする
let lnum = search(a:refpat, 'bnW')
if lnum == 0
return ''
endif
let index = s:GetIndexHere(a:refpat, lnum)
if strlen(index) == 0
return ''
endif
endif
return index
endfunction
" contentバッファ中の指定行内でのカーソル位置付近のrefpatを抽出して、
" refpatに含まれるindex番号を返す。
function! s:GetIndexHere(refpat, lnum)
let str = getline(a:lnum)
let index = matchstr(str, a:refpat)
let m1 = matchend(str, a:refpat)
if m1 < 0
return ''
endif
" referenceが1行に2つ以上ある場合は、カーソルが位置する方を使う
let m2 = match(str, a:refpat, m1)
if m2 >= 0
if a:lnum == '.'
let col = col('.')
elseif line('.') > a:lnum
let col = col('$')
else
let col = 1
endif
let offset = strridx(strpart(str, 0, col), '<')
if offset >= 0
let index = matchstr(str, a:refpat, offset)
endif
endif
return index
endfunction
" entryバッファでカーソル行のエントリに含まれるreferenceのリストを表示
" @param count [count]で指定された、表示対象のreferenceのindex番号
function! s:ListReferences(count)
if s:GetContent(0) < 0
return -1
endif
call s:FollowReference(a:count, 1)
endfunction
" referenceをリストアップしてentryバッファに表示し、
" 指定されたreferenceの内容をcontentバッファに表示する。
" @param count [count]で指定された、表示対象のreferenceのindex番号
" @param {Number} withentrybuf entryバッファを作るかどうか
function! s:FollowReference(count, withentrybuf)
let on_contentbuf = exists('b:dtitle')
if s:GoWindow(0) < 0
return
endif
let dnum = b:dictnum
let contentrefs = b:contentrefs
let contentcaption = b:caption
let title = b:dtitle
if s:NewBuffers(b:group, a:withentrybuf) < 0
return -1
endif
if a:withentrybuf
" contentバッファ内のreferenceリストを、entryバッファに表示
let j = 0
while j < len(contentrefs)
let refstr = '<' . (j + 1) . s:Visited(title, contentrefs[j][0]) . contentrefs[j][1] . '|>'
execute 'normal! o' . title . "\<C-V>\<Tab>" . refstr . "\<Esc>"
let j = j + 1
endwhile
let b:refs = contentrefs
let b:word = contentcaption
silent! :g/^$/d _
setlocal nomodifiable
normal! gg
if a:count > 0
call cursor(a:count, 1)
call search("\t")
endif
endif
" content取得事前準備としてb:変数を設定。s:GetContent()と同様
if s:GoWindow(0) < 0
return -1
endif
let b:dictnum = dnum
let b:dtitle = title
let i = a:count
if i < 1
let i = 1
endif
let ref = get(contentrefs, i - 1)
if type(ref) != type([])
return -1
endif
let b:refid = ref[0]
let b:caption = ref[1]
call s:GetContentSub(0)
if a:withentrybuf || !on_contentbuf
call s:GoWindow(1)
endif
endfunction
" contentバッファ中のカーソル位置付近のimg等を抽出して、
" その内容を外部プログラムで表示する。
" @param count [count]で指定された、表示対象のindex番号
function! s:ShowMedia(count)
if a:count > 0
let index = a:count
if a:count > len(b:contentrefsm)
let index = len(b:contentrefsm)
endif
else
let index = s:GetIndex('<\zs\d\+\ze[〈《]')
if strlen(index) == 0
return
endif
endif
let ref = get(b:contentrefsm, index - 1)
if type(ref) != type([])
return
endif
let ftype = ref[0]
let refid = ref[1]
let tmpext = substitute(ftype, ':.*', '', '')
if tmpext ==# 'mono'
let tmpext = 'pbm'
endif
" mspaintはパス区切りが\でないと駄目
let tmpfshell = tempname() . '.' . tmpext
" eblook内ではパス区切りは\では駄目
let tmpfeb = substitute(tmpfshell, '\\', '/', 'g')
let dictlist = s:GetDictList(b:group)
let dict = dictlist[b:dictnum]
execute 'redir! >' . s:cmdfile
if exists("dict.book")
silent echo 'book ' . s:MakeBookArgument(dict)
endif
silent echo 'select ' . dict.name
if tmpext ==# 'pbm'
let m = matchlist(ftype, 'mono:\(\d\+\)x\(\d\+\)')
silent echo 'pbm ' . refid . ' ' . m[1] . ' ' . m[2]
elseif tmpext ==# 'wav'
let m = matchlist(refid, '\(\d\+:\d\+\)-\(\d\+:\d\+\)')
silent echo 'wav ' . m[1] . ' ' . m[2] . ' "' . tmpfeb . '"'
elseif tmpext ==# 'mpg'
let m = matchlist(refid, '\(\d\+\),\(\d\+\),\(\d\+\),\(\d\+\)')
silent echo printf('mpeg %s %s %s %s "%s"', m[1], m[2], m[3], m[4], tmpfeb)
else " bmp || jpeg
silent echo tmpext . ' ' . refid . ' "' . tmpfeb . '"'
endif
redir END
let res = system('"' . g:eblookprg . '" ' . s:eblookopt . ' < "' . s:cmdfile . '"')
let ngmsg = matchstr(res, 'eblook> \zsNG: .*\ze\n')
if v:shell_error || strlen(ngmsg) > 0
echomsg tmpext . 'ファイル抽出失敗: ' . (v:shell_error ? res : ngmsg)
return
endif
if tmpext ==# 'pbm'
let pbm = substitute(res, 'Warning: you should specify a book directory first', '', '')
let pbm = substitute(pbm, 'eblook> ', '', 'g')
let pbm = substitute(pbm, '\%^\n\n', '', '')
execute 'redir! > ' . tmpfshell
silent echon pbm
redir END
endif
let viewer = get(dict, 'viewer_' . tmpext, '')
if strlen(viewer) == 0
let viewer = get(g:eblook_viewers, tmpext, '')
if strlen(viewer) == 0
echomsg tmpext . '用ビューアがg:eblook_viewersに設定されていません'
return
endif
endif
if match(viewer, '%s') >= 0
let cmdline = substitute(viewer, '%s', shellescape(tmpfshell), '')
else
let cmdline = viewer . ' ' . shellescape(tmpfshell)
endif
" hit-enter promptが出ると面倒なのでsilent
execute 'silent !' . cmdline
endfunction
" バッファのヒストリをたどる。
" @param dir -1:古い方向へ, 1:新しい方向へ
function! s:History(dir)
" eblook_update_entrywin_by_contentwin_linkが1の場合は、
" entryバッファとcontentバッファは一対で扱う。
if g:eblook_update_entrywin_by_contentwin_link
if a:dir > 0
let ni = s:NextBufIndex(s:entrybufindex)
if !bufexists(s:entrybufname . ni) || !bufexists(s:contentbufname . ni)
echomsg 'eblook-vim: 次のバッファはありません'
return
endif
else
let ni = s:PrevBufIndex(s:entrybufindex)
if !bufexists(s:entrybufname . ni) || !bufexists(s:contentbufname . ni)
echomsg 'eblook-vim: 前のバッファはありません'
return
endif
endif
let ni = s:HistoryBuf(a:dir, s:entrybufname, s:entrybufindex)
if ni >= 0
let s:entrybufindex = ni
endif
let ni = s:HistoryBuf(a:dir, s:contentbufname, s:contentbufindex)
if ni >= 0
let s:contentbufindex = ni
endif
call s:GoWindow(1)
return
endif
if exists('b:dtitle') " contentbuf?
let ni = s:HistoryBuf(a:dir, s:contentbufname, s:contentbufindex)
if ni >= 0
let s:contentbufindex = ni
endif
else
let ni = s:HistoryBuf(a:dir, s:entrybufname, s:entrybufindex)
if ni >= 0
let s:entrybufindex = ni
endif
endif
endfunction
" entrybuf/contentbufのヒストリをたどる。
" @param dir -1:古い方向へ, 1:新しい方向へ
function! s:HistoryBuf(dir, bufname, bufindex)
if a:dir > 0
let ni = s:NextBufIndex(a:bufindex)
if !bufexists(a:bufname . ni)
echomsg 'eblook-vim: 次のバッファはありません'
return -1
endif
else
let ni = s:PrevBufIndex(a:bufindex)
if !bufexists(a:bufname . ni)
echomsg 'eblook-vim: 前のバッファはありません'
return -1
endif
endif
if s:SelectWindowByName(a:bufname . a:bufindex) < 0
call s:OpenWindow('split ' . a:bufname . ni)
else
silent execute "edit " . a:bufname . ni
endif
return ni
endfunction
" バッファの次のインデックス番号を返す
" @param oldbufindex 現在のインデックス番号
" @return バッファの次のインデックス番号
function! s:NextBufIndex(oldbufindex)
let i = a:oldbufindex + 1
if i > g:eblook_history_max
let i = 1
endif
return i
endfunction
" バッファの前のインデックス番号を返す
" @param oldbufindex 現在のインデックス番号
" @return バッファの前のインデックス番号
function! s:PrevBufIndex(oldbufindex)
let i = a:oldbufindex - 1
if i < 1
let i = g:eblook_history_max
endif
return i
endfunction
" entryウィンドウとcontentウィンドウを隠す
function! s:Quit()
if has("gui_running")
unmenu PopUp.[eblook]\ Back
unmenu PopUp.[eblook]\ Forward
unmenu PopUp.[eblook]\ SearchVisual
unmenu PopUp.-SEP_EBLOOK-
endif
if s:SelectWindowByName(s:contentbufname . s:contentbufindex) >= 0
hide
endif
if s:SelectWindowByName(s:entrybufname . s:entrybufindex) >= 0
hide
endif
call delete(s:cmdfile)
endfunction
" entryウィンドウからcontentウィンドウをスクロールする。
" @param down 1の場合下に、0の場合上に。
function! s:ScrollContent(down)
if s:GoWindow(0) < 0
return
endif
if a:down
execute "normal! \<PageDown>"
else
execute "normal! \<PageUp>"
endif
call s:GoWindow(1)
endfunction
" entryウィンドウ/contentウィンドウに移動する
" @param to_entry_buf 1:entryウィンドウに移動, 0:contentウィンドウに移動
function! s:GoWindow(to_entry_buf)
if a:to_entry_buf
let bufname = s:entrybufname . s:entrybufindex
else
let bufname = s:contentbufname . s:contentbufindex
endif
if s:SelectWindowByName(bufname) < 0
if s:OpenWindow('split ' . bufname) < 0
return -1
endif
endif
return 0
endfunction
" contentウィンドウの高さを最大化する
" @param on_entry_buf 1:entryウィンドウ上で実行, 0:contentウィンドウ上で実行
function! s:MaximizeContentHeight(on_entry_buf)
if a:on_entry_buf == 0
call s:GoWindow(1)
endif
" entryウィンドウのwinheightを保存
if !exists('b:winheight')
let b:winheight = winheight(0)
endif
if s:GoWindow(0) < 0
return
endif
" contentウィンドウのwinheightを保存
if !exists('b:winheight')
let b:winheight = winheight(0)
endif
resize
call s:GoWindow(a:on_entry_buf)
endfunction
" entryバッファとcontentバッファの高さを復元する
" @param on_entry_buf 1:entryウィンドウ上で実行, 0:contentウィンドウ上で実行
function! s:LoadWinHeights(on_entry_buf)
if a:on_entry_buf == 0 || s:GoWindow(0) >= 0
call s:LoadContentWinHeight()
endif
if s:GoWindow(1) >= 0
" LoadContentWinHeightでウィンドウ最大化の可能性があるので、その後で実行
call s:LoadEntryWinHeight()
endif
call s:GoWindow(a:on_entry_buf)
endfunction
" contentウィンドウの高さを復元する
function! s:LoadContentWinHeight()
if exists('b:winheight')
let content_winheight = b:winheight
unlet b:winheight
else
let content_winheight = g:eblook_contentwin_height
endif
if content_winheight == 0
resize
elseif content_winheight > 0
execute 'resize' content_winheight
endif
endfunction
" entryウィンドウの高さを復元する
function! s:LoadEntryWinHeight()
if exists('b:winheight')
let entry_winheight = b:winheight
unlet b:winheight
else
let entry_winheight = g:eblook_entrywin_height
endif
execute 'resize' entry_winheight
endfunction
" title文字列から辞書番号を返す
" @param title 辞書のtitle文字列
" @return 辞書番号
function! s:GetDictNumFromTitle(group, title)
let dictlist = s:GetDictList(a:group)
let i = 0
while i < len(dictlist)
if a:title ==# dictlist[i].title
return i
endif
let i = i + 1
endwhile
return -1
endfunction
" 辞書一覧を表示する
" @param {Number} group 対象の辞書グループ番号
function! eblook#ListDict(group)
let gr = s:ExpandDefaultGroup(a:group)
let dictlist = s:GetDictList(gr)
echo '辞書グループ: ' . gr
" EblookSkipDict等では辞書番号を指定するので、辞書番号付きで表示する
let i = 0
while i < len(dictlist)
let dict = dictlist[i]
let skip = ' '
if get(dict, 'skip')
let skip = 'skip'
endif
let book = get(dict, 'book', '')
let appendix = get(dict, 'appendix', '')
echo skip . ' ' . i . ' ' . dict.title . ' ' . dict.name . ' ' . book . ' ' . appendix
let i = i + 1
endwhile
endfunction
" 辞書をスキップするかどうかを一時的に設定する。
" @param {Number} group 対象の辞書グループ番号
" @param is_skip スキップするかどうか。1:スキップする, 0:スキップしない
" @param ... 辞書番号のリスト
function! eblook#SetDictSkip(group, is_skip, ...)
let dictlist = s:GetDictList(a:group)
for dnum in a:000
let dictlist[dnum].skip = a:is_skip
endfor
endfunction
" 辞書グループの一覧を表示する
" @param {Number} max チェックする辞書グループ番号の最大値
function! eblook#ListGroup(max)
let maxnum = a:max
if maxnum == 0
let maxnum = 99
endif
let i = 1
while i <= maxnum
if exists("g:eblook_dictlist{i}")
let dictlist = g:eblook_dictlist{i}
let titles = []
let skipdicts = 0
let j = 0
while j < len(dictlist)
let dict = dictlist[j]
if get(dict, 'skip')
call add(titles, '(' . dict.title . ')')
let skipdicts += 1
else
call add(titles, dict.title)
endif
let j = j + 1
endwhile
let ndicts = len(dictlist)
if skipdicts > 0
let ndicts .= '(' . skipdicts . ')'
endif
echo i . ' ' . ndicts . ' ' . join(titles, ', ')
endif
let i = i + 1
endwhile
endfunction
" countが指定されていない時に検索対象にする辞書グループ番号を設定する
" @param {Number} group 対象の辞書グループ番号
function! eblook#SetDefaultGroup(group)
if a:group == 0
echomsg 'eblook-vim: g:eblook_group=' . g:eblook_group
else
let g:eblook_group = a:group
endif
endfunction
" group番号が0(未指定)であれば、g:eblook_groupの値を返す。
" (countを指定せずに操作した時に、どの辞書グループが使われたかが、
" ユーザにわかるようにするため)
function! s:ExpandDefaultGroup(group)
if a:group == 0
return g:eblook_group
else
return a:group
endif
endfunction
" SelectWindowByName(name)
" Acitvate selected window by a:name.
function! s:SelectWindowByName(name)
let num = bufwinnr(a:name)
if num > 0 && num != winnr()
execute num . 'wincmd w'
endif
return num
endfunction
" 新しいウィンドウを開く
function! s:OpenWindow(cmd)
if winheight(0) > 2
silent execute a:cmd
return winnr()
else
" 'noequalalways'の場合、高さが足りずにsplitがE36エラーになる場合あるので、
" 一番高さのあるwindowで再度splitを試みる
let maxheight = 2
let maxnr = 0
for i in range(1, winnr('$'))
let height = winheight(i)
if height > maxheight
let maxheight = height
let maxnr = i
endif
endfor
if maxnr > 0
execute maxnr . 'wincmd w'
silent execute a:cmd
return winnr()
else
redraw
echomsg 'eblook-vim: 画面上の空きが足りないため新規ウィンドウを開くのに失敗しました。ウィンドウを閉じて空きを作ってください(:' . a:cmd . ')'
return -1
endif
endif
endfunction
" eblook-vim-1.1.0からの辞書指定形式をペーストする。
" eblook-vim-1.0.5からの形式変換用。
" @param {Number} group 対象の辞書グループ番号
function! eblook#PasteDictList(group)
let gr = s:ExpandDefaultGroup(a:group)
let dictlist = s:GetDictList(gr)
let save_paste = &paste
let &paste = 1
execute 'normal! olet eblook_dictlist' . gr . " = [\<Esc>"
for dict in dictlist
execute 'normal! o'
\ . " \\{ 'title': '" . dict.title . "',\<CR>"
\ . " \\'book': '" . dict.book . "',\<CR>"
\ . " \\'name': '" . dict.name . "',\<Esc>"
if exists('dict.appendix')
execute 'normal! o'
\ . " \\'appendix': '" . dict.appendix . "',\<Esc>"
endif
if exists('dict.skip')
execute 'normal! o'
\ . " \\'skip': " . dict.skip . ",\<Esc>"
endif
execute 'normal! o'
\ . " \\},\<Esc>"
endfor
execute 'normal! o\]' . "\<Esc>"
let &paste = save_paste
endfunction
let &cpo = s:save_cpo
|