Skip to content

Commit 06ccf7f

Browse files
committed
Merge pull request #15196 from justbur/julia-mode-improve-indent-perf
julia-mode: Indentation performance improvements
2 parents 1eacbbb + c8da4fb commit 06ccf7f

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

contrib/julia-mode-tests.el

+14
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,20 @@ bar
270270
end
271271
\"\"\""))
272272

273+
(ert-deftest julia--test-indent-of-end-in-brackets ()
274+
"Ignore end keyword in brackets for the purposes of indenting blocks."
275+
(julia--should-indent
276+
"begin
277+
begin
278+
arr[1: end - 1]
279+
end
280+
end"
281+
"begin
282+
begin
283+
arr[1: end - 1]
284+
end
285+
end"))
286+
273287
(defun julia--run-tests ()
274288
(interactive)
275289
(if (featurep 'ert)

contrib/julia-mode.el

+11-7
Original file line numberDiff line numberDiff line change
@@ -401,12 +401,13 @@ As a result, it is true inside \"foo\", `foo` and 'f'."
401401
(defun julia-at-keyword (kw-list)
402402
"Return the word at point if it matches any keyword in KW-LIST.
403403
KW-LIST is a list of strings. The word at point is not considered
404-
a keyword if used as a field name, X.word, or quoted, :word."
404+
a keyword if used as a field name, X.word, or quoted, :word.
405+
406+
Assumes that point is not inside a comment."
405407
(and (or (= (point) 1)
406408
(and (not (equal (char-before (point)) ?.))
407409
(not (equal (char-before (point)) ?:))))
408410
(member (current-word t) kw-list)
409-
(not (julia-in-comment))
410411
;; 'end' is not a keyword when used for indexing, e.g. foo[end-2]
411412
(or (not (equal (current-word t) "end"))
412413
(not (julia-in-brackets)))))
@@ -426,9 +427,7 @@ Do not move back beyond position MIN."
426427
(setq count
427428
(cond ((julia-at-keyword julia-block-start-keywords)
428429
(+ count 1))
429-
;; fixme: breaks on strings
430-
((and (equal (current-word t) "end")
431-
(not (julia-in-comment)) (not (julia-in-brackets)))
430+
((equal (current-word t) "end")
432431
(- count 1))
433432
(t count))))
434433
(if (> count 0)
@@ -547,13 +546,18 @@ meaning always increase indent on TAB and decrease on S-TAB."
547546
;; note: if this first function returns nil the beginning of the line
548547
;; cannot be in a string
549548
(julia-indent-in-string)
550-
;; If we're inside an open paren, indent to line up arguments.
549+
;; If we're inside an open paren, indent to line up arguments. After this,
550+
;; we cannot be inside parens which includes brackets
551551
(julia-paren-indent)
552-
;; indent due to hanging operators or a line ending in =
552+
;; indent due to hanging operators (lines ending in an operator)
553553
(julia-indent-hanging)
554554
;; Indent according to how many nested blocks we are in.
555555
(save-excursion
556556
(beginning-of-line)
557+
;; jump out of any comments
558+
(let ((state (syntax-ppss)))
559+
(when (nth 4 state)
560+
(goto-char (nth 8 state))))
557561
(forward-to-indentation 0)
558562
(let ((endtok (julia-at-keyword julia-block-end-keywords))
559563
(last-open-block (julia-last-open-block (- (point) julia-max-block-lookback))))

0 commit comments

Comments
 (0)