@@ -401,12 +401,13 @@ As a result, it is true inside \"foo\", `foo` and 'f'."
401
401
(defun julia-at-keyword (kw-list )
402
402
" Return the word at point if it matches any keyword in KW-LIST.
403
403
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."
405
407
(and (or (= (point ) 1 )
406
408
(and (not (equal (char-before (point )) ?. ))
407
409
(not (equal (char-before (point )) ?: ))))
408
410
(member (current-word t ) kw-list)
409
- (not (julia-in-comment))
410
411
; ; 'end' is not a keyword when used for indexing, e.g. foo[end-2]
411
412
(or (not (equal (current-word t ) " end" ))
412
413
(not (julia-in-brackets)))))
@@ -426,9 +427,7 @@ Do not move back beyond position MIN."
426
427
(setq count
427
428
(cond ((julia-at-keyword julia-block-start-keywords)
428
429
(+ 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" )
432
431
(- count 1 ))
433
432
(t count))))
434
433
(if (> count 0 )
@@ -547,13 +546,18 @@ meaning always increase indent on TAB and decrease on S-TAB."
547
546
; ; note: if this first function returns nil the beginning of the line
548
547
; ; cannot be in a string
549
548
(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
551
551
(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)
553
553
(julia-indent-hanging)
554
554
; ; Indent according to how many nested blocks we are in.
555
555
(save-excursion
556
556
(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))))
557
561
(forward-to-indentation 0 )
558
562
(let ((endtok (julia-at-keyword julia-block-end-keywords))
559
563
(last-open-block (julia-last-open-block (- (point ) julia-max-block-lookback))))
0 commit comments