-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
gleam-mode.el
219 lines (179 loc) · 7.78 KB
/
gleam-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
;;; gleam-mode.el --- Major mode for Gleam -*- lexical-binding: t -*-
;; Copyright © 2021-2022 Louis Pilfold <[email protected]>
;; Authors: Jonathan Arnett <[email protected]>
;;
;; URL: https://github.com/gleam-lang/gleam-mode
;; Keywords: languages gleam
;; Version: 0.1.0
;; Package-Requires: ((emacs "26.1") (tree-sitter "0.15.0"))
;; This file is NOT part of GNU Emacs.
;; This program is licensed under The Apache License¹, Version 2.0 or,
;; at your option, under the terms of the GNU General Public License²
;; as published by the Free Software Foundation; either version 3, or
;; (at your option) any later version.
;; ¹ You may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;; ² 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 package. If not, see https://www.gnu.org/licenses.
;;; Commentary:
;; Provides syntax highlighting, indentation, and code navigation
;; features for the Gleam programming language.
;;; Code:
(require 'tree-sitter)
(require 'tree-sitter-indent)
;;; Customization
(defgroup gleam nil
"Major mode for Gleam"
:prefix "gleam-"
:group 'languages)
(defcustom gleam-mode-hook nil
"Hook that runs when gleam-mode starts."
:type 'hook)
(defvar gleam-indent-offset 2
"Offset used to indent Gleam code.")
;;; Mode definitions
(defvar gleam-mode-map
(let ((map (make-sparse-keymap)))
map)
"Keymap used in gleam-mode buffers.")
(defcustom tree-sitter-indent-gleam-scopes
'((indent-all . ())
(indent-rest . (
target_group
import
function
public_function
anonymous_function
external_function
public_external_function
type_definition
public_type_definition
public_opaque_type_definition
type_alias
public_type_alias
arguments
parameters
case
case_clause))
(indent-body . ())
(paren-indent . ())
(multi-line-text . ())
(outdent . ("}" ")")))
"`tree-sitter-indent' indentation rules based on AST.")
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.gleam\\'" . gleam-mode))
;;;###autoload
(define-derived-mode gleam-mode prog-mode "Gleam"
"Major mode for Gleam.
Key bindings:
\\{gleam-mode-map}"
;;; Configure tree-sitter and friends
;; Compile tree-sitter grammar if we haven't already
(unless (file-exists-p (concat gleam-mode--tree-sitter-dir "gleam.so"))
(gleam-mode--compile-grammar))
(add-to-list 'tree-sitter-load-path gleam-mode--tree-sitter-dir)
(tree-sitter-load 'gleam)
(add-to-list 'tree-sitter-major-mode-language-alist '(gleam-mode . gleam))
(setq tree-sitter-hl-default-patterns (gleam-mode--read-highlight-query))
(tree-sitter-mode)
(tree-sitter-hl-mode)
(tree-sitter-indent-mode)
;;; Configure Emacs settings
(setq-local indent-tabs-mode nil)
;; Comment settings
(setq-local comment-start "// ")
(setq-local comment-end "")
(setq-local comment-start-skip "//+ *")
(setq-local comment-use-syntax nil)
(setq-local comment-auto-fill-only-comments t)
;; Register compilation error format
(add-to-list 'compilation-error-regexp-alist-alist '(gleam "┌─ \\([^ ]+\\.gleam\\):\\([0-9]+\\):\\([0-9]+\\)" 1 2 3))
(add-to-list 'compilation-error-regexp-alist 'gleam)
;; Imenu settings
(setq-local imenu-generic-expression gleam-imenu-generic-expression)
(setq-local imenu-case-fold-search nil))
;;; Public functions
(defun gleam-format ()
"Format the current buffer using the `gleam format' command."
(interactive)
(if (executable-find "gleam")
(save-restriction ; Save the user's narrowing, if any
(widen) ; Expand scope to the whole, unnarrowed buffer
(let* ((buf (current-buffer))
(min (point-min))
(max (point-max))
(tmpfile (make-nearby-temp-file "gleam-format")))
(unwind-protect
(with-temp-buffer
(insert-buffer-substring-no-properties buf min max)
(write-file tmpfile)
(call-process "gleam" nil nil nil "format" (buffer-file-name))
(revert-buffer :ignore-autosave :noconfirm)
(let ((tmpbuf (current-buffer)))
(with-current-buffer buf
(replace-buffer-contents tmpbuf))))
(if (file-exists-p tmpfile) (delete-file tmpfile)))
(message "Formatted!")))
(message "`gleam' executable not found!")))
(defvar gleam-imenu-generic-expression
'(("Private Constants" "^\\s-*const\\s-+\\([_a-z][_0-9a-z]*\\)\\s-+.*$" 1)
("Public Constants" "^\\s-*pub\\s-+const\\s-+\\([_a-z][_0-9a-z]*\\)\\s-+.*$" 1)
("Private External Types" "^\\s-*external\\s-+type\\s-+\\([A-Z][_0-9a-zA-Z]*\\).*$" 1)
("Public External Types" "^\\s-*pub\\s-+external\\s-+type\\s-+\\([A-Z][_0-9a-zA-Z]*\\).*$" 1)
("Private External Functions" "^\\s-*external\\s-+fn\\s-+\\([_a-z][_0-9a-z]*\\).*$" 1)
("Public External Functions" "^\\s-*pub\\s-+external\\s-+fn\\s-+\\([_a-z][_0-9a-z]*\\).*$" 1)
("Private Functions" "^\\s-*fn\\s-+\\([_a-z][_0-9a-z]*\\).*$" 1)
("Public Functions" "^\\s-*pub\\s-+fn\\s-+\\([_a-z][_0-9a-z]*\\).*$" 1)
("Private Types" "^\\s-*type\\s-+\\([A-Z][_0-9a-zA-Z]*\\).*$" 1)
("Public Types" "^\\s-*pub\\s-+type\\s-+\\([A-Z][_0-9a-zA-Z]*\\).*$" 1)
("Public Opaque Types" "^\\s-*pub\\s-+opaque\\s-+type\\s-+\\([A-Z][_0-9a-zA-Z]*\\).*$" 1))
"Imenu patterns for `gleam-mode'.")
;;; Private functions
(defconst gleam-mode--dir
(file-name-directory (locate-library "gleam-mode.el"))
"The directory where the library `gleam-mode' is located.")
(defconst gleam-mode--tree-sitter-dir
(concat gleam-mode--dir
(file-name-as-directory "tree-sitter-gleam"))
"The directory where `tree-sitter-gleam' is located.")
(defconst gleam-mode--queries-dir
(concat gleam-mode--tree-sitter-dir
(file-name-as-directory "queries"))
"The directory where the tree-sitter-gleam query files can be found.")
(defconst gleam-mode--highlights-query-file
(concat gleam-mode--queries-dir "highlights.scm")
"The file containing the highlight queries for tree-sitter-gleam.")
(defun gleam-mode--compile-grammar ()
"Compile the tree-sitter-grammar to a shared library for loading."
(if (executable-find "cc")
(let ((default-directory gleam-mode--tree-sitter-dir))
(call-process "cc" nil nil nil
"-shared"
"-fPIC"
"-g"
"-O2"
"-I" "src"
"src/parser.c"
"src/scanner.c"
"-o" "gleam.so"))
(message "A C compiler is required to build the tree-sitter grammar.")))
(defun gleam-mode--read-highlight-query ()
"Read the contents of the tree-sitter-gleam highlight query."
(with-temp-buffer
(insert-file-contents gleam-mode--highlights-query-file)
(buffer-string)))
(provide 'gleam-mode)
;;; gleam-mode.el ends here