|
99 | 99 | 'ppss-comment-or-string-start
|
100 | 100 | (lambda (parse-data) (nth 8 parse-data))))
|
101 | 101 |
|
102 |
| -(defun elixir-smie-looking-around (back at) |
103 |
| - "Check if looking backwards at BACK and forward at AT." |
104 |
| - (and (looking-at-p at) (looking-back back))) |
105 |
| - |
106 | 102 | ;; Declare variable that we need from the smie package
|
107 | 103 | (defvar smie--parent)
|
108 | 104 |
|
|
261 | 257 |
|
262 | 258 | (defun elixir-smie--semi-ends-match ()
|
263 | 259 | "Return non-nil if the current line concludes a match block."
|
264 |
| - (when (not (eobp)) |
265 |
| - (save-excursion |
266 |
| - ;; Warning: Recursion. |
267 |
| - ;; This is easy though. |
268 |
| - |
269 |
| - ;; 1. If we're at a blank line, move forward a character. This takes us to |
270 |
| - ;; the next line. |
271 |
| - ;; 2. If we're not at the end of the buffer, call this function again. |
272 |
| - ;; (Otherwise, return nil.) |
273 |
| - |
274 |
| - ;; The point here is that we want to treat blank lines as a single semi- |
275 |
| - ;; colon when it comes to detecting the end of match statements. This could |
276 |
| - ;; also be handled by a `while' expression or some other looping mechanism. |
277 |
| - (cl-flet ((self-call () |
278 |
| - (if (< (point) (point-max)) |
279 |
| - (elixir-smie--semi-ends-match) |
280 |
| - nil))) |
281 |
| - (cond |
282 |
| - ((and (eolp) (bolp)) |
283 |
| - (forward-char) |
284 |
| - (self-call)) |
285 |
| - ((looking-at elixir-smie--spaces-til-eol-regexp) |
286 |
| - (forward-char) |
287 |
| - (self-call)) |
288 |
| - ;; And if we're NOT on a blank line, move to the end of the line, and see |
289 |
| - ;; if we're looking back at a block operator. |
290 |
| - (t (move-end-of-line 1) |
291 |
| - (and (looking-back elixir-smie--block-operator-regexp) |
292 |
| - (not (looking-back ".+fn.+"))))))))) |
| 260 | + nil) |
293 | 261 |
|
294 | 262 | (defun elixir-smie--same-line-as-parent (parent-pos child-pos)
|
295 | 263 | "Return non-nil if CHILD-POS is on same line as PARENT-POS."
|
|
897 | 865 | (forward-line -1)
|
898 | 866 | (current-indentation)))
|
899 | 867 |
|
900 |
| -;; Add the custom function to handle indentation inside heredoc to the |
901 |
| -;; smie-indent-functions list. The indentation function will only be |
902 |
| -;; process inside an elixir-mode. |
903 |
| -(defun elixir-smie--indent-inside-heredoc () |
904 |
| - "Handle indentation inside Elixir heredocs. |
905 |
| -
|
906 |
| -Rules: |
907 |
| - 1. If the previous line is empty, indent as the basic indentation |
908 |
| - at the beginning of the heredoc. |
909 |
| - 2. If the previous line is not empty, indent as the previous line." |
910 |
| - (if (eq major-mode 'elixir-mode) |
911 |
| - (if (elixir-smie--heredoc-at-current-point-p) |
912 |
| - (let ((indent |
913 |
| - (save-excursion |
914 |
| - (when (re-search-backward "^\\(\s+\\)\\(@doc\\|@moduledoc\\|.*\\)\"\"\"" nil t) |
915 |
| - (string-width (match-string 1)))))) |
916 |
| - (cond |
917 |
| - ((elixir-smie--previous-line-empty-p) |
918 |
| - (goto-char indent)) |
919 |
| - ((and (not (save-excursion (looking-at "\"\"\""))) |
920 |
| - (not (elixir-smie--previous-line-empty-p))) |
921 |
| - (goto-char (elixir-smie--previous-line-indentation))) |
922 |
| - (indent |
923 |
| - (goto-char indent))))))) |
924 |
| - |
925 | 868 | (defun elixir-smie-empty-string-p (string)
|
926 | 869 | "Return non-nil if STRING is null, blank or whitespace only."
|
927 | 870 | (or (null string)
|
928 | 871 | (string= string "")
|
929 | 872 | (if (string-match-p "^\s+$" string) t)))
|
930 | 873 |
|
931 |
| -(add-to-list 'smie-indent-functions 'elixir-smie--indent-inside-heredoc) |
932 |
| - |
933 | 874 | (provide 'elixir-smie)
|
934 | 875 |
|
935 | 876 | ;;; elixir-smie.el ends here
|
0 commit comments