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
|
;;; coq-smie.el --- SMIE lexer, grammar, and indent rules for Coq -*- lexical-binding:t -*-
;; This file is part of Proof General.
;; Portions © Copyright 1994-2012 David Aspinall and University of Edinburgh
;; Portions © Copyright 2003-2021 Free Software Foundation, Inc.
;; Portions © Copyright 2001-2017 Pierre Courtieu
;; Portions © Copyright 2010, 2016 Erik Martin-Dorel
;; Portions © Copyright 2011-2013, 2016-2017 Hendrik Tews
;; Portions © Copyright 2015-2017 Clément Pit-Claudel
;; Authors: Pierre Courtieu
;; Stefan Monnier
;; Maintainer: Pierre Courtieu <Pierre.Courtieu@cnam.fr>
;; SPDX-License-Identifier: GPL-3.0-or-later
;;; Commentary:
;; Lexer.
;; Due to the verycomplex grammar of Coq, and to the architecture of
;; smie, we deambiguate all kinds of tokens during lexing. This is a
;; complex piece of code but it allows for all smie goodies.
;; Some examples of deambigations:
;; - We distinguish ":=" from ":= inductive" to avoid the circular precedence
;; constraint ":= < | < ; < :=" where ":= < |" is due to Inductive
;; definitions, "| < ;" is due to tactics precedence, "; < :=" is due to
;; "let x:=3; y:=4 in...".
;; - We distinguish the ".-selector" from the terminator "." for
;; obvious reasons.
;; - We consider qualified.names as one single token for obvious reasons.
;; - We distinguish the "Module M." from "Module M := exp." since the first
;; opens a new scope (closed by End) whereas the other doesn't.
;; - We drop "Program" because it's easier to consider "Program Function"
;; as a single token (which behaves like "Function" w.r.t indentation and
;; parsing) than to get the parser to handle it correctly.
;; - We identify the different types of bullets (First approximation).
;; - We distinguish "with match" from other "with".
;;; Code:
(require 'coq-indent)
(require 'coq-syntax) ;For coq-keywords-save-strict!
(require 'smie)
; debugging
;(defmacro measure-time (&rest body)
; "Measure the time it takes to evaluate BODY."
; `(let ((time (current-time)))
; ,@body
; (message "%.06f" (float-time (time-since time)))))
(defcustom coq-smie-monadic-tokens '((";;" . ";; monadic")("do" . "let monadic")("<-" . "<- monadic")(";" . "in monadic"));
"This contains specific indentation token pairs, similar to
`coq-smie-user-tokens' but dedicated to monadic operators. These
tokens have no builtin syntax except the one defined by this
variable so that users can change the syntax at will.
The default value supports ext-lib (x <- e ;; e) and
CompCert (do x <- e ; e) styles.
There are two types of monadic syntax with specific tokens: one
with a starting token (like do):
\"let monadic\" E \"<- monadic\" E \"in monadic\" E
and the other without:
E \"<- monadic\" E \";; monadic\" E
Th goal of this variable is to give concrete syntax to these
\"xxx monadic\" tokens."
:type '(alist :key-type string :value-type string)
:group 'coq)
(defcustom coq-smie-user-tokens nil
"Alist of (syntax . token) pairs to extend the coq smie parser.
These are user configurable additional syntax for smie tokens. It
allows to define alternative syntax for smie token. Typical
example: if you define a infix operator \"xor\" you may want to
define it as a new syntax for token \"or\" in order to have the
indentation rules of or applied to xor. Other exemple: if you
want to define a new notation \"ifb\" ... \"then\" \"else\" then
you need to declare \"ifb\" as a new syntax for \"if\" to make
indentation work well.
An example of cofiguration is:
(setq coq-smie-user-tokens '((\"xor\" . \"or\") (\"ifb\" . \"if\")))
to have token \"xor\" and \"ifb\" be considered as having
repectively same priority and associativity as \"or\" and \"if\".
For monadic notations, see `coq-smie-monadic-tokens' instead."
:type '(alist :key-type string :value-type string)
:group 'coq)
(defalias 'coq--string-suffix-p
;; Replacement for emacs < 24.4, borrowed from sindikat at
;; stackoverflow efficient if bytecompiled, builtin version is
;; probably better when it exists
(if (fboundp 'string-suffix-p)
'string-suffix-p
(lambda (str1 str2 &optional ignore-case)
"Return non-nil if STR1 is a prefix of STR2.
If IGNORE-CASE is non-nil, the comparison is done without paying
attention to case differences."
(let ((begin2 (- (length str2) (length str1)))
(end2 (length str2)))
(when (< begin2 0) (setq begin2 0)) ; to avoid negative begin2
(eq t (compare-strings str1 nil nil str2 begin2 end2 ignore-case))))))
;; As any user defined notation ending with "." will break
;; proofgeneral synchronization anyway, let us consider that any
;; combination of symbols ending with "." is an end of command for
;; indentation purposes. One noticeable exception is .. that may
;; happen inside notations and is dealt with by pg synchro.
(defun coq-dot-friend-p (s)
(and (not (string-equal ".." s)) ;; string-equal because ... should return t.
(string-match "[^[:word:]]\\.\\'" s)))
; for debuging
(defun coq-time-indent ()
(interactive)
(let ((deb (float-time)))
(smie-indent-line)
(message "time: %S"(- (float-time) deb))))
(defun coq-time-indent-region (beg end)
(interactive "r")
(let ((deb (float-time)))
(indent-region beg end nil)
(message "time: %S"(- (float-time) deb))))
(defun coq-is-inside-enclosing (bound)
(save-excursion
;; This may fail but we need to see where we stopped
(coq-smie-search-token-backward '("#dummy#" "{") bound)
(if (= (point) bound) nil ; we did not cross som paren-like
(let ((backtok (coq-smie-backward-token)))
(cond
((and (string-equal "" backtok) (eq ?| (char-after))(eq ?{ (char-before))) "{|")
((not (string-equal backtok "")) backtok)
(t (char-to-string (char-before))))))))
;; Fragile: users can define tactics with uppercases... Returns t if
;; we are inside a tactic and not inside a record notation. Ideally we
;; would like to know if the interpretation scope is term or tactic
;; (i.e. detect if we are inside a term inside a tactic) but this is
;; almost impossible sytntactically: how to tell the difference
;; between tactics and tacticals? In "repeat (f x)" and "apply (f x)"
;; f x is a tactic (resp. a terms). Only Coq knows, we could analyse
;; coq grammar tacticals. This is not too problematic here since only
;; in records the indentation changes (maily for ";").
(defun coq-smie-is-tactic ()
(let* (;; (pos (point))
(cmdstrt (save-excursion (coq-find-real-start)))
(enclosing (coq-is-inside-enclosing cmdstrt)))
(cond
((string-equal enclosing "{|") nil) ;; only records
((and enclosing (string-match "{" enclosing)) nil) ;; more agressive: record-like notations
(t (save-excursion
(goto-char cmdstrt)
(let ((case-fold-search nil))
(not (looking-at "[[:upper:]]"))))))))
(defun coq-smie-is-ltacdef ()
(let ((case-fold-search nil))
(save-excursion
(coq-find-real-start)
(looking-at "\\(\\(Local\\|Global\\)\\s-+\\)?\\(Ltac2?\\|Tactic\\s-+Notation\\)\\s-"))))
(defun coq-smie-is-inside-parenthesized-tactic ()
(and (coq-smie-is-tactic) ;; fragile (uppercase test only)
(save-excursion
(let ((pt (point))
;; we need to go one character forwardto avoid the
;; coq-smie-search-token-backward below to fail on "{"
(strt (and (coq-script-parse-cmdend-backward)
(+ 1 (point)))))
(goto-char pt)
;; looking for a dummy token to see if we fail before reaching
;; strt, which means that we were in a prenthesized expression.
(coq-smie-search-token-backward '("#dummy#") strt)
(> (point) strt)))))
(defun coq-smie-.-deambiguate ()
"Return the token of the command terminator of the current command.
For example in:
Proof. or Proof with ... .
the token of the \".\" is \". proofstart\".
But in
intros. or Proof foo.
the token of \".\" is simply \".\"."
(save-excursion
(let ((p (point)))
(coq-find-real-start) ; Move to real start of command.
(cond
((looking-at "BeginSubproof\\>") ". proofstart")
((looking-at "Proof\\>")
(forward-char 5)
(forward-comment (point-max))
(if (looking-at "\\.\\|with\\|using") ". proofstart" "."))
((or (looking-at "Next\\s-+Obligation\\>")
(coq-smie-detect-goal-command))
(save-excursion
(goto-char (+ p 1))
(let ((tok (smie-default-forward-token)))
(cond
;; If the next token is "Proof", then the current command does
;; introduce a proof, but the user opted to use the explicit
;; "Proof" command, so the current command doesn't itself start
;; the proof.
((equal tok "Proof") ".")
;; If the next command is a new definition, then the current
;; command didn't actually start a proof!
((member tok '("Let" "Definition" "Inductive" "Fixpoint")) ".")
(t ". proofstart")))))
((equal (coq-smie-module-deambiguate) "Module start")
". modulestart")
(t ".")))))
(defun coq-smie-complete-qualid-backward ()
"Return the qualid finishing at the current point."
(let ((p (point)))
(re-search-backward "[^.[:alnum:]_@]")
(forward-char 1)
(buffer-substring (point) p)))
(defun coq-smie-find-unclosed-match-backward ()
(let ((tok (coq-smie-search-token-backward '("with" "match" "lazymatch" "multimatch" "lazy_match" "mult_match" "."))))
(cond
((null tok) nil)
((equal tok ".") nil)
((equal tok "with")
(coq-smie-find-unclosed-match-backward)
(coq-smie-find-unclosed-match-backward))
(t t) ;; all variants of match
)))
;; point supposed to be at start of the "with"
(defun coq-smie-with-deambiguate()
(let ((p (point)))
(if (coq-smie-find-unclosed-match-backward)
"with match"
(goto-char p)
(coq-find-real-start)
(cond
((looking-at "\\(Co\\)?Inductive") "with inductive")
((looking-at "\\(Co\\)?Fixpoint\\|Function\\|Program\\|Lemma") "with fixpoint")
((looking-at "Module\\|Declare") "with module")
(t "with")))))
;; A variant of smie-default-backward-token that recognize "." and ";"
;; as single token even if glued at the end of another symbols.
(defun coq-backward-token-fast-nogluing-dot-friends ()
(forward-comment (- (point)))
(let* ((pt (point))
(tok-punc (skip-syntax-backward "."))
(str-punc (buffer-substring-no-properties pt (point))))
(if (zerop tok-punc) (skip-syntax-backward "w_'"))
;; Special case: if the symbols found end by "." or ";",
;; then consider this last letter alone as a token
(when (and (not (zerop tok-punc)) (string-match "\\s.+[.;]" str-punc))
(skip-syntax-forward ".")
(forward-char -1))
(buffer-substring-no-properties pt (point))))
(defun coq-forward-token-fast-nogluing-dot-friends ()
(forward-comment (point-max))
(let* ((pt (point))
(tok-punc (skip-syntax-forward "."))
(str-punc (buffer-substring-no-properties pt (point))))
(if (zerop tok-punc) (skip-syntax-forward "w_'"))
;; Special case: if the symbols found end by "." or ";",
;; then consider this last letter alone as a token
(when (and (not (zerop tok-punc)) (string-match "\\s.+[.;]" str-punc))
(forward-char -1))
(buffer-substring-no-properties pt (point))))
;; ignore-between is a description of pseudo delimiters of blocks that
;; should be jumped when searching. There is a bad interaction when
;; tokens and ignore-bteween are not disjoint
(defun coq-smie-search-token-forward (tokens &optional end ignore-between)
"Search for one of TOKENS between point and END.
If some enclosing parenthesis is reached, stop there and return nil.
Token \".\" is considered only if followed by a space. Optional
IGNORE-BETWEEN defines opener/closer to ignore during search.
Careful: the search for a opener stays inside the current command (and
inside parenthesis)."
(unless end (setq end (point-max)))
(condition-case nil
(catch 'found
(while (< (point) end)
;; The default lexer is faster and is good enough for our needs.
(let* ((next (coq-forward-token-fast-nogluing-dot-friends))
(parop (assoc next ignore-between)))
; if we find something to ignore, we directly jump to the
; corresponding closer
(if parop
(let ((parops ; corresponding matcher may be a list
(if (listp parop) (cdr parop)
(cons (cdr parop) nil)))) ; go to corresponding closer
(when (member
(coq-smie-search-token-forward
(append parops (cons "." nil))
end ignore-between)
(cons "." nil))
(goto-char (point))
next))
;; Do not consider "." when not followed by a space
(when (or (not (equal next ".")) ; see backward version
(looking-at "[[:space:]]"))
(cond
((and (zerop (length next))
(or (equal (point) (point-max)) ; protecting char-after next line
(equal (char-syntax ?\)) (char-syntax (char-after)))))
(throw 'found nil))
((zerop (length next)) ;; capture other characters than closing parent
;; don't use smmie-forward-sexp here
(let ((forward-sexp-function nil)) (forward-sexp 1)))
((member next tokens) (throw 'found next))))))))
(scan-error nil)))
;; ignore-between is a description of pseudo delimiters of blocks that
;; should be jumped when searching. There is a bad interaction when
;; tokens and ignore-bteween are not disjoint
(defun coq-smie-search-token-backward (tokens &optional end ignore-between)
"Search for one of TOKENS between point and END.
If some enclosing parenthesis is reached, stop there and return nil.
Token \".\" is considered only if followed by a space.
optional IGNORE-BETWEEN defines opener/closer to ignore during
search.
Careful: the search for a opener stays inside the current command (and
inside parenthesis)."
(unless end (setq end (point-min)))
(condition-case nil
(catch 'found
(while (> (point) end)
;; The default lexer is faster and is good enough for our needs.
(let* ((next (coq-backward-token-fast-nogluing-dot-friends))
(parop (rassoc next ignore-between)))
; if we find something to ignore, we directly jump to the
; corresponding openner
(if parop
(let ((parops ; corresponding matcher may be a list
(if (listp (car parop)) (car parop) (cons (car parop) nil))))
; go to corresponding closer or meet "."
(coq-smie-search-token-backward
;; Add "." at the head of the list, since
;; it's more efficient and ordering is ignored anyway.
(cons "." parops)
end ignore-between))
;; Do not consider "." when not followed by a space
;(message "SPACE?: %S , %S , %S" next next (looking-at ".[[:space:]]"))
(when (or (not (equal next "."))
(looking-at "\\.[[:space:]]"))
(cond
((and (zerop (length next))
(or (equal (point) (point-min)) ; protecting char-before next line
(equal (char-syntax ?\() (char-syntax (char-before)))))
(throw 'found nil))
((zerop (length next))
;; don't use smmie-forward-sexp here
(let ((forward-sexp-function nil)) (forward-sexp -1)))
((member next tokens) (throw 'found next))))))))
(scan-error nil)))
(defun coq-lonely-:=-in-this-command ()
"Return t if there is a lonely \":=\" from (point) to end of command.
Non lonely \":=\" are those corresponding to \"let\" or
\"with\" (module declaration) or those inside parenthesis. this
function is used to detect whether a command is a definition or a
proof-mode starter in Coq."
(equal (coq-smie-search-token-forward
'("." ":=") nil
'(("with" . (":=" "signature")) ("let" . "in")))
"."))
;; Heuristic to detect a goal opening command: there must be a lonely
;; ":=" until command end.
;; \\|\\(Declare\\s-+\\)?Instance is not detected as it is not
;; syntactically decidable to know if some goals are created. Same for
;; Program Fixpoint but with Program Next Obligation is mandatory for
;; each goal anyway.
(defun coq-smie-detect-goal-command ()
"Return t if the next command is a goal starting to be indented.
The point should be at the beginning of the command name.
As false positive are more annoying than false negative, return t only
if it is FOR SURE a goal opener. Put a \"Proof.\" when you want to
force indentation."
(save-excursion ; FIXME add other commands that potentialy open goals
(let ((case-fold-search nil))
(when (looking-at "\\(Local\\|Global\\)?\
\\(Definition\\|Lemma\\|Theorem\\|Fact\\|Let\\|Class\
\\|Proposition\\|Remark\\|Corollary\\|Goal\
\\|Add\\(\\s-+Parametric\\)?\\s-+Morphism\
\\|Fixpoint\\)\\>") ;; Yes Fixpoint can start a proof like Definition
(coq-lonely-:=-in-this-command)))))
;; Heuristic to detect a goal opening command: there must be a lonely ":="
(defun coq-smie-module-deambiguate ()
"Return t if the next command is a goal starting command.
The point should be at the beginning of the command name."
(save-excursion ; FIXME Is there other module starting commands?
(let ((case-fold-search nil))
(cond
((looking-back "with\\s-+" nil) "module nodecl") ; Module that is not a declaration keyword (like in with Module)
((looking-at "\\(Module\\|Section\\)\\>")
(if (coq-lonely-:=-in-this-command) "Module start" "Module def"))))))
;(defun coq-smie-detect-module-or-section-start-command ()
; "Return t if the next command is a goal starting command.
;The point should be at the beginning of the command name."
; (save-excursion ; FIXME Is there other module starting commands?
; (when (and (looking-back "with")
; (proof-looking-at "\\(\\(?:Declare\\s-+\\)?Module\\|Section\\)\\>"))
; (coq-lonely-:=-in-this-command))))
(defconst coq-smie-proof-end-tokens
;; '("Qed" "Save" "Defined" "Admitted" "Abort")
(cons "EndSubproof" (remove "End" coq-keywords-save-strict)))
(defun coq-is-at-command-real-start()
(equal (point)
(save-excursion (coq-find-real-start))))
(defun coq-is-bullet-token (tok) (coq--string-suffix-p "bullet" tok))
(defun coq-is-subproof-token (tok) (coq--string-suffix-p "subproof" tok))
(defun coq-is-dot-token (tok) (or (coq--string-suffix-p "proofstart" tok)
(string-equal "." tok)))
(defun coq-is-cmdend-token (tok)
(or (coq-is-bullet-token tok) (coq-is-subproof-token tok) (coq-is-dot-token tok)))
;; Standard synonyms are better here than in the coq-smie-xxxward-token-aux functions.
(defconst coq-standard-token-synonyms
'(
("SuchThat" . ":") ("As" . ":= def") ;; For "Derive foo SuchThat bar As oof".
))
(defun coq-smie-forward-token ()
(let ((tok (coq-smie-forward-token-aux)))
(cond
((assoc tok coq-smie-user-tokens)
(let ((res (assoc tok coq-smie-user-tokens)))
(cdr res)))
((assoc tok coq-smie-monadic-tokens)
(let ((res (assoc tok coq-smie-monadic-tokens)))
(cdr res)))
((assoc tok coq-standard-token-synonyms)
(let ((res (assoc tok coq-standard-token-synonyms)))
(cdr res)))
(tok))))
(defun coq-smie-forward-token-aux ()
(let ((tok (smie-default-forward-token)))
(cond
;; @ may be ahead of an id, it is part of the id.
((and (equal tok "@") (looking-at "[[:alpha:]_]"))
(let ((newtok (coq-smie-forward-token))) ;; recursive call
(concat tok newtok)))
;; detecting if some qualification (dot notation) follows that id and
;; extend it if yes. Does not capture other alphanumerical token (captured
;; below)
((and (string-match "@?[[:alpha:]_][[:word:]]*" tok)
(looking-at "\\.[[:alpha:]_]")
(progn (forward-char 1)
(let ((newtok (coq-smie-forward-token))) ; recursive call
(concat tok "." newtok)))))
((member tok '("." "..."))
;; swallow if qualid, call backward-token otherwise
(cond
((member (char-after) '(?w ?_)) ;(looking-at "[[:alpha:]_]") ;; extend qualifier
(let ((newtok (coq-smie-forward-token))) ;; recursive call
(concat tok newtok)))
(t (save-excursion (coq-smie-backward-token))))) ;; recursive call
((or (string-match coq-bullet-regexp-nospace tok)
(member tok '("=>" ":=" "::=" "exists" "in" "as" "∀" "∃" "→" "∨" "∧" ";"
"," ":" "eval" "return")))
;; The important lexer for indentation's performance is the backward
;; lexer, so for the forward lexer we delegate to the backward one when
;; we can.
(save-excursion (coq-smie-backward-token)))
;; match needs to be catpured now to avoid being catpured by "Com start"
((member tok '("match" "lazymatch" "lazy_match" "multimatch" "multi_match")) "match")
;; detect "with signature", otherwies use coq-smie-backward-token
((equal tok "with")
(let ((p (point)))
(if (equal (smie-default-forward-token) "signature")
"with signature"
(goto-char p)
(save-excursion (coq-smie-backward-token)))))
((member tok '("transitivity" "symmetry" "reflexivity"))
(let ((p (point)))
(if (and (equal (smie-default-forward-token) "proved")
(equal (smie-default-forward-token) "by"))
"xxx provedby"
(goto-char p)
tok))) ; by tactical
((member tok '("Module")) ; TODO: Declare
(let ((pos (point))
(next (smie-default-forward-token)))
(unless (equal next "Type") (goto-char pos))
(save-excursion (coq-smie-backward-token))))
((member tok '("End"))
(save-excursion (coq-smie-backward-token)))
((member tok '("do"))
(save-excursion (coq-smie-backward-token-aux)))
; empty token if a prenthesis is met.
((and (zerop (length tok)) (looking-at "{|")) (goto-char (match-end 0)) "{|")
;; this must be after detecting "{|":
((and (zerop (length tok)) (eq (char-after) ?\{))
(if (equal (save-excursion (forward-char 1) (coq-smie-backward-token))
"{ subproof")
(progn (forward-char 1) "{ subproof")
tok))
((and (zerop (length tok)) (eq (char-after) ?\}))
(if (equal (save-excursion (forward-char 1)
(coq-smie-backward-token))
"} subproof")
(progn (forward-char 1) "} subproof")
tok))
((and (equal tok "|") (eq (char-after) ?\}))
(goto-char (1+ (point))) "|}")
((member tok coq-smie-proof-end-tokens) "Proof End")
((member tok '("Obligation")) "Proof")
;; FIXME: this case should be useless now that we replace
;; smie-default-forward... by a smarter function.
((coq-dot-friend-p tok) ".")
;; Try to rely on backward-token for non empty tokens: bugs (hangs)
;; ((not (zerop (length tok))) (save-excursion (coq-smie-backward-token)))
;; Com start is a token for the first word of a command (provided it is a word)
((save-excursion
(and (smie-default-backward-token)
(coq-is-at-command-real-start)
(> (length tok) 0)
(or (string= "Lu" (get-char-code-property (aref tok 0) 'general-category))
(string= "Ll" (get-char-code-property (aref tok 0) 'general-category)))))
"Com start")
;; return it.
(tok)
)))
(defun coq-is-at-def ()
;; This is very approximate and should be used with care
(let ((case-fold-search nil)) (looking-at coq-command-defn-regexp)))
(defun coq-is-at-def-or-decl ()
;; This is very approximate and should be used with care
(let ((case-fold-search nil))
(or (looking-at coq-command-defn-regexp) (looking-at coq-command-decl-regexp))))
;; ":= with module" is really to declare some sub-information ":=
;; with" is for mutual definitions where both sides are of the same
;; level
(defun coq-smie-:=-deambiguate ()
(let* (;; (orig (point))
(cmdstrt (save-excursion (coq-find-real-start)))
(corresp (coq-smie-search-token-backward
'("let" "Inductive" "CoInductive" "{|" "." "with" "Module" "where"
"Equations")
cmdstrt '((("let" "with") . ":=")))))
(cond
((member corresp '("Equations")) ":= equations")
((equal corresp "with")
(let ((corresptok (coq-smie-with-deambiguate)))
(cond ;; recursive call if the with found is actually et with match
((equal corresptok "with match") (coq-smie-:=-deambiguate))
((equal corresptok "with inductive") ":= inductive")
((equal corresptok "with module") ":= with module")
(t ":=")
)))
((equal corresp "Module")
(let ((p (point)))
(if (equal (smie-default-backward-token) "with")
":= with module"
(goto-char p)
":= module")))
((member corresp '("Inductive" "CoInductive" "Variant")) ":= inductive")
((equal corresp "let") ":= let")
((equal corresp "where") ":= inductive") ;; inductive or fixpoint, nevermind
((or (eq ?\{ (char-before))) ":= record")
((equal (point) cmdstrt)
;; we reached the command start: either we were in an Equation,
;; or the ":=" was inpatter of an Ltac match (pattern the form
;; "| H: T := t |- _"). Toherwise we are probably in a Definition.
(if (or (looking-at "Equations\\|match\\|let")) ":=" ":= def"))
(t ":="))))
(defun coq-smie-semicolon-deambiguate ()
(let* (;; (pos (point))
(cmdstrt (save-excursion (coq-find-real-start)))
(istac (or (coq-smie-is-tactic)
(coq-smie-is-ltacdef)
(coq-smie-is-inside-parenthesized-tactic)))
(enclosing (coq-is-inside-enclosing cmdstrt)))
(cond
(istac "; tactic")
;; looking for a dummy token to see if we fail before reaching
;; strt, which means that we were in a prenthesized expression.
((string-equal enclosing "{ subproof") "; tactic")
((member enclosing '("{" "{|")) "; record")
(t
(if (save-excursion (goto-char cmdstrt) (looking-at "Equations"))
"; equations"
";")))))
(defun coq-smie-backward-token ()
(let ((tok (coq-smie-backward-token-aux)))
(cond
((assoc tok coq-smie-user-tokens)
(let ((res (assoc tok coq-smie-user-tokens)))
(cdr res)))
((assoc tok coq-smie-monadic-tokens)
(let ((res (assoc tok coq-smie-monadic-tokens)))
(cdr res)))
((assoc tok coq-standard-token-synonyms)
(let ((res (assoc tok coq-standard-token-synonyms)))
(cdr res)))
(tok))))
(defun coq-smie-backward-token-aux ()
(let* ((tok (smie-default-backward-token)))
(cond
;; Distinguish between "," from quantification and other uses of
;; "," (tuples, tactic arguments)
;; we cannot distinguish between tuples and tac args, because of:
;; an term (f x , v) and a tactic expecting a tuple (tac x , v)
((equal tok ",")
(save-excursion
(let ((backtok (coq-smie-search-token-backward
'("forall" "∀" "∃" "exists" "|" "match" "lazymatch" "multimatch" "lazy_match" "multi_match" "."))))
(cond
((member backtok '("forall" "∀" "∃")) ", quantif")
((equal backtok "exists") ; there is a tactic called exists
(if (equal (coq-smie-forward-token) ;; recursive call
"quantif exists")
", quantif" tok))
(t tok)))))
; Same for ";" : record field separator, tactic combinator, etc
((equal tok ";")
(save-excursion (coq-smie-semicolon-deambiguate)))
;; trying to discriminate between bollean operator || and tactical ||.
((equal tok "||")
(save-excursion
(let ((backtok (coq-smie-search-token-backward '("." ";" "Ltac" "Ltac2" "(" "[" "{"))))
(cond
((member backtok '("." "Ltac" "Ltac2")) "|| tactic")
((and (equal backtok ";")
(or (forward-char) t)
(equal (coq-smie-backward-token) "; tactic")) ;; recursive
"|| tactic")
;; this is wrong half of the time but should not harm indentation
((and (equal backtok nil) (eq (char-before) '?\()) "||")
((equal backtok nil)
(if (or (eq (char-before) '?\[)
(and (eq (char-before) '?\{)
(equal (coq-smie-backward-token) "{ subproof"))) ;; recursive call
"|| tactic"
"||"))))))
;; This may be part of monadic notation, so detect other uses of "do".
((equal tok "do")
(save-excursion
(forward-char 2)
(smie-default-forward-token)
(smie-default-backward-token)
(if (looking-at "[0-9]") "do ltac"
"do")))
; Same for "->" : rewrite or intro arg or term's implication
; FIXME: user defined arrows will be considered a term
((equal tok "->")
(save-excursion
(let ((backtok (coq-smie-search-token-backward '("intro" "intros" "rewrite" "."))))
(cond
((equal backtok ".") "->")
((equal backtok nil) "->")
(t "-> tactic")))))
;; "<-" is a commonly used token for monadic notations, we should
;; discrimnate between "rewrite ... <-" and other uses of "<-".
((equal tok "<-")
(save-excursion
(let ((backtok (coq-smie-search-token-backward '("intro" "intros" "rewrite" "."))))
(cond
((equal backtok ".") "<-")
((equal backtok nil) "<-")
(t "<- tactic")))))
((equal tok "Module")
(save-excursion
;(coq-find-real-start)
(coq-smie-module-deambiguate)))
;; match needs to be catpured now to avoid being catpured by "Com start"
((member tok '("match" "lazy_match" "lazymatch" "multi_match" "multimatch")) "match")
((equal tok "tryif") "if")
;; rhaaa... Some peolple use "End" as a id...
((equal tok "End")
(if (coq-is-at-command-real-start) "end module" tok))
;; FIXME: this is a parenthesis
((and (equal tok "|") (eq (char-before) ?\{))
(goto-char (1- (point))) "{|")
;; curly braces can be beginproof/endproof or record stuff.
((and (zerop (length tok)) (member (char-before) '(?\{ ?\}))
(save-excursion
(forward-char -1)
(if (and (looking-at "{")
(looking-back "\\(\\[?\\w+\\]?\\s-*:\\s-*\\)" nil t))
(goto-char (match-beginning 0)))
(let ((nxttok (coq-smie-backward-token))) ;; recursive call
(coq-is-cmdend-token nxttok))))
(forward-char -1)
(if (looking-at "}") "} subproof"
(if (and (looking-at "{")
(looking-back "\\(\\[?\\w+\\]?\\s-*:\\s-*\\)" nil t))
(goto-char (match-beginning 0)))
"{ subproof"
))
;; ((and (zerop (length tok)) (member (char-before) '(?\{ ?\}))
;; (save-excursion
;; (forward-char -1)
;; (let ((nxttok (coq-smie-backward-token))) ;; recursive call
;; (coq-is-cmdend-token nxttok))))
;; (forward-char -1)
;; (if (looking-at "{") "{ subproof" "} subproof"))
((and (equal tok ":") (looking-back "\\<\\(constr\\|ltac2?\\|uconstr\\)"
(- (point) 7)))
": ltacconstr")
((member tok '(":=" "::="))
(save-excursion
(save-excursion (coq-smie-:=-deambiguate))))
((equal tok "=>")
(save-excursion
(let ((corresp (coq-smie-search-token-backward
'("|" "match" "lazymatch" "multimatch" "lazy_match" "multi_match" "fun" ".")
nil '((("match" "lazy_match" "multi_match") . "end") ("fun" . "=>")))))
(cond
((member corresp '("fun")) "=> fun") ; fun
(t tok)))))
;; FIXME: no token should end with "." except "." itself
; for "unfold in *|-*."
((member tok '("*." "-*." "|-*." "*|-*."))
(forward-char (- (length tok) 1))
(coq-smie-.-deambiguate))
; for "unfold in *|-*;"
((member tok '("*;" "-*;" "|-*;" "*|-*;"))
;; FIXME; can be "; ltac" too
(forward-char (- (length tok) 1)) "; tactic")
;; bullet detected, is it really a bullet? we have to traverse
;; recursively any other bullet or "n:{" "}". this is the work of
;; coq-empty-command-p
((and (string-match coq-bullet-regexp-nospace tok)
(save-excursion (coq-empty-command-p)))
(concat tok " bullet"))
((and (member tok '("exists" "∃"))
(save-excursion
;; recursive call looking at the ptoken immediately before
(let ((prevtok (coq-smie-backward-token)))
;; => may be wrong here but rare (have "=> ltac"?)
(not (or (coq-is-cmdend-token prevtok)
(member prevtok '("; tactic" "[" "]" "|" "=>")))))))
"quantif exists")
((equal tok "∀") "forall")
((equal tok "→") "->")
((equal tok "∨") "\\/")
((equal tok "∧") "/\\")
((equal tok "with") ; "with" is a nightmare: at least 4 different uses
(save-excursion (coq-smie-with-deambiguate)))
((equal tok "where")
"where")
((and (equal tok "signature")
(equal (smie-default-backward-token) "with"))
"with signature")
((equal tok "by")
(let ((p (point)))
(if (and (equal (smie-default-backward-token) "proved")
(member (smie-default-backward-token)
'("transitivity" "symmetry" "reflexivity")))
"xxx provedby"
(goto-char p)
tok))) ; by tactical
((equal tok "as")
(save-excursion
(let ((prev-interesting
(coq-smie-search-token-backward
'("match" "lazymatch" "multimatch" "lazy_match" "multi_match" "Morphism" "Relation" "." ". proofstart"
"{ subproof" "} subproof" "as")
nil
'((("match" "lazy_match" "multi_match" "let") . "with") ("with" . "signature")))))
(cond
((member prev-interesting '("match" "lazymatch" "multimatch" "lazy_match" "mult_match")) "as match")
((member prev-interesting '("Morphism" "Relation")) "as morphism")
(t tok)))))
((equal tok "return")
(save-excursion
(let ((prev-interesting
(coq-smie-search-token-backward
'("match" "lazymatch" "multimatch" "lazy_match" "multi_match" "Morphism" "Relation" "." ". proofstart")
nil
'((("match" "lazy_match" "multi_match" "let") . "with") ("with" . "signature")))))
(cond
((member prev-interesting '("match" "lazymatch" "multimatch" "lazy_match" "mult_match")) "return match")
(t tok)))))
((equal tok "by")
(let ((p (point)))
(if (and (equal (smie-default-backward-token) "proved")
(member (smie-default-backward-token)
'("transitivity" "symmetry" "reflexivity")))
"xxx provedby"
(goto-char p)
tok))) ; by tactical
((equal tok "eval")
(if (member (save-excursion
(forward-char 4)
(smie-default-forward-token))
'("red" "hnf" "compute" "simpl" "cbv" "lazy" "unfold" "fold" "pattern"))
"eval in" tok))
((equal tok "in")
(save-excursion
(let ((prev-interesting
(coq-smie-search-token-backward
'("let" "match" "lazymatch" "multimatch" "lazy_match" "mult_match" ;"eval" should be "eval in" but this is not supported by search-token-backward
"." )
nil
'((("match" "lazymatch" "multimatch" "lazy_match" "mult_match")
. "with")
(("let") ;"eval"
. "in")))))
(cond
((member prev-interesting '("." nil)) "in tactic")
((equal prev-interesting "let") "in let")
;((equal prev-interesting "eval in") "in eval"); not detectable by coq-smie-search-token-backward
((equal prev-interesting "match") "in match")
(t "in tactic")))))
((and (eq (char-before) ?@) (member (char-syntax (char-after)) '(?w ?_)))
(forward-char -1)
(concat "@" tok))
((member tok coq-smie-proof-end-tokens) "Proof End")
((member tok '("." "..."))
;; Distinguish field-selector "." from terminator "." from module
;; qualifier.
(let ((nxtnxt (char-after (+ (point) (length tok)))))
(if (eq nxtnxt ?\() ". selector"
(if (eq nxtnxt ?}) ;; dot immediately followed by closesubproof.
"."
(if (or (null nxtnxt) (eq (char-syntax nxtnxt) ?\ ))
;; command terminator: ". proofstart" et al
(save-excursion (forward-char (- (length tok) 1))
(coq-smie-.-deambiguate))
(cond
((eq (char-syntax nxtnxt) ?w)
(let ((newtok (coq-smie-complete-qualid-backward)))
;; qualified name
(concat newtok tok)))
(t ". selector"))))))) ;; probably a user defined syntax
((and (and (eq (char-before) ?.) (member (char-syntax (char-after))
'(?w ?_))))
(forward-char -1)
(let ((newtok (coq-smie-backward-token))) ; recursive call
(concat newtok "." tok)))
((member tok '("lazymatch" "lazy_match" "multimatch" "multi_match")) "match")
((coq-dot-friend-p tok) ".")
;; Default fallback for words at command start position: We use a
;; generic "Com start" token, so that everything in the command
;; is considered a child of this token. This makes indentation
;; never look above the current command start (unless indenting
;; the first line of the command). For now we only apply this to
;; things starting with a letter, because the grammar makes use
;; of non letters token and this would hide them. Other
;; exception: Ltac things like "match" and "let' that need to be
;; recognized as such by the grammar.
((and (coq-is-at-command-real-start)
(> (length tok) 0)
(not (member tok '("match" "lazymatch" "let"))) ;; match are already captured
(or (string= "Lu" (get-char-code-property (aref tok 0) 'general-category))
(string= "Ll" (get-char-code-property (aref tok 0) 'general-category))))
"Com start")
(tok))))
(defcustom coq-indent-box-style nil
"If non-nil, Coq mode will try to indent with a box style (SMIE code only).
Box style looks like this:
Lemma foo: forall n,
n = n.
instead of:
Lemma foo: forall n,
n = n."
:type 'boolean
:group 'coq)
(make-variable-buffer-local 'coq-indent-box-style)
(defun coq-indent-safep (indent)
(>= indent 0))
(defcustom coq-indent-proofstart 2
"Number of spaces used to indent after a proof start."
:type 'integer
:group 'coq
:safe #'coq-indent-safep)
(defcustom coq-indent-semicolon-tactical 2
"Number of spaces used to indent after the 1st tactical semicolon of a serie.
If set to 0, indentation is as follows:
tac1;
tac2;
tac3;
tac4.
If set to 2 (default):
tac1;
tac2;
tac3;
tac4."
:type 'integer
:group 'coq
:safe #'coq-indent-safep)
(defcustom coq-indent-modulestart 2
"Number of spaces used to indent after a module or section start."
:type 'integer
:group 'coq
:safe #'coq-indent-safep)
(defcustom coq-smie-after-bolp-indentation 2
"Number of spaces used to indent after a quantifier *not* on its own line.
the number of space is meant \"from the column on which the quantifier
would be if it were on its own line\".
for example, if set to 0 the indentation is as follows:
Lemma foo: forall x:nat,
x <= 0 -> x = 0.
If it is set to 2 (default) it is as follows:
Lemma foo: forall x:nat,
x <= 0 -> x = 0."
:type 'integer
:group 'coq
:safe #'coq-indent-safep)
(defcustom coq-match-indent 2
"Number of space used to indent cases of a match expression.
If the \"|\" separator is used, indentation will be reduced by 2.
For example the default value 2 makes indetation like this:
match n with
O => ...
| S n => ...
end
Typical values are 2 or 4."
:type 'integer
:group 'coq
:safe #'coq-indent-safep)
;; smie grammar. General Remarks.
;; 1. One oddity (a standard one IIUC) is that the "command end token"
;; is considerd a separator. So any command is the child of the
;; previous one. This may lead to strange things wrt to indentation if
;; we don't take care. For instance the following script
;:;
;; Com1 .(1)
;; Definition foo := bar .(2)
;; ...
;; could easily lead to the grammar tree
;;
;; __.(2)
;; .(1) \
;; / \ ...
;; / \
;; Com1 :=
;; / \
;; Def foo bar
;;
;; which means that "(1)" is the parent of ":=", which is the parent
;; of "Def foo". This leads to hell. We need Def to be the parent. But
;; there are hundreds of commands in coq. so we adopt the policy below.
;;
;; 2. the lexer tries to always treat the first word of a command as a
;; dstinguished token "Com start". And a command is of the form ("Com
;; start" exp) in smie grammar. This way the top-node of a command is
;; always this token.
;;
;; This way the above script is parsed as:
;;
;; __.(2)
;; .(1) \
;; / \ ...
;; / \
;; Com1 Com start
;; |
;; :=
;; / \
;; foo bar
;;
;; which is much better. Indenting *inside* a command never looks
;; above its own "Com start". This makes indentation rules much
;; simpler, and hopefully speeds up things too since in practice it
;; means indentation never inspect too far.
;;
;; 3. The only exception to "Com start" token at command start is
;; structuring commands like "Proof" "Module", "{ subproof", bullets,
;; goal selectors.
;;
;; 4. All non-word tokens (in particular bullets) are also not seen as
;; "Com start". Thus user-defined commands (or tactics) starting with
;; a non-word token will probably break indentation.
;;
;; 5. KNOWN BUGS: This does not know about Notations, but users can
;; add new syntax for already defined tokens.
;;
;; 6. BUGS: probably dozens of.
;;
;; TODO: factorize infix operators into a series of "opxx" where "xx"
;; is the coq grammar priority. users could then add there own infix
;; operators in a consistent way.
(defconst coq-smie-grammar
(smie-prec2->grammar
(smie-bnf->prec2
'((exp
(exp ":= equations" exp) (exp ":= def" exp)
(exp ":=" exp) (exp ":= inductive" exp)
(exp "||" exp) (exp "|" exp) (exp "=>" exp) (exp "; equations" exp)
(exp "xxx provedby" exp) (exp "as morphism" exp)
(exp "with signature" exp)
("match" matchexp "with match" exp "end") ;expssss
("let" assigns "in let" exp)
("let monadic" assigns "in monadic" exp)
;;("eval in" assigns "in eval" exp) disabled
("fun" exp "=> fun" exp) ("if" exp "then" exp "else" exp)
("quantif exists" exp ", quantif" exp)
("forall" exp ", quantif" exp)
(exp "<- monadic" exp) (exp ";; monadic" exp)
("(" exp ")") ("{|" exps "|}") ("{" exps "}")
(exp "; tactic" exp) (exp "in tactic" exp) (exp "as" exp)
(exp "by" exp) (exp "with" exp) (exp "|-" exp)
(exp ":" exp) (exp ":<" exp) (exp "," exp)
(exp "->" exp) (exp "<->" exp) (exp "&" exp)
(exp "/\\" exp) (exp "\\/" exp)
(exp "==" exp) (exp "=" exp) (exp "<>" exp) (exp "<=" exp)
(exp "<" exp) (exp ">=" exp) (exp ">" exp)
(exp "=?" exp) (exp "<=?" exp) (exp "<?" exp)
(exp "+" exp) (exp "-" exp)
(exp "*" exp) (exp "&&" exp)
(exp "^" exp)
(exp ": ltacconstr" exp)(exp ". selector" exp)
("Com start" exp)
)
;; Having "return" here rather than as a separate rule in `exp' causes
;; it to be indented at a different level than "with".
(matchexp (exp) (exp "as match" exp) (exp "in match" exp)
(exp "return match" exp) )
(exps (affectrec) (exps "; record" exps))
(affectrec (exp ":= record" exp))
(assigns (exp ":= let" exp) (exp "<- monadic" exp))
;;(assigns "; record" assigns)
(moduledef (moduledecl ":= module" exp))
(moduledecl (exp) (exp ":" moduleconstraint)
(exp "<:" moduleconstraint))
(moduleconstraint
(exp) (exp ":= with module" exp)
(moduleconstraint "with module" "module nodecl" moduleconstraint))
;; To deal with indentation inside module declaration and inside
;; proofs, we rely on the lexer. The lexer detects "." terminator of
;; goal starter and returns the ". proofstart" and ". moduelstart"
;; tokens.
(bloc ("{ subproof" commands "} subproof")
(". proofstart" commands "Proof End")
(". modulestart" commands "end module" exp)
(moduledecl) (moduledef)
(exp))
(commands (commands "." commands)
;(commands ". sameline" commands)
(commands "- bullet" commands)
(commands "+ bullet" commands)
(commands "* bullet" commands)
(commands "-- bullet" commands)
(commands "++ bullet" commands)
(commands "** bullet" commands)
(commands "--- bullet" commands)
(commands "+++ bullet" commands)
(commands "*** bullet" commands)
(commands "---- bullet" commands)
(commands "++++ bullet" commands)
(commands "**** bullet" commands)
;; "with" of mutual definition should act like "."
;; same for "where" (introduction of a notation
;; after a inductive or fixpoint)
(commands "with inductive" commands)
(commands "with fixpoint" commands)
(commands "where" commands)
(bloc)))
;; Resolve the "trailing expression ambiguity" as in "else x -> b".
;; each line orders tokens by increasing priority
;; | C x => fun a => b | C2 x => ...
;;'((assoc "=>") (assoc "|") (assoc "|-" "=> fun")) ; (assoc ", quantif")
'((assoc "- bullet") (assoc "+ bullet") (assoc "* bullet")
(assoc "-- bullet") (assoc "++ bullet") (assoc "** bullet")
(assoc "--- bullet") (assoc "+++ bullet") (assoc "*** bullet")
(assoc "---- bullet") (assoc "++++ bullet") (assoc "**** bullet")
(assoc ".")
(assoc "with inductive" "with fixpoint" "where"))
'((nonassoc "Com start") (assoc ":= equations")
(assoc ":= def" ":= inductive")
(left "|") (assoc "; equations") (assoc "=>") (assoc ":=")
(assoc "as morphism") (assoc "xxx provedby")
(assoc "with signature") (assoc "with match")
(assoc "in let" "in monadic")
(assoc "in eval") (left "=> fun") (left ", quantif") (assoc "then")
(assoc "|| tactic") ;; FIXME: detecting "+ tactic" and "|| tactic" seems impossible
(left "; tactic") (assoc "in tactic") (assoc "as" "by") (assoc "with")
(assoc "|-") (assoc ":" ":<") (left ",")
(assoc "else")
(assoc "->") (assoc "<->")
(left "\\/") (left "&" "/\\")
;; FTR: left (instead of assoc) for "<" makes the hoare triple notation
;; <{ .. }>\n exp \n<{ ... }> indent the two assertions at the same column.
(assoc "==") (assoc "=") (left "<" ">" "<=" ">=" "<>")
(assoc "=?") (assoc "<=?") (assoc "<?")
(assoc ";; monadic") (assoc "<- monadic")
(assoc "^")
(assoc "||") ;; FIXME: detecting "+ tactic" and "|| tactic" seems impossible
;; this make indentation as expected.
(left "+" "-") (left "*") (left "&&")
(assoc ": ltacconstr") (assoc ". selector"))
'((assoc ":" ":<") (left "<"))
'((assoc "Module def")
(assoc "with module" "module nodecl") (assoc ":= module")
(assoc ":= with module") (assoc ":" ":<"))
'((assoc ":= def") (assoc "; record") (assoc ":= record"))))
"Parsing table for Coq. See `smie-grammar'.")
;; FIXME:
; Record rec:Set := {
; fld1:nat;
; fld2:nat;
; fld3:bool
; }.
; FIXME: as is sometimes a "as morphism" but not detected as such
;; Add Parametric Morphism (A : Type) : (mu (A:=A))
;; with signature Oeq ==> Oeq
;; as mu_eq_morphism.
;; FIXME: have a different token for := corresponding to a "fix" (not
;; Fixpoint)
;;Definition join l : key -> elt -> t -> t :=
;; match l with
;; | Leaf => add
;; | Node ll lx ld lr lh => fun x d =>
;; fix join_aux (r:t) : t
;; := match r with <---- ??
;; | Leaf => add x d l
;; Returns the column of the beginning of current atomic tactic (non
;; composed). Returns the command start column if not found.
(defun coq-find-with-related-backward()
(let ((cmd-start (save-excursion (coq-find-real-start))))
(save-excursion
;; no point in going further the start of the command
;; let us find a tactical between it and point
(let ((tok (coq-smie-search-token-backward '(";" "||" "|" "+") cmd-start)))
;; hopefully we found the start of the current (non composed)tactic
;; move point after the token found (if not found it will not move)
(forward-char (length tok))
(forward-comment (point-max)); skip spaces
;; (coq-find-not-in-comment-forward "[^;+[:space:]|]")
(current-column)))))
(defun coq-is-at-first-line-of-def-decl ()
(let ((pt (point)))
(save-excursion
(and
(member (coq-smie-backward-token) '(":" ":="))
(equal (line-number-at-pos) (line-number-at-pos pt))
(or (back-to-indentation) t)
(looking-at "Lemma\\|Defintion\\|Theorem\\|Corollary")))))
;; copied from elixir-smie.el
(defun coq-smie--same-line-as-parent (parent-pos child-pos)
"Return non-nil if PARENT-POS is on same line as CHILD-POS."
(= (line-number-at-pos parent-pos) (line-number-at-pos child-pos)))
(defcustom coq-indent-basic 2
"Basic indentation step.
If nil, default to `proof-indent' if it exists or to `smie-indent-basic'."
:group 'coq-mode
:type '(choice (const :tag "Fallback on global settings" nil)
integer))
;; otherwise there are some glitches
(setq smie-indent-basic coq-indent-basic)
;;;;;;;;;; DEBUG CODE ;;;;;;
;; smie-config-show-indent is sufficient most of the time.
(defun coq-debug-smie--parent (point parent &optional num)
;;refresh highlighting? Not a good idea since this is called several times.
;;(hlt-unhighlight-region)
(let* ((beg (if (listp (car parent)) (caar parent) (car parent)))
(end (cadr parent))
(regi (list (list beg end)))
(tok (car (cddr parent)))
(face (cond
((equal num 1) 'hlt-regexp-level-1)
((equal num 2) 'hlt-regexp-level-2)
(t 'hlt-regexp-level-1))))
;; uncomment to see visually the region
;;(and parent (hlt-highlight-regions regi face))
;;(when end (hlt-highlight-regions (list (list end (+ end 1))) 'hlt-regexp-level-1))
;; and the point considered
(hlt-highlight-regions (list (list point (+ point 1))) 'holiday)))
;; Debugging smie rules calls, needs the highlight library and
;; something like this in .emacs: (require 'highlight)
;; (custom-set-faces '(highlight ((((type x) (class color) (background light)) (:background "Wheat")))))
(defun coq-show-smie--parent (parent token parent-token &optional num msg)
(ignore-errors
(message "%s token: %S ; parent: %S ; parent-token: %S" msg token parent parent-token)
(hlt-unhighlight-region)
(let* ((beg (if (listp (car parent)) (caar parent) (car parent)))
(end (cadr parent))
(regi (list (list beg end)))
;; (tok (car (cddr parent)))
(face (cond
((equal num 2) 'hlt-regexp-level-2)
(t 'hlt-regexp-level-1))))
(and parent (hlt-highlight-regions regi face)))))
;;;;;;;;;; END DEBUG CODE ;;;;;;;;;;;;
(defun coq-indent-categorize-token-after (tk)
"Factorize tokens behaving the same \"smie-rules\"-wise (kind:after)."
(cond
((coq-is-bullet-token tk) "after bullet")
((member tk '("with" ":" "by" "in tactic" "as" ",")) "tactic infix")
((member tk '("<:" "<+" "with module")) "modulespec infix") ;; ":= inductive" ":= module" and other ":= xxx"
((member tk '(":= record")) tk) ;; avoids capture by next case
((string-prefix-p ":= " tk) "after :=")
;; by default we pass the token name, but maybe it would be safer
;; to simply fail, so that we detect missing tokens in this function?
(t tk)))
(defun coq-indent-categorize-token-before (tk)
"Factorize tokens behaving the same \"smie-rules\"-wise (kind:after)."
(cond
((member tk '(". proofstart" ". modulestart")) "dot script parent open")
((member tk '(":" "by" "in tactic" "as" "with" ",")) "tactic infix")
((string-prefix-p ":= " tk) "before :=")
;; by default we pass the token name, but maybe it would be safer
;; to simply fail, so that we detect missing tokens in this function?
(t tk)))
;; ";" is a usual operator, with no indentation
;; it would be like this;
;; foo.
;; foo ;
;; bar ;
;; bar.
;; foo.
;; which is confusing. So we indent the first ";" of a sequence
;; if not already inside an ltacdef of parenthesized tactic:
;; foo ;
;; tac ; <--- indented
;; tac ; <--- no indent
;; [ tac2 ;
;; tac1 ; <-- no indentation here
;; now ( tac3 ; <- neither here
;; tac5) ;
;; ]
(defun coq-smie-ltac-semicol-indent-first (parent-semicol)
(and coq-indent-semicolon-tactical (not parent-semicol)
(not (coq-smie-is-ltacdef))
(not (coq-smie-is-inside-parenthesized-tactic))))
;; this should be called if we already know that parent is a quantif.
(defun coq--prev-quantif-at-indent-p ()
(save-excursion
(coq-smie-search-token-backward '("forall" "quantif exists"))
(equal (current-column) (current-indentation))))
(defcustom coq-indent-align-with-first-arg nil
"Non-nil if indentation should try to align arguments on the first one.
With a non-nil value you get
let x = List.map (fun x -> 5)
my list
whereas with a nil value you get
let x = List.map (fun x -> 5)
my list"
:type 'boolean)
;; to be added to smie-indent-functions: this function deals with
;; arguemtns of functions. Explanation: it is hardcoded in SMIE that a
;; list of expressions (with no separator) is actually a single
;; expression. Thus we need an adhoc treatment to deal with the indentation
;; of arguments if they are not on the same line as the function.
;; Definition foo :=
;; foo x y
;; z t (* align with function foo + 2. *)
;; u v. (* align with arg z on bol of previous line *)
;; More complex:
;; Definition foo :=
;; foo x (y
;; a b)
;; z t (* align with function foo + 2. *)
;; u v. (* align with arg z on bol of previous line *)
;; This function examines these case. The generic situation is this:
;; we want to indent token (tk)
;;
;; ... other sexps? ...
;; (sexp) (se
;; ^ xp) (sexp)
;; | tk
;; | ^
;; | token to indent (tk)
;; |
;; last skipped token (lstk)
;; The function examines the list of sexps on the left of
;; (point) until reaching a beginning of line. Then it tries to
;; determine what the last token skipped (lstk) is:
;; - if none was skipped it means that (tk) is not an argument, so we
;; give up and let the regular indentation do the job.
;; - if (lstk) is still an argument of something above, indentation
;; should align (tk) with (lstk).
;; - if (lstk) is really a function (no more sexp before it) then we
;; should indent from it (+2 in the example above).
;; Remark: Stefan Monier may make this less adhoc some day.
(defun coq-smie--args ()
;; PG specifics: some token are like parenthesis in the grammar but
;; are not paren-characters in the syntax table. ". proofstart" and
;; ". module start" mainly. These tokens need a special treatment.
;; We use coq-find-real-start to avoid crossing them
(let ((limit (save-excursion (coq-find-real-start))))
(unless
(or coq-indent-align-with-first-arg
(nth 8 (syntax-ppss))
(looking-at comment-start-skip)
(looking-at "[ \t]*$") ; tuareg bug #179
;; the current token is a special token corresponding to
;; an ends of command, but it is not recognized as such in
;; the grammar, and the 2 tests below wrongly succeed:
;; this token cannot be an argument of anything.
(member (nth 0 (save-excursion (smie-indent-forward-token)))
'(". proofstart" ". modulestart" "{|" "{|"))
(numberp (nth 1 (save-excursion (smie-indent-forward-token))))
(numberp (nth 2 (save-excursion (smie-indent-backward-token)))))
(save-excursion
(let ((positions nil)
arg)
(while (and (null (car (smie-backward-sexp)))
;; never go beyond the current command start.
;; otherwise things like this:
;; { tac1. }
;; { tac2. }
;; would be detected as function applications.
(>= (point) limit)
(push (point) positions)
(not (smie-indent--bolp))))
(save-excursion
;; Figure out if the atom we just skipped is an argument rather
;; than a function.
(setq arg
(let ((left (smie-backward-sexp)))
(or (null (car left))
(funcall smie-rules-function :list-intro
(funcall smie-backward-token-function))))))
(cond
((null positions)
;; We're the first expression of the list. In that case, the
;; indentation should be (have been) determined by its context.
nil)
(arg ;; There's a previous element, and it's not special
;; (it's not the function), so let's just align with that one.
(goto-char (car positions))
(if (fboundp 'smie-indent--current-column)
(smie-indent--current-column)
(current-column)))
(t ;; There's no previous arg at BOL. Align with the function.
;; TODO: obey boxed style? this was for quantifiers.
(goto-char (car positions))
;; Special case: the function we found is actually next to a command start.
;; We prefer to indent from it.
(when (not (= (save-excursion (back-to-indentation) (point)) (point)))
(let ((left (save-excursion (smie-backward-sexp))))
(if (equal (nth 2 left) "Com start")
(goto-char (nth 1 left)))))
(+ (smie-indent--offset 'args)
;; We used to use (smie-indent-virtual), but that
;; doesn't seem right since it might then indent args less than
;; the function itself.
(if (fboundp 'smie-indent--current-column)
(smie-indent--current-column)
(current-column))))))))))
;; Reminder: (smie-rule-separator kind) only works for *parenthesized* enumerations.
;; and ":= inductive" is not considered a parenthesis so "|" needs special hack
;; below. "," for tuples and for tac args cannot be distinguished, so it cannot be
;; treated like this either.
(defun coq-smie-rules (kind token)
"Indentation rules for Coq. See `smie-rules-function'.
KIND is the situation and TOKEN is the thing w.r.t which the rule applies."
(let ((boxed coq-indent-box-style))
;; smie-rule... short synonyms
(cl-flet ((parent-p (&rest x) (apply 'smie-rule-parent-p x))
(parent (&optional x) (smie-rule-parent x))(hang-p () (smie-rule-hanging-p)))
(pcase (cons kind token)
(`(,_ . (or "; record")) (smie-rule-separator kind)) ;; see also the "before" rule
(`(:elem . basic) (or coq-indent-basic (bound-and-true-p proof-indent) 2))
(`(:elem . arg) (if (smie-rule-prev-p "} subproof") 0 nil)) ;; hack: "{} {}"" not an application
(`(:close-all . ,_) t)
(`(:list-intro . ,_) (member token '("fun" "forall" "quantif exists" "with"))) ;; "Com start"
(`(:after . ,_) ;; indent relative to token (parent of token at point).
(pcase (coq-indent-categorize-token-after token)
("} subproof" 0) ;;shouldn't be captured by (:elem . args)?
(". proofstart" coq-indent-proofstart)
(". modulestart" coq-indent-modulestart)
;; decrement indentation when hanging
((and (or "tactic infix" "after :=") (guard (or (hang-p) (smie-rule-bolp)))) 0)
((and "->" (guard (hang-p))) 0) ((or ":=" "with inductive") 2)
((or "." "; equations" "in let" "in monadic" ";; monadic") 0)
((and "; tactic" (guard (hang-p)) (guard (not (parent-p "Com start")))) 0)
("; tactic" 2);; only applies "after" so when ";" is alone at its line
((guard (string-match "^[^][:alnum:](){}\[]" token)) 2); guessing infix operator.
;;((guard (and (message "################### RULES AFTER:DEFAULTING") nil)) nil)
))
(`(:before . ,_) ; indent token at point itself
(let* ((cat (coq-indent-categorize-token-before token))
(real-start-col (save-excursion (coq-find-real-start) (current-column))))
(pcase cat
;; indenting the ". modulestart" itself, which is a prenthesizing cmd
("dot script parent open" `(column . ,real-start-col))
;; special case for equations, so that "| xxx\n :=" is indented nicely
((and ":=" (guard (and (not (hang-p)) (parent-p "|")))) 4)
("before :=" (parent 2)) ;; ":= xxx" always introduced by a parent
("tactic infix" (parent 2))
("|" (cond ((parent-p ":= inductive" ":= equations") -2)
(t 0)));((parent-p "|") 0)
;; align quantifiers with the previous one
((and(or "forall" "quantif exists")(guard (parent-p "forall" "quantif exists")))
(parent))
((and(or "fun")(guard (parent-p "fun"))) (parent))
;; indent on level after a ";" but only at command level.
((and "; tactic" (guard (parent-p "Com start"))) (parent))
("; record" 0); is also a smie-rule-separator
;; VIRTUAL INDENTATION for "unboxed" indentation: we are in the "before"
;; section, but we compute the indentation for a token NOT appearing at
;; beginning of line. This happens when not indenting the token itself but
;; rather querying its virtual indentation to compute indentation of another
;; (child) token. unbox ==> indent relative to parent.
;; unboxed indent for "{" not at bol:
((and (or "forall" "quantif exists") (guard (and (not (smie-rule-bolp)) (not boxed))))
(parent coq-smie-after-bolp-indentation))
((and (or "[" "{") (guard (not (smie-rule-bolp)))) (parent 2))
((guard (and (smie-rule-prev-p "} subproof" "{ subproof" ".") (not (smie-rule-bolp))))
(cond
((smie-rule-prev-p "} subproof") (parent))
((smie-rule-prev-p "{ subproof") (coq-smie-backward-token) (+ 2 (smie-indent-virtual)))
((smie-rule-prev-p ".") (smie-backward-sexp 'half) (smie-indent-virtual)))))))))))
;;((guard (and (message "################### RULES BEFORE: DEFAULTING") nil)) nil)
(provide 'coq-smie)
;;; coq-smie.el ends here
|