|
31 | 31 | ;; |
32 | 32 | ;;; Commentary: |
33 | 33 | ;; This major modes uses tree-sitter for font-lock, indentation, imenu, and |
34 | | -;; navigation. It is derived from `julia-mode'. |
| 34 | +;; navigation. It is derived from `julia-mode'. |
35 | 35 |
|
36 | 36 | ;;;; Code: |
37 | 37 |
|
|
54 | 54 | ;; Notice that all custom variables and faces are automatically added to the |
55 | 55 | ;; most recent group. |
56 | 56 |
|
| 57 | +;; As of the grammar version 0.22, it uses the argument_list node for both |
| 58 | +;; function definitions and calls. |
| 59 | +(define-obsolete-variable-alias |
| 60 | + 'julia-ts-align-parameter-list-to-first-sibling |
| 61 | + 'julia-ts-align-argument-list-to-first-sibling |
| 62 | + "0.3") |
| 63 | + |
57 | 64 | (defcustom julia-ts-align-argument-list-to-first-sibling nil |
58 | 65 | "Align the argument list to the first sibling. |
59 | 66 |
|
@@ -86,13 +93,6 @@ Otherwise, the indentation is: |
86 | 93 | :version "29.1" |
87 | 94 | :type 'boolean) |
88 | 95 |
|
89 | | -;; As of the grammar version 0.22, it uses the argument_list node for both |
90 | | -;; function definitions and calls. |
91 | | -(define-obsolete-variable-alias |
92 | | - 'julia-ts-align-parameter-list-to-first-sibling |
93 | | - 'julia-ts-align-argument-list-to-first-sibling |
94 | | - "0.3") |
95 | | - |
96 | 96 | (defcustom julia-ts-align-curly-brace-expressions-to-first-sibling nil |
97 | 97 | "Align curly brace expressions to the first sibling. |
98 | 98 |
|
@@ -120,19 +120,19 @@ Otherwise, the indentation is: |
120 | 120 |
|
121 | 121 | (defface julia-ts-quoted-symbol-face |
122 | 122 | '((t :inherit font-lock-constant-face)) |
123 | | - "Face for quoted Julia symbols in `julia-ts-mode', e.g. :foo.") |
| 123 | + "Face for quoted Julia symbols in `julia-ts-mode', e.g., :foo.") |
124 | 124 |
|
125 | 125 | (defface julia-ts-keyword-argument-face |
126 | 126 | '((t :inherit font-lock-constant-face)) |
127 | 127 | "Face for keyword argument names in `julia-ts-mode'.") |
128 | 128 |
|
129 | 129 | (defface julia-ts-interpolation-expression-face |
130 | 130 | '((t :inherit font-lock-constant-face)) |
131 | | - "Face for interpolation expressions in `julia-ts-mode', e.g. $foo.") |
| 131 | + "Face for interpolation expressions in `julia-ts-mode', e.g., $foo.") |
132 | 132 |
|
133 | 133 | (defface julia-ts-string-interpolation-face |
134 | 134 | '((t :inherit font-lock-constant-face :weight bold)) |
135 | | - "Face for string interpolations in `julia-ts-mode', e.g. \"$foo\".") |
| 135 | + "Face for string interpolations in `julia-ts-mode', e.g., \"$foo\".") |
136 | 136 |
|
137 | 137 | (defvar julia-ts--keywords |
138 | 138 | '("baremodule" "begin" "catch" "const" "do" "else" "elseif" "end" "export" |
|
0 commit comments