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
|
;;; elm-indent.el --- "semi-intelligent" indentation module for Elm Mode
;; Copyright 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
;; Copyright 1997-1998 Guy Lapalme
;; Copyright 2015 Bogdan Popa
;; Author: 1997-1998 Guy Lapalme <lapalme@iro.umontreal.ca>
;; Keywords: indentation Elm layout-rule
;; Version: 1.2
;; URL: http://www.iro.umontreal.ca/~lapalme/layout/index.html
;; This file is not part of GNU Emacs.
;; This file was adapted from `haskell-indent.el'.
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 's)
(with-no-warnings
(require 'cl))
;;; Customizations
(defgroup elm-indent nil
"Elm indentation."
:group 'elm
:link '(custom-manual "(elm-mode)Indentation")
:prefix "elm-indent-")
(defcustom elm-indent-offset 4
"Indentation of Elm statements with respect to containing block."
:type 'integer
:group 'elm-indent)
(defcustom elm-indent-rhs-align-column 0
"Column on which to align right-hand sides (use 0 for ad-hoc alignment)."
:type 'integer
:group 'elm-indent)
(defcustom elm-indent-look-past-empty-line t
"If nil, indentation engine will not look past an empty line for layout points."
:group 'elm-indent
:type 'boolean)
(defcustom elm-indent-thenelse 0
"If non-zero, \"then\" and \"else\" are indented by that amount."
:group 'elm-indent
:type 'integer)
(defcustom elm-indent-after-keywords
`(("of" ,elm-indent-offset)
("in" ,elm-indent-offset 0)
("{" ,elm-indent-offset)
"if"
"then"
"else"
"let")
"Keywords after which indentation should be indented by some offset.
Each keyword info can have the following forms:
KEYWORD | (KEYWORD OFFSET [OFFSET-HANGING])
If absent OFFSET-HANGING defaults to OFFSET.
If absent OFFSET defaults to `elm-indent-offset'.
OFFSET-HANGING is the offset to use in the case where the keyword
is at the end of an otherwise-non-empty line."
:set-after '(elm-indent-offset)
:group 'elm-indent
:type '(repeat (choice string
(cons :tag "" (string :tag "keyword:")
(cons :tag "" (integer :tag "offset")
(choice (const nil)
(list :tag ""
(integer :tag "offset-pending"))))))))
(defcustom elm-indent-dont-hang '("(")
"Lexemes that should never be considered as hanging."
:group 'elm-indent
:type '(repeat string))
;;; Internals
(defconst elm-indent-start-keywords-re
(concat "\\<"
(regexp-opt '("module" "import" "type" "infix" "infixl" "infixr") t)
"\\>")
"Regexp for keywords to complete when standing at the first word of a line.")
(defvar elm-indent-off-side-keywords-re
(concat "\\<"
(regexp-opt '("let"))
"\\>[ \t]*"))
(defvar elm-indent-last-info nil)
(defvar elm-indent-info)
(defvar elm-indent-current-line-first-ident ""
"Global variable that keeps track of the first ident of the line to indent.")
(defvar elm-indent-inhibit-after-offset nil)
(defun elm-indent-point-to-col (apoint)
"Return the column number of APOINT."
(save-excursion
(goto-char apoint)
(current-column)))
(defun elm-indent-push-col (col &optional name)
"Push indentation information for the column COL.
The info is followed by NAME (if present).
Makes sure that the same indentation info is not pushed twice.
Uses free var `elm-indent-info'."
(let ((tmp (cons col name)))
(if (member tmp elm-indent-info)
elm-indent-info
(push tmp elm-indent-info))))
(defun elm-indent-push-pos (pos &optional name)
"Push indentation information for POS followed by NAME (if present)."
(elm-indent-push-col (elm-indent-point-to-col pos) name))
(defun elm-indent-column+offset (column offset)
(unless offset (setq offset elm-indent-offset))
(setq column (+ column offset)))
(defun elm-indent-push-pos-offset (pos &optional offset)
"Pushes indentation information for the column corresponding to POS
followed by an OFFSET (if present use its value otherwise use
`elm-indent-offset')."
(elm-indent-push-col (elm-indent-column+offset
(elm-indent-point-to-col pos)
offset)))
(defun elm-indent-empty-line-p ()
"Checks if the current line is empty; deals with Bird style scripts."
(save-excursion
(beginning-of-line)
(looking-at "[ \t]*$")))
(defun elm-indent-skip-blanks-and-newlines-forward (end)
"Skip forward blanks, tabs and newlines until END."
(skip-chars-forward " \t\n" end))
(defun elm-indent-skip-blanks-and-newlines-backward (start)
"Skip backward blanks, tabs and newlines up to START."
(skip-chars-backward " \t\n" start))
(defun elm-indent-start-of-def ()
"Return the position of the start of a definition.
The start of a def is expected to be recognizable by starting in column 0,
unless `elm-indent-look-past-empty-line' is nil, in which case we
take a coarser approximation and stop at the first empty line."
(save-excursion
(let ((start-code nil)
(top-col 0)
(save-point (point)))
;; determine the starting point of the current piece of code
(setq start-code (if start-code (1+ start-code) (point-min)))
;; go backward until the first preceding empty line
(forward-line -1)
(while (and (if elm-indent-look-past-empty-line
(or (> (current-indentation) top-col)
(elm-indent-empty-line-p))
(and (> (current-indentation) top-col)
(not (elm-indent-empty-line-p))))
(> (point) start-code)
(= 0 (forward-line -1))))
;; go forward after the empty line
(if (elm-indent-empty-line-p)
(forward-line 1))
(setq start-code (point))
;; find the first line of code which is not a comment
(forward-comment (point-max))
(if (> (point) save-point)
start-code
(point)))))
(defun elm-indent-open-structure (start end)
"If any structure (list or tuple) is not closed, between START and END,
returns the location of the opening symbol, nil otherwise."
(save-excursion
(nth 1 (parse-partial-sexp start end))))
(defun elm-indent-in-string (start end)
"If a string is not closed , between START and END, returns the
location of the opening symbol, nil otherwise."
(save-excursion
(let ((pps (parse-partial-sexp start end)))
(if (nth 3 pps) (nth 8 pps)))))
(defun elm-indent-in-comment (start end)
"Check, starting from START, if END is at or within a comment.
Returns the location of the start of the comment, nil otherwise."
(when (<= start end)
(let (pps)
(cond ((= start end) nil)
((nth 4 (save-excursion (setq pps (parse-partial-sexp start end))))
(nth 8 pps))
;; We also want to say that we are *at* the beginning of a comment.
((and (not (nth 8 pps))
(>= (point-max) (+ end 2))
(nth 4 (save-excursion
(setq pps (parse-partial-sexp end (+ end 2))))))
(nth 8 pps))))))
(defun elm-indent-type-at-point ()
"Return the type of the line (also puts information in `match-data')."
(cond
((elm-indent-empty-line-p) 'empty)
((elm-indent-in-comment (point-min) (point)) 'comment)
((looking-at "\\(\\([[:alpha:]]\\(\\sw\\|'\\)*\\)\\|_\\)[ \t\n]*") 'ident)
((looking-at "\\(|[^|]\\)[ \t\n]*") 'guard)
((looking-at "\\(=[^>=]\\|:[^:]\\|->\\|<-\\)[ \t\n]*") 'rhs)
(t 'other)))
(defun elm-indent-contour-line (start end)
"Generate contour information between START and END points."
(if (< start end)
(save-excursion
(goto-char end)
(elm-indent-skip-blanks-and-newlines-backward start)
(let ((cur-col (current-column)) ; maximum column number
(fl 0) ; number of lines that forward-line could not advance
contour)
(while (and (> cur-col 0) (= fl 0) (>= (point) start))
(back-to-indentation)
(if (< (point) start) (goto-char start))
(and (not (member (elm-indent-type-at-point)
'(empty comment))) ; skip empty and comment lines
(< (current-column) cur-col) ; less indented column found
(push (point) contour) ; new contour point found
(setq cur-col (current-column)))
(setq fl (forward-line -1)))
contour))))
(defun elm-indent-next-symbol (end)
"Move point to the next symbol."
(skip-syntax-forward ")" end)
(if (< (point) end)
(progn
(forward-sexp 1)
(elm-indent-skip-blanks-and-newlines-forward end))))
(defun elm-indent-next-symbol-safe (end)
"Puts point to the next following symbol, or to end if there are no more symbols in the sexp."
(condition-case errlist (elm-indent-next-symbol end)
(error (goto-char end))))
(defun elm-indent-separate-valdef (start end)
"Return a list of positions for important parts of a valdef."
(save-excursion
(let (valname valname-string aft-valname
guard aft-guard
rhs-sign aft-rhs-sign
type)
;; "parse" a valdef separating important parts
(goto-char start)
(setq type (elm-indent-type-at-point))
(if (or (memq type '(ident other))) ; possible start of a value def
(progn
(if (eq type 'ident)
(progn
(setq valname (match-beginning 0))
(setq valname-string (match-string 0))
(goto-char (match-end 0)))
(skip-chars-forward " \t" end)
(setq valname (point)) ; type = other
(elm-indent-next-symbol-safe end))
(while (and (< (point) end)
(setq type (elm-indent-type-at-point))
(or (memq type '(ident other))))
(if (null aft-valname)
(setq aft-valname (point)))
(elm-indent-next-symbol-safe end))))
(if (and (< (point) end) (eq type 'guard)) ; start of a guard
(progn
(setq guard (match-beginning 0))
(goto-char (match-end 0))
(while (and (< (point) end)
(setq type (elm-indent-type-at-point))
(not (eq type 'rhs)))
(if (null aft-guard)
(setq aft-guard (point)))
(elm-indent-next-symbol-safe end))))
(if (and (< (point) end) (eq type 'rhs)) ; start of a rhs
(progn
(setq rhs-sign (match-beginning 0))
(goto-char (match-end 0))
(if (< (point) end)
(setq aft-rhs-sign (point)))))
(list valname valname-string aft-valname
guard aft-guard rhs-sign aft-rhs-sign))))
(defsubst elm-indent-no-otherwise (guard)
"Check if there is no otherwise at GUARD."
(save-excursion
(goto-char guard)
(not (looking-at "|[ \t]*otherwise\\>"))))
(defun elm-indent-guard (start end end-visible indent-info)
"Find indentation information for a line starting with a guard."
(save-excursion
(let* ((elm-indent-info indent-info)
(sep (elm-indent-separate-valdef start end))
(valname (nth 0 sep))
(guard (nth 3 sep))
(rhs-sign (nth 5 sep)))
;; push information indentation for the visible part
(if (and guard (< guard end-visible) (elm-indent-no-otherwise guard))
(elm-indent-push-pos guard)
(if rhs-sign
(elm-indent-push-pos rhs-sign) ; probably within a data definition...
(if valname
(elm-indent-push-pos-offset valname))))
elm-indent-info)))
(defun elm-indent-rhs (start end end-visible indent-info)
"Find indentation information for a line starting with a rhs."
(save-excursion
(let* ((elm-indent-info indent-info)
(sep (elm-indent-separate-valdef start end))
(valname (nth 0 sep))
(guard (nth 3 sep))
(rhs-sign (nth 5 sep)))
;; push information indentation for the visible part
(if (and rhs-sign (< rhs-sign end-visible))
(elm-indent-push-pos rhs-sign)
(if (and guard (< guard end-visible))
(elm-indent-push-pos-offset guard)
(if valname ; always visible !!
(elm-indent-push-pos-offset valname))))
elm-indent-info)))
(defconst elm-indent-decision-table
(let ((or "\\)\\|\\("))
(concat "\\("
"1.1.11" or ; 1= vn gd rh arh
"1.1.10" or ; 2= vn gd rh
"1.1100" or ; 3= vn gd agd
"1.1000" or ; 4= vn gd
"1.0011" or ; 5= vn rh arh
"1.0010" or ; 6= vn rh
"110000" or ; 7= vn avn
"100000" or ; 8= vn
"001.11" or ; 9= gd rh arh
"001.10" or ;10= gd rh
"001100" or ;11= gd agd
"001000" or ;12= gd
"000011" or ;13= rh arh
"000010" or ;14= rh
"000000" ;15=
"\\)")))
(defun elm-indent-find-case (test)
"Find the index that matches TEST in the decision table."
(if (string-match elm-indent-decision-table test)
;; use the fact that the resulting match-data is a list of the form
;; (0 6 [2*(n-1) nil] 0 6) where n is the number of the matching regexp
;; so n= ((length match-data)/2)-1
(- (/ (length (match-data 'integers)) 2) 1)
(error "elm-indent-find-case: impossible case: %s" test)))
(defun elm-indent-after-list-item-p ()
(with-no-warnings
;; HACK: we depend on open being dynamically bound while handling
;; indentation inside of a parenthesized expression.
(when open
(or (eq (char-after open) ?\()
(eq (char-after open) ?\[)))))
(defun elm-indent-empty (start end end-visible indent-info)
"Find indentation points for an empty line."
(save-excursion
(let* ((elm-indent-info indent-info)
(sep (elm-indent-separate-valdef start end))
(valname (pop sep))
(valname-string (pop sep))
(aft-valname (pop sep))
(guard (pop sep))
(aft-guard (pop sep))
(rhs-sign (pop sep))
(aft-rhs-sign (pop sep))
(last-line (= end end-visible))
(test (string
(if valname ?1 ?0)
(if (and aft-valname (< aft-valname end-visible)) ?1 ?0)
(if (and guard (< guard end-visible)) ?1 ?0)
(if (and aft-guard (< aft-guard end-visible)) ?1 ?0)
(if (and rhs-sign (< rhs-sign end-visible)) ?1 ?0)
(if (and aft-rhs-sign (< aft-rhs-sign end-visible)) ?1 ?0))))
(if (and valname-string ; special case for start keywords
(string-match elm-indent-start-keywords-re valname-string))
(progn
(elm-indent-push-pos valname)
;; Special case for `type' declarations.
(if (string-match "\\<type\\>" valname-string)
(elm-indent-push-pos-offset valname)
(elm-indent-push-pos-offset valname 0)))
(case ; general case
(elm-indent-find-case test)
;; "1.1.11" 1= vn gd rh arh
(1 (elm-indent-push-pos valname)
(elm-indent-push-pos valname valname-string)
(if (elm-indent-no-otherwise guard) (elm-indent-push-pos guard "| "))
(elm-indent-push-pos aft-rhs-sign))
;; "1.1.10" 2= vn gd rh
(2 (elm-indent-push-pos valname)
(elm-indent-push-pos valname valname-string)
(if last-line
(elm-indent-push-pos-offset guard)
(if (elm-indent-no-otherwise guard) (elm-indent-push-pos guard "| "))))
;; "1.1100" 3= vn gd agd
(3 (elm-indent-push-pos valname)
(elm-indent-push-pos aft-guard)
(if last-line (elm-indent-push-pos-offset valname)))
;; "1.1000" 4= vn gd
(4 (elm-indent-push-pos valname)
(if last-line (elm-indent-push-pos-offset guard 2)))
;; "1.0011" 5= vn rh arh
(5 (elm-indent-push-pos valname)
(if (or (and aft-valname (= (char-after rhs-sign) ?\=))
(= (char-after rhs-sign) ?\:))
(elm-indent-push-pos valname valname-string))
(elm-indent-push-pos aft-rhs-sign))
;; "1.0010" 6= vn rh
(6 (elm-indent-push-pos valname)
(elm-indent-push-pos valname valname-string)
(if last-line (elm-indent-push-pos-offset valname)))
;; "110000" 7= vn avn
(7 (elm-indent-push-pos valname)
(elm-indent-push-pos-offset valname))
;; "100000" 8= vn
(8 (if (elm-indent-after-list-item-p)
(progn
(elm-indent-push-pos valname)
(elm-indent-push-pos-offset valname))
(elm-indent-push-pos valname)
(elm-indent-push-pos-offset valname)))
;; "001.11" 9= gd rh arh
(9 (if (elm-indent-no-otherwise guard) (elm-indent-push-pos guard "| "))
(elm-indent-push-pos aft-rhs-sign))
;; "001.10" 10= gd rh
(10 (if (elm-indent-no-otherwise guard) (elm-indent-push-pos guard "| "))
(if last-line (elm-indent-push-pos-offset guard)))
;; "001100" 11= gd agd
(11 (if (elm-indent-no-otherwise guard) (elm-indent-push-pos guard "|> "))
(elm-indent-push-pos aft-guard))
;; "001000" 12= gd
(12 (if (elm-indent-no-otherwise guard) (elm-indent-push-pos guard "|> "))
(if last-line (elm-indent-push-pos-offset guard 2)))
;; "000011" 13= rh arh
(13 (elm-indent-push-pos aft-rhs-sign))
;; "000010" 14= rh
(14 (if last-line (elm-indent-push-pos-offset rhs-sign 2 )))
;; "000000" 15=
(t (error "elm-indent-empty: %s impossible case" test ))))
elm-indent-info)))
(defun elm-indent-ident (start end end-visible indent-info)
"Find indentation points for a line starting with an identifier."
(save-excursion
(let*
((elm-indent-info indent-info)
(sep (elm-indent-separate-valdef start end))
(valname (pop sep))
(valname-string (pop sep))
(aft-valname (pop sep))
(guard (pop sep))
(aft-guard (pop sep))
(rhs-sign (pop sep))
(aft-rhs-sign (pop sep))
(last-line (= end end-visible))
(is-where
(string-match "where[ \t]*" elm-indent-current-line-first-ident))
(diff-first ; not a function def with the same name
(or (null valname-string)
(not (string= (s-trim valname-string)
(s-trim elm-indent-current-line-first-ident)))))
;; (is-type-def
;; (and rhs-sign (eq (char-after rhs-sign) ?\:)))
(test (string
(if valname ?1 ?0)
(if (and aft-valname (< aft-valname end-visible)) ?1 ?0)
(if (and guard (< guard end-visible)) ?1 ?0)
(if (and aft-guard (< aft-guard end-visible)) ?1 ?0)
(if (and rhs-sign (< rhs-sign end-visible)) ?1 ?0)
(if (and aft-rhs-sign (< aft-rhs-sign end-visible)) ?1 ?0))))
(if (and valname-string ; special case for start keywords
(string-match elm-indent-start-keywords-re valname-string))
(progn
(elm-indent-push-pos valname)
(if (string-match "\\<type\\>" valname-string)
;; Special case for `type' declarations.
(elm-indent-push-pos-offset valname)
(if (not (string-match
elm-indent-start-keywords-re
elm-indent-current-line-first-ident))
(elm-indent-push-pos-offset valname))))
(if (string= elm-indent-current-line-first-ident ":")
(if valname (elm-indent-push-pos valname))
(case ; general case
(elm-indent-find-case test)
;; "1.1.11" 1= vn gd rh arh
(1 (if is-where
(elm-indent-push-pos guard)
(elm-indent-push-pos valname)
(if diff-first (elm-indent-push-pos aft-rhs-sign))))
;; "1.1.10" 2= vn gd rh
(2 (if is-where
(elm-indent-push-pos guard)
(elm-indent-push-pos valname)
(if last-line
(elm-indent-push-pos-offset guard))))
;; "1.1100" 3= vn gd agd
(3 (if is-where
(elm-indent-push-pos-offset guard)
(elm-indent-push-pos valname)
(if diff-first
(elm-indent-push-pos aft-guard))))
;; "1.1000" 4= vn gd
(4 (if is-where
(elm-indent-push-pos guard)
(elm-indent-push-pos valname)
(if last-line
(elm-indent-push-pos-offset guard 2))))
;; "1.0011" 5= vn rh arh
(5 (if is-where
(elm-indent-push-pos-offset valname)
(elm-indent-push-pos valname)
(if diff-first
(elm-indent-push-pos aft-rhs-sign))))
;; "1.0010" 6= vn rh
(6 (elm-indent-push-pos valname)
(elm-indent-push-pos valname valname-string)
(if last-line (elm-indent-push-pos-offset valname)))
;; "110000" 7= vn avn
(7 (elm-indent-push-pos valname)
(elm-indent-push-pos-offset valname))
;; "100000" 8= vn
(8 (elm-indent-push-pos valname)
(elm-indent-push-pos-offset valname))
;; "001.11" 9= gd rh arh
(9 (if is-where
(elm-indent-push-pos guard)
(elm-indent-push-pos aft-rhs-sign)))
;; "001.10" 10= gd rh
(10 (if is-where
(elm-indent-push-pos guard)
(if last-line
(elm-indent-push-pos-offset guard))))
;; "001100" 11= gd agd
(11 (if is-where
(elm-indent-push-pos guard)
(if (elm-indent-no-otherwise guard)
(elm-indent-push-pos aft-guard))))
;; "001000" 12= gd
(12 (if last-line (elm-indent-push-pos-offset guard 2)))
;; "000011" 13= rh arh
(13 (elm-indent-push-pos aft-rhs-sign))
;; "000010" 14= rh
(14 (if last-line (elm-indent-push-pos-offset rhs-sign 2)))
;; "000000" 15=
(t (error "elm-indent-ident: %s impossible case" test )))))
elm-indent-info)))
(defun elm-indent-other (start end end-visible indent-info)
"Find indentation points for a non-empty line starting with something other
than an identifier, a guard or rhs."
(save-excursion
(let* ((elm-indent-info indent-info)
(sep (elm-indent-separate-valdef start end))
(valname (pop sep))
(valname-string (pop sep))
(aft-valname (pop sep))
(guard (pop sep))
(aft-guard (pop sep))
(rhs-sign (pop sep))
(aft-rhs-sign (pop sep))
(last-line (= end end-visible))
(test (string
(if valname ?1 ?0)
(if (and aft-valname (< aft-valname end-visible)) ?1 ?0)
(if (and guard (< guard end-visible)) ?1 ?0)
(if (and aft-guard (< aft-guard end-visible)) ?1 ?0)
(if (and rhs-sign (< rhs-sign end-visible)) ?1 ?0)
(if (and aft-rhs-sign (< aft-rhs-sign end-visible)) ?1 ?0))))
(if (and valname-string ; special case for start keywords
(string-match elm-indent-start-keywords-re valname-string))
(elm-indent-push-pos-offset valname)
(case ; general case
(elm-indent-find-case test)
;; "1.1.11" 1= vn gd rh arh
(1 (elm-indent-push-pos aft-rhs-sign))
;; "1.1.10" 2= vn gd rh
(2 (if last-line
(elm-indent-push-pos-offset guard)
(elm-indent-push-pos-offset rhs-sign 2)))
;; "1.1100" 3= vn gd agd
(3 (elm-indent-push-pos aft-guard))
;; "1.1000" 4= vn gd
(4 (elm-indent-push-pos-offset guard 2))
;; "1.0011" 5= vn rh arh
(5 (elm-indent-push-pos valname)
(elm-indent-push-pos aft-rhs-sign))
;; "1.0010" 6= vn rh
(6 (if last-line
(elm-indent-push-pos-offset valname)
(elm-indent-push-pos-offset rhs-sign 2)))
;; "110000" 7= vn avn
(7 (elm-indent-push-pos valname)
(elm-indent-push-pos-offset valname))
;; "100000" 8= vn
(8 (elm-indent-push-pos valname))
;; "001.11" 9= gd rh arh
(9 (elm-indent-push-pos aft-rhs-sign))
;; "001.10" 10= gd rh
(10 (if last-line
(elm-indent-push-pos-offset guard)
(elm-indent-push-pos-offset rhs-sign 2)))
;; "001100" 11= gd agd
(11 (if (elm-indent-no-otherwise guard)
(elm-indent-push-pos aft-guard)))
;; "001000" 12= gd
(12 (if last-line (elm-indent-push-pos-offset guard 2)))
;; "000011" 13= rh arh
(13 (elm-indent-push-pos aft-rhs-sign))
;; "000010" 14= rh
(14 (if last-line (elm-indent-push-pos-offset rhs-sign 2)))
;; "000000" 15=
(t (error "elm-indent-other: %s impossible case" test ))))
elm-indent-info)))
(defun elm-indent-valdef-indentation (start end end-visible curr-line-type
indent-info)
"Find indentation information for a value definition."
(let ((elm-indent-info indent-info))
(if (< start end-visible)
(case curr-line-type
(empty (elm-indent-empty start end end-visible indent-info))
(ident (elm-indent-ident start end end-visible indent-info))
(guard (elm-indent-guard start end end-visible indent-info))
(rhs (elm-indent-rhs start end end-visible indent-info))
(comment (error "Comment indent should never happen"))
(other (elm-indent-other start end end-visible indent-info)))
elm-indent-info)))
(defun elm-indent-line-indentation (line-start line-end end-visible
curr-line-type indent-info)
"Compute indentation info between LINE-START and END-VISIBLE.
Separate a line of program into valdefs between offside keywords
and find indentation info for each part."
(save-excursion
;; point is (already) at line-start
(assert (eq (point) line-start))
(let ((elm-indent-info indent-info)
(start (or (elm-indent-in-comment line-start line-end)
(elm-indent-in-string line-start line-end))))
(if start ; if comment at the end
(setq line-end start)) ; end line before it
;; loop on all parts separated by off-side-keywords
(while (and (re-search-forward elm-indent-off-side-keywords-re
line-end t)
(not (or (elm-indent-in-comment line-start (point))
(elm-indent-in-string line-start (point)))))
(let ((beg-match (match-beginning 0)) ; save beginning of match
(end-match (match-end 0))) ; save end of match
;; Do not try to find indentation points if off-side-keyword at
;; the start...
(if (or (< line-start beg-match)
;; Actually, if we're looking at a "let" inside a "do", we
;; should add the corresponding indentation point.
(eq (char-after beg-match) ?l))
(setq elm-indent-info
(elm-indent-valdef-indentation line-start beg-match
end-visible
curr-line-type
elm-indent-info)))
;; ...but keep the start of the line if keyword alone on the line
(if (= line-end end-match)
(elm-indent-push-pos beg-match))
(setq line-start end-match)
(goto-char line-start)))
(elm-indent-valdef-indentation line-start line-end end-visible
curr-line-type elm-indent-info))))
(defun elm-indent-layout-indent-info (start contour-line)
(let ((elm-indent-info nil)
(curr-line-type (elm-indent-type-at-point))
line-start line-end end-visible)
(save-excursion
(if (eq curr-line-type 'ident)
(let ; guess the type of line
((sep
(elm-indent-separate-valdef
(point) (line-end-position))))
;; if the first ident is where or the start of a def
;; keep it in a global variable
(setq elm-indent-current-line-first-ident
(if (string-match "where[ \t]*" (nth 1 sep))
(nth 1 sep)
(if (nth 5 sep) ; is there a rhs-sign
(if (= (char-after (nth 5 sep)) ?\:) ;is it a typdef
":" (nth 1 sep))
"")))))
(while contour-line ; explore the contour points
(setq line-start (pop contour-line))
(goto-char line-start)
(setq line-end (line-end-position))
(setq end-visible ; visible until the column of the
(if contour-line ; next contour point
(save-excursion
(move-to-column
(elm-indent-point-to-col (car contour-line)))
(point))
line-end))
(unless (or (elm-indent-open-structure start line-start)
(elm-indent-in-comment start line-start))
(setq elm-indent-info
(elm-indent-line-indentation line-start line-end
end-visible curr-line-type
elm-indent-info)))))
elm-indent-info))
(defun elm-indent-find-matching-start (regexp limit &optional pred start)
(let ((open (elm-indent-open-structure limit (point))))
(if open (setq limit (1+ open))))
(unless start (setq start (point)))
(when (re-search-backward regexp limit t)
(let ((nestedcase (match-end 1))
(outer (or (elm-indent-in-string limit (point))
(elm-indent-in-comment limit (point))
(elm-indent-open-structure limit (point))
(if (and pred (funcall pred start)) (point)))))
(cond
(outer
(goto-char outer)
(elm-indent-find-matching-start regexp limit pred start))
(nestedcase
;; Nested case.
(and (elm-indent-find-matching-start regexp limit pred)
(elm-indent-find-matching-start regexp limit pred start)))
(t (point))))))
(defun elm-indent-comment (open start)
"Compute indent info for comments and text inside comments.
OPEN is the start position of the comment in which point is."
;; Ideally we'd want to guess whether it's commented out code or
;; whether it's text. Instead, we'll assume it's text.
(save-excursion
(if (= open (point))
;; We're actually just in front of a comment: align with following
;; code or with comment on previous line.
(let ((prev-line-info
(cond
((eq (char-after) ?\{) nil) ;Align as if it were code.
((and (forward-comment -1)
(> (line-beginning-position 3) open))
;; We're after another comment and there's no empty line
;; between us.
(list (list (elm-indent-point-to-col (point)))))
(t nil)))) ;Else align as if it were code
;; Align with following code.
(forward-comment (point-max))
;; There are several possible indentation points for this code-line,
;; but the only valid indentation point for the comment is the one
;; that the user will select for the code-line. Obviously we can't
;; know that, so we just assume that the code-line is already at its
;; proper place.
;; Strictly speaking "assume it's at its proper place" would mean
;; we'd just use (current-column), but since this is using info from
;; lines further down and it's common to reindent line-by-line,
;; we'll align not with the current indentation, but with the
;; one that auto-indentation "will" select.
(append
prev-line-info
(let ((indent-info (save-excursion
(elm-indent-indentation-info start)))
(col (current-column)))
;; Sort the indent-info so that the current indentation comes
;; out first.
(setq indent-info
(sort indent-info
(lambda (x y)
(<= (abs (- col (car x))) (abs (- col (car y)))))))
indent-info)))
;; We really are inside a comment.
(if (looking-at "-}")
(progn
(forward-char 2)
(forward-comment -1)
(list (list (1+ (elm-indent-point-to-col (point))))))
(let ((offset (if (looking-at "--?")
(- (match-beginning 0) (match-end 0)))))
(forward-line -1) ;Go to previous line.
(back-to-indentation)
(if (< (point) start) (goto-char start))
(list (list (if (and comment-start-skip (looking-at comment-start-skip))
(if offset
(+ 2 offset (elm-indent-point-to-col (point)))
(elm-indent-point-to-col (match-end 0)))
(elm-indent-point-to-col (point))))))))))
(defun elm-indent-closing-keyword (start)
(let ((open (save-excursion
(elm-indent-find-matching-start
(case (char-after)
(?i "\\<\\(?:\\(in\\)\\|let\\)\\>")
(?o "\\<\\(?:\\(of\\)\\|case\\)\\>")
(?t "\\<\\(?:\\(then\\)\\|if\\)\\>")
(?e "\\<\\(?:\\(else\\)\\|if\\)\\>"))
start))))
;; For a "hanging let/case/if at EOL" we should use a different
;; indentation scheme.
(save-excursion
(goto-char open)
(if (elm-indent-hanging-p)
(setq open (elm-indent-virtual-indentation start))))
;; FIXME: we should try and figure out if the `if' is in a `do' layout
;; before using elm-indent-thenelse.
(list (list (+ (if (memq (char-after) '(?t ?e)) elm-indent-thenelse 0)
(elm-indent-point-to-col open))))))
(defun elm-indent-skip-lexeme-forward ()
(and (zerop (skip-syntax-forward "w"))
(skip-syntax-forward "_")
(skip-syntax-forward "(")
(skip-syntax-forward ")")))
(defun elm-indent-offset-after-info ()
"Return the info from `elm-indent-after-keywords' for keyword at point."
(let ((id (buffer-substring
(point)
(save-excursion
(elm-indent-skip-lexeme-forward)
(point)))))
(or (assoc id elm-indent-after-keywords)
(car (member id elm-indent-after-keywords)))))
(defun elm-indent-hanging-p ()
;; A Hanging keyword is one that's at the end of a line except it's not at
;; the beginning of a line.
(not (or (= (current-column) (current-indentation))
(save-excursion
(let ((lexeme
(buffer-substring
(point)
(progn (elm-indent-skip-lexeme-forward) (point)))))
(or (member lexeme elm-indent-dont-hang)
(> (line-end-position)
(progn (forward-comment (point-max)) (point)))))))))
(defun elm-indent-after-keyword-column (offset-info start &optional default)
(unless offset-info
(setq offset-info (elm-indent-offset-after-info)))
(unless default (setq default elm-indent-offset))
(setq offset-info
(if elm-indent-inhibit-after-offset '(0) (cdr-safe offset-info)))
(if (not (elm-indent-hanging-p))
(elm-indent-column+offset (current-column)
(or (car offset-info) default))
;; The keyword is hanging at the end of the line.
(elm-indent-column+offset
(elm-indent-virtual-indentation start)
(or (cadr offset-info) (car offset-info) default))))
(defun elm-indent-inside-paren-update-syntax-p (open)
(let ((end (point)))
(save-excursion
(goto-char open)
(and (not (looking-at ".*="))
(progn
(forward-line)
(elm-indent-skip-blanks-and-newlines-forward end)
(eq (char-after) ?\|))))))
(defun elm-indent-inside-paren (open)
;; there is an open structure to complete
(if (looking-at "\\s)\\|[|;,]")
;; A close-paren or a , or ; can only correspond syntactically to
;; the open-paren at `open'. So there is no ambiguity.
(let* ((is-close-brace (eq (char-after) ?\}))
(inside-update (elm-indent-inside-paren-update-syntax-p open)))
(if (and (eq (char-after) ?\;) (eq (char-after open) ?\())
(message "Mismatched punctuation: `%c' in %c...%c"
(char-after) (char-after open)
(if (eq (char-after open) ?\() ?\) ?\})))
(save-excursion
(goto-char open)
(list (list
(if (elm-indent-hanging-p)
(elm-indent-virtual-indentation nil)
(if (and inside-update
(not is-close-brace)
(eq (char-after open) ?\{))
(elm-indent-point-to-col (+ elm-indent-offset open))
(elm-indent-point-to-col open)))))))
;; There might still be layout within the open structure.
(let* ((end (point))
(basic-indent-info
;; Anything else than a ) is subject to layout.
(if (looking-at "\\s.\\|\\$ ")
(elm-indent-point-to-col open) ; align a punct with (
(let ((follow (save-excursion
(goto-char (1+ open))
(elm-indent-skip-blanks-and-newlines-forward end)
(point))))
(if (= follow end)
(save-excursion
(goto-char open)
(elm-indent-after-keyword-column nil nil 1))
(elm-indent-point-to-col (+ elm-indent-offset follow))))))
(open-column (elm-indent-point-to-col open))
(contour-line (elm-indent-contour-line (1+ open) end)))
(if (null contour-line)
(list (list basic-indent-info))
(let ((indent-info
(elm-indent-layout-indent-info
(1+ open) contour-line)))
;; Fix up indent info.
(let ((base-elem (assoc open-column indent-info)))
(if base-elem
(progn (setcar base-elem basic-indent-info)
(setcdr base-elem nil))
(if (not (eq basic-indent-info 0))
(setq indent-info (append (list (list basic-indent-info)) indent-info))
(setq indent-info (append indent-info (list (list basic-indent-info))))))
indent-info))))))
(defun elm-indent-virtual-indentation (start)
"Compute the \"virtual indentation\" of text at point.
The \"virtual indentation\" is the indentation that text at point would have
had, if it had been placed on its own line."
(let ((col (current-column))
(elm-indent-inhibit-after-offset (elm-indent-hanging-p)))
(if (save-excursion (skip-chars-backward " \t") (bolp))
;; If the text is indeed on its own line, than the virtual indent is
;; the current indentation.
col
;; Else, compute the indentation that it would have had.
(let ((info (elm-indent-indentation-info start))
(max -1))
;; `info' is a list of possible indent points. Each indent point is
;; assumed to correspond to a different parse. So we need to find
;; the parse that corresponds to the case at hand (where there's no
;; line break), which is assumed to always be the
;; deepest indentation.
(dolist (x info)
(setq x (car x))
;; Sometimes `info' includes the current indentation (or yet
;; deeper) by mistake, because elm-indent-indentation-info
;; wasn't designed to be called on a piece of text that is not at
;; BOL. So ignore points past `col'.
(if (and (> x max) (not (>= x col)))
(setq max x)))
;; In case all the indent points are past `col', just use `col'.
(if (>= max 0) max col)))))
(defun elm-indent-indentation-info (&optional start)
"Return a list of possible indentations for the current line.
These are then used by `elm-indent-cycle'.
START if non-nil is a presumed start pos of the current definition."
(unless start (setq start (elm-indent-start-of-def)))
(let (open contour-line)
(cond
;; in string?
((setq open (elm-indent-in-string start (point)))
(list (list (+ (elm-indent-point-to-col open)
(if (looking-at "\\\\") 0 1)))))
;; in comment ?
((setq open (elm-indent-in-comment start (point)))
(elm-indent-comment open start))
;; Closing the declaration part of a `let' or the test exp part of a case.
((looking-at "\\(?:in\\|of\\|then\\|else\\)\\>")
(elm-indent-closing-keyword start))
;; Right after a special keyword.
((save-excursion
(forward-comment (- (point-max)))
(when (and (not (zerop (skip-syntax-backward "w")))
(setq open (elm-indent-offset-after-info)))
(list (list (elm-indent-after-keyword-column open start))))))
;; open structure? ie ( { [
((setq open (elm-indent-open-structure start (point)))
(elm-indent-inside-paren open))
;; full indentation
((setq contour-line (elm-indent-contour-line start (point)))
(elm-indent-layout-indent-info start contour-line))
(t
;; simple contour just one indentation at start
(list (list (elm-indent-point-to-col start)))))))
(defun elm-indent-cycle ()
"Indentation cycle.
We stay in the cycle as long as the TAB key is pressed."
(interactive "*")
(let ((marker (if (> (current-column)
(current-indentation))
(point-marker)))
(bol (progn (beginning-of-line) (point))))
(back-to-indentation)
(unless (and (eq last-command this-command)
(eq bol (car elm-indent-last-info)))
(save-excursion
(setq elm-indent-last-info
(list bol (elm-indent-indentation-info) 0 0))))
(let* ((il (nth 1 elm-indent-last-info))
(index (nth 2 elm-indent-last-info))
(last-insert-length (nth 3 elm-indent-last-info))
(indent-info (nth index il)))
(indent-line-to (car indent-info)) ; insert indentation
(delete-char last-insert-length)
(setq last-insert-length 0)
(let ((text (cdr indent-info)))
(if text
(progn
(insert text)
(setq last-insert-length (length text)))))
(setq elm-indent-last-info
(list bol il (% (1+ index) (length il)) last-insert-length))
(if (= (length il) 1)
(message "Sole indentation")
(message "Indent cycle (%d)..." (length il)))
(if marker
(goto-char (marker-position marker))))))
(defun elm-indent-region (start end)
"Apply `elm-indent-cycle' to every line between START and END."
(save-excursion
(goto-char start)
(while (< (point) end)
(elm-indent-cycle)
(forward-line))))
;;; Alignment functions
(defun elm-indent-shift-columns (dest-column region-stack)
"Shift columns in REGION-STACK to go to DEST-COLUMN.
Elements of the stack are pairs of points giving the start and end
of the regions to move."
(let (reg col diffcol reg-end)
(while (setq reg (pop region-stack))
(setq reg-end (copy-marker (cdr reg)))
(goto-char (car reg))
(setq col (current-column))
(setq diffcol (- dest-column col))
(if (not (zerop diffcol))
(catch 'end-of-buffer
(while (<= (point) (marker-position reg-end))
(if (< diffcol 0)
(backward-delete-char-untabify (- diffcol) nil)
(insert-char ?\ diffcol))
(end-of-line 2) ; should be (forward-line 1)
(if (eobp) ; but it adds line at the end...
(throw 'end-of-buffer nil))
(move-to-column col)))))))
(defun elm-indent-align-def (p-arg type)
"Align guards or rhs within the current definition before point.
If P-ARG is t align all defs up to the mark.
TYPE is either 'guard or 'rhs."
(save-excursion
(let (start-block end-block
(maxcol (if (eq type 'rhs) elm-indent-rhs-align-column 0))
contour sep defname defnamepos
defcol pos lastpos
regstack eqns-start start-found)
;; find the starting and ending boundary points for alignment
(if p-arg
(if (mark) ; aligning everything in the region
(progn
(when (> (mark) (point)) (exchange-point-and-mark))
(setq start-block
(save-excursion
(goto-char (mark))
(line-beginning-position)))
(setq end-block
(progn (if (bolp)
(forward-line -1))
(line-end-position))))
(error "The mark is not set for aligning definitions"))
;; aligning the current definition
(setq start-block (elm-indent-start-of-def))
(setq end-block (line-end-position)))
;; find the start of the current valdef using the contour line
;; in reverse order because we need the nearest one from the end
(setq contour
(reverse (elm-indent-contour-line start-block end-block)))
(setq pos (car contour)) ; keep the start of the first contour
;; find the nearest start of a definition
(while (and (not defname) contour)
(goto-char (pop contour))
(if (elm-indent-open-structure start-block (point))
nil
(setq sep (elm-indent-separate-valdef (point) end-block))
(if (nth 5 sep) ; is there a rhs?
(progn (setq defnamepos (nth 0 sep))
(setq defname (nth 1 sep))))))
;; start building the region stack
(if defnamepos
(progn ; there is a valdef
;; find the start of each equation or guard
(if p-arg ; when indenting a region
;; accept any start of id or pattern as def name
(setq defname "\\<\\|("))
(setq defcol (elm-indent-point-to-col defnamepos))
(goto-char pos)
(setq end-block (line-end-position))
(catch 'top-of-buffer
(while (and (not start-found)
(>= (point) start-block))
(if (<= (current-indentation) defcol)
(progn
(move-to-column defcol)
(if (and (looking-at defname) ; start of equation
(not (elm-indent-open-structure start-block (point))))
(push (cons (point) 'eqn) eqns-start)
;; found a less indented point not starting an equation
(setq start-found t)))
;; more indented line
(back-to-indentation)
(if (and (eq (elm-indent-type-at-point) 'guard) ; start of a guard
(not (elm-indent-open-structure start-block (point))))
(push (cons (point) 'gd) eqns-start)))
(if (bobp)
(throw 'top-of-buffer nil)
(backward-to-indentation 1))))
;; remove the spurious guards before the first equation
(while (and eqns-start (eq (cdar eqns-start) 'gd))
(pop eqns-start))
;; go through each equation to find the region to indent
(while eqns-start
(let ((eqn (caar eqns-start)))
(setq lastpos (if (cdr eqns-start)
(save-excursion
(goto-char (caadr eqns-start))
(forward-line -1)
(line-end-position))
end-block))
(setq sep (elm-indent-separate-valdef eqn lastpos)))
(if (eq type 'guard)
(setq pos (nth 3 sep))
;; check if what follows a rhs sign is more indented or not
(let ((rhs (nth 5 sep))
(aft-rhs (nth 6 sep)))
(if (and rhs aft-rhs
(> (elm-indent-point-to-col rhs)
(elm-indent-point-to-col aft-rhs)))
(setq pos aft-rhs)
(setq pos rhs))))
(if pos
(progn ; update region stack
(push (cons pos (or lastpos pos)) regstack)
(setq maxcol ; find the highest column number
(max maxcol
(progn ;find the previous non-empty column
(goto-char pos)
(skip-chars-backward
" \t"
(line-beginning-position))
(if (bolp)
;;if on an empty prefix
(elm-indent-point-to-col pos) ;keep original indent
(1+ (elm-indent-point-to-col (point)))))))))
(pop eqns-start))
;; now shift according to the region stack
(if regstack
(elm-indent-shift-columns maxcol regstack)))))))
;;; Insertion functions
(defun elm-indent-insert-equal ()
"Insert an = sign and align the previous rhs of the current function."
(interactive "*")
(if (or (bolp)
(/= (preceding-char) ?\ ))
(insert ?\ ))
(insert "= ")
(elm-indent-align-def mark-active 'rhs))
;;; elm-indent-mode
(defvar elm-indent-mode nil
"Non-nil if the semi-intelligent Elm indentation mode is in effect.")
(make-variable-buffer-local 'elm-indent-mode)
(defvar elm-indent-map
(let ((map (make-sparse-keymap)))
(define-key map [?\C-c ?\C-=] 'elm-indent-insert-equal)
map))
;;;###autoload
(defun turn-on-elm-indent ()
"Turn on ``intelligent'' Elm indentation mode."
(set (make-local-variable 'indent-line-function) 'elm-indent-cycle)
(set (make-local-variable 'indent-region-function) 'elm-indent-region)
(setq elm-indent-mode t)
;; Activate our keymap.
(let ((map (current-local-map)))
(while (and map (not (eq map elm-indent-map)))
(setq map (keymap-parent map)))
(if map
;; elm-indent-map is already active: nothing to do.
nil
;; Put our keymap on top of the others. We could also put it in
;; second place, or in a minor-mode. The minor-mode approach would be
;; easier, but it's harder for the user to override it. This approach
;; is the closest in behavior compared to the previous code that just
;; used a bunch of local-set-key.
(set-keymap-parent elm-indent-map (current-local-map))
;; Protect our keymap.
(setq map (make-sparse-keymap))
(set-keymap-parent map elm-indent-map)
(use-local-map map)))
(run-hooks 'elm-indent-hook))
(defun turn-off-elm-indent ()
"Turn off ``intelligent'' Elm indentation mode."
(kill-local-variable 'indent-line-function)
;; Remove elm-indent-map from the local map.
(let ((map (current-local-map)))
(while map
(let ((parent (keymap-parent map)))
(if (eq elm-indent-map parent)
(set-keymap-parent map (keymap-parent parent))
(setq map parent)))))
(setq elm-indent-mode nil))
;; Put this minor mode on the global minor-mode-alist.
(or (assq 'elm-indent-mode (default-value 'minor-mode-alist))
(setq-default minor-mode-alist
(append (default-value 'minor-mode-alist)
'((elm-indent-mode " Elm Indent")))))
;;;###autoload
(defun elm-indent-mode (&optional arg)
"``Intelligent'' Elm indentation mode.
This deals with the layout rules of Elm.
\\[elm-indent-cycle] starts the cycle which proposes new
possibilities as long as the TAB key is pressed. Any other key
or mouse click terminates the cycle and is interpreted except for
RET which merely exits the cycle.
Other special keys are:
\\[elm-indent-insert-equal]
inserts an =
Invokes `elm-indent-hook' if not nil."
(interactive "P")
(setq elm-indent-mode
(if (null arg)
(not elm-indent-mode)
(> (prefix-numeric-value arg) 0)))
(if elm-indent-mode
(turn-on-elm-indent)
(turn-off-elm-indent)))
(provide 'elm-indent)
;;; elm-indent.el ends here
|