Skip to content

Commit dadefa7

Browse files
committed
Replace commented comment macro
1 parent 4096113 commit dadefa7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

clj/src/vim_clojure_static/generate.clj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,12 @@
171171

172172
(def vim-unicode-category-char-classes
173173
"Vimscript literal `syntax match` for Unicode General Category classes."
174-
(let [cats (:category character-properties)
174+
(let [cats (sort (:category character-properties))
175175
chrs (->> (map seq cats)
176176
(group-by first)
177177
(keys)
178-
(map str))]
178+
(map str)
179+
(sort))]
179180
;; gc= and general_category= can be case insensitive, but this is behavior
180181
;; is undefined.
181182
(str

0 commit comments

Comments
 (0)