forked from haskell/haskell-mode
-
Notifications
You must be signed in to change notification settings - Fork 13
/
purescript-sort-imports.el
126 lines (105 loc) · 4.75 KB
/
purescript-sort-imports.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
;;; purescript-sort-imports.el --- Sort the list of PureScript imports at the point alphabetically
;; Copyright (C) 2010 Chris Done
;; Author: Chris Done <[email protected]>
;; This file is not part of GNU Emacs.
;; 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
;; <http://www.gnu.org/licenses/>.
;;; Commentary:
;; If the region is active it sorts the imports within the
;; region.
;; This will align and sort the columns of the current import
;; list. It's more or less the coolest thing on the planet.
;;; Code:
(defvar purescript-sort-imports-regexp
(concat "^import[ ]+"
"\\(qualified \\)?"
"[ ]*\\(\"[^\"]*\" \\)?"
"[ ]*\\([A-Za-z0-9_.']*.*\\)"))
;;;###autoload
(defun purescript-sort-imports ()
(interactive)
"Sort the import list at point. It sorts the current group
i.e. an import list separated by blank lines on either side.
If the region is active, it will restrict the imports to sort
within that region."
(when (purescript-sort-imports-at-import)
(let* ((points (purescript-sort-imports-decl-points))
(current-string (buffer-substring-no-properties (car points)
(cdr points)))
(current-offset (- (point) (car points))))
(if (region-active-p)
(progn (goto-char (region-beginning))
(purescript-sort-imports-goto-import-start))
(purescript-sort-imports-goto-group-start))
(let ((start (point))
(imports (purescript-sort-imports-collect-imports)))
(delete-region start (point))
(mapc (lambda (import)
(insert import "\n"))
(sort imports (lambda (a b)
(string< (purescript-sort-imports-normalize a)
(purescript-sort-imports-normalize b)))))
(goto-char start)
(when (search-forward current-string nil t 1)
(forward-char (- (length current-string)))
(forward-char current-offset))))))
(defun purescript-sort-imports-normalize (i)
"Normalize an import, if possible, so that it can be sorted."
(if (string-match purescript-sort-imports-regexp
i)
(match-string 3 i)
i))
(defun purescript-sort-imports-collect-imports ()
(let ((imports (list)))
(while (looking-at "import")
(let* ((points (purescript-sort-imports-decl-points))
(string (buffer-substring-no-properties (car points)
(cdr points))))
(goto-char (min (1+ (cdr points))
(point-max)))
(setq imports (cons string imports))))
imports))
(defun purescript-sort-imports-goto-group-start ()
"Go to the start of the import group."
(or (and (search-backward "\n\n" nil t 1)
(goto-char (+ 2 (line-end-position))))
(when (search-backward-regexp "^module " nil t 1)
(goto-char (1+ (line-end-position))))
(goto-char (point-min))))
(defun purescript-sort-imports-at-import ()
"Are we at an import?"
(save-excursion
(purescript-sort-imports-goto-import-start)
(looking-at "import")))
(defun purescript-sort-imports-goto-import-start ()
"Go to the start of the import."
(goto-char (car (purescript-sort-imports-decl-points))))
(defun purescript-sort-imports-decl-points ()
"Get the points of the declaration."
(save-excursion
(let ((start (or (progn (goto-char (line-end-position))
(search-backward-regexp "^[^ \n]" nil t 1)
(unless (or (looking-at "^-}$")
(looking-at "^{-$"))
(point)))
0))
(end (progn (goto-char (1+ (point)))
(or (when (search-forward-regexp "[\n]+[^ \n]" nil t 1)
(forward-char -1)
(search-backward-regexp "[^\n ]" nil t)
(line-end-position))
(when (search-forward-regexp "\n" nil t 1)
(1- (point)))
(point-max)))))
(cons start end))))
(provide 'purescript-sort-imports)
;;; purescript-sort-imports.el ends here