Skip to content

Commit d2a7407

Browse files
committedDec 19, 2021
Improve speed of smie by disabling features
This PR disables the worst offenders of lookbacks that make opening large files very slow. More testing is needed to determine if this is a worthwhile tradeoff. The main reason it is palatable is that it fixes elixir-editors#463 and indentation isn't as important as it once was because you can simply run `elixir-format` (or `lsp-format-buffer`).
1 parent 7373e91 commit d2a7407

File tree

1 file changed

+1
-60
lines changed

1 file changed

+1
-60
lines changed
 

‎elixir-smie.el

+1-60
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,6 @@
9999
'ppss-comment-or-string-start
100100
(lambda (parse-data) (nth 8 parse-data))))
101101

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-
106102
;; Declare variable that we need from the smie package
107103
(defvar smie--parent)
108104

@@ -261,35 +257,7 @@
261257

262258
(defun elixir-smie--semi-ends-match ()
263259
"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)
293261

294262
(defun elixir-smie--same-line-as-parent (parent-pos child-pos)
295263
"Return non-nil if CHILD-POS is on same line as PARENT-POS."
@@ -897,39 +865,12 @@
897865
(forward-line -1)
898866
(current-indentation)))
899867

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-
925868
(defun elixir-smie-empty-string-p (string)
926869
"Return non-nil if STRING is null, blank or whitespace only."
927870
(or (null string)
928871
(string= string "")
929872
(if (string-match-p "^\s+$" string) t)))
930873

931-
(add-to-list 'smie-indent-functions 'elixir-smie--indent-inside-heredoc)
932-
933874
(provide 'elixir-smie)
934875

935876
;;; elixir-smie.el ends here

0 commit comments

Comments
 (0)
Please sign in to comment.