We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4096113 commit dadefa7Copy full SHA for dadefa7
1 file changed
clj/src/vim_clojure_static/generate.clj
@@ -171,11 +171,12 @@
171
172
(def vim-unicode-category-char-classes
173
"Vimscript literal `syntax match` for Unicode General Category classes."
174
- (let [cats (:category character-properties)
+ (let [cats (sort (:category character-properties))
175
chrs (->> (map seq cats)
176
(group-by first)
177
(keys)
178
- (map str))]
+ (map str)
179
+ (sort))]
180
;; gc= and general_category= can be case insensitive, but this is behavior
181
;; is undefined.
182
(str
0 commit comments