-
Notifications
You must be signed in to change notification settings - Fork 2
/
rbs-mode.el
299 lines (270 loc) · 7.23 KB
/
rbs-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
;;; rbs-mode.el --- A major mode for RBS -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Masafumi Koba
;; Author: Masafumi Koba
;; Version: 0.3.2
;; Package-Requires: ((emacs "24.5"))
;; Keywords: languages
;; URL: https://github.com/ybiquitous/rbs-mode
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; `rbs-mode' is a major mode for RBS (a type signature language for Ruby).
;; See also <https://github.com/ruby/rbs> for details about RBS.
;;; Code:
(require 'rx)
(defgroup rbs nil
"Major mode for editing RBS code."
:group 'languages
:prefix "rbs-")
(defcustom rbs-indent-level 2
"Indentation of RBS statements."
:group 'rbs
:type 'integer
:safe 'integerp)
(defun rbs-indent-line ()
"Correct the indentation of the current RBS line."
(indent-line-to (rbs-calculate-indent-level)))
(defun rbs-calculate-indent-level ()
"Return the proper indentation level of the current line."
(save-excursion
(let* ((prev-level (rbs-previous-indent-level))
(block-start-line-re (concat "^[[:space:]]*" (regexp-opt '("class" "module" "interface") 'symbols)))
(block-end-line-re (concat "^[[:space:]]*" (regexp-opt '("end") 'symbols))))
(cond
((string-match-p block-start-line-re (rbs-previous-line))
(+ prev-level rbs-indent-level))
((string-match-p block-end-line-re (rbs-current-line))
(max 0 (- prev-level rbs-indent-level)))
(t prev-level)))))
(defun rbs-current-line ()
"Return the current line."
(string-trim-right (thing-at-point 'line t)))
(defun rbs-previous-line ()
"Return the previous line."
(save-excursion
(forward-line -1)
(string-trim-right (thing-at-point 'line t))))
(defun rbs-previous-indent-level ()
"Return the previous indent level."
(save-excursion
(forward-line -1)
(current-indentation)))
(defconst rbs-mode--keyword-regexp
(regexp-opt
'("alias"
"attr_accessor"
"attr_reader"
"attr_writer"
"class"
"def"
"end"
"extend"
"extension"
"in"
"include"
"interface"
"module"
"unchecked"
"out"
"prepend"
"private"
"public"
"singleton"
"super"
"type")
'symbols))
(defconst rbs-mode--builtin-type-regexp
(rx
(or symbol-start "?" "*")
(group
(or
"any"
"bool"
"bool?"
"boolish"
"bot"
"class"
"class?"
"encoding"
"encoding?"
"exception"
"exception?"
"false"
"false?"
"instance"
"instance?"
"int"
"int?"
"io"
"io?"
"nil"
"real"
"real?"
"self"
"self?"
"string"
"string?"
"top"
"true"
"true?"
"untyped"
"void"))))
(defconst rbs-mode--core-type-regexp
(rx
(or space line-start "?" "*" "(" "[")
(group
(optional "::")
(or
"ArgumentError"
"Array"
"BasicObject"
"BigDecimal"
"Binding"
"Class"
"Comparable"
"Complex"
"Dir"
"ENV"
"Encoding"
"EncodingError"
"Enumerable"
"Enumerator"
"Errno"
"Exception"
"FalseClass"
"File"
"Float"
"Hash"
"IndexError"
"Integer"
"IO"
"Kernel"
"Logger"
"Method"
"Module"
"NameError"
"NilClass"
"Numeric"
"Object"
"Pathname"
"Proc"
"Process"
"Process::Status"
"Random"
"Random::Formatter"
"Range"
"RangeError"
"Rational"
"Regexp"
"RuntimeError"
"ScriptError"
"SignalException"
"StandardError"
"String"
"Struct"
"Symbol"
"SystemCallError"
"Thread"
"ThreadGroup"
"Time"
"TracePoint"
"TrueClass"
"UnboundMethod"
"_Each"
"_Exception"
"_Reader"
"_Writer"
"_ToAry"
"_ToHash"
"_ToInt"
"_ToI"
"_ToInt"
"_ToIO"
"_ToPath"
"_ToProc"
"_ToS"
"_ToStr"))
word-end))
(defconst rbs-mode--type-definition-regexp
(rx
symbol-start
(or "class" "extension" "interface" "module" "type")
(1+ space)
(group (1+ (not (any space "["))))))
(defconst rbs-mode--inheritance-regexp
(rx
(1+ space)
(or "<" ":")
(1+ space)
(group (1+ (not (any space "["))))))
(defconst rbs-mode--method-name-regexp
(rx
symbol-start
"def"
(1+ space)
(optional (or "self" "self?") ".")
(group (1+ (not (any ":" space))))
":"))
(defconst rbs-mode--alias-name-regexp
(rx
symbol-start
"alias"
(1+ space)
(optional (or "self" "self?") ".")
(group (1+ (not space)))
(1+ space)
(optional (or "self" "self?") ".")
(group (1+ (not space)))))
;; Include global variables
(defconst rbs-mode--constant-regexp
(rx
(or space line-start)
(group (or "$" ":" upper) (1+ (not space)))
":"
(1+ space)))
(defconst rbs-mode--instance-variable-regexp
(rx
(or space line-start)
(group "@" (1+ (not space)))
":"
(1+ space)))
(defconst rbs-mode--font-lock-keywords
`((,rbs-mode--keyword-regexp (1 font-lock-keyword-face))
(,rbs-mode--type-definition-regexp (1 font-lock-type-face))
(,rbs-mode--inheritance-regexp (1 font-lock-type-face))
(,rbs-mode--method-name-regexp (1 font-lock-function-name-face))
(,rbs-mode--alias-name-regexp (1 font-lock-function-name-face) (2 font-lock-function-name-face))
(,rbs-mode--constant-regexp (1 font-lock-constant-face))
(,rbs-mode--instance-variable-regexp (1 font-lock-variable-name-face))
(,rbs-mode--builtin-type-regexp (1 font-lock-builtin-face))
(,rbs-mode--core-type-regexp (1 font-lock-type-face))))
(defconst rbs-mode--syntax-table
(let* ((table (make-syntax-table)))
(modify-syntax-entry ?# "<" table)
(modify-syntax-entry ?\n ">" table)
(modify-syntax-entry ?\" "\"" table)
(modify-syntax-entry ?\' "\"" table)
(modify-syntax-entry ?\` "\"" table)
table))
;;;###autoload
(define-derived-mode rbs-mode prog-mode "RBS"
"Major mode for editing RBS code."
:syntax-table rbs-mode--syntax-table
(setq-local comment-start "#")
(setq-local comment-start-skip "#+[ \t]*")
(setq-local comment-end "")
(setq-local comment-use-syntax t)
(setq-local font-lock-defaults '(rbs-mode--font-lock-keywords))
(setq-local indent-line-function #'rbs-indent-line))
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.rbs\\'" . rbs-mode))
(provide 'rbs-mode)
;;; rbs-mode.el ends here