We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5163b70 commit 3791b53Copy full SHA for 3791b53
clj/src/vim_clojure_static/generate.clj
@@ -105,11 +105,11 @@
105
(def keyword-groups
106
"Special forms, constants, and every public var in clojure.core keyed by
107
syntax group name."
108
- (let [builtins {"clojureConstant" '#{nil}
+ (let [exceptions '#{throw try catch finally}
109
+ builtins {"clojureConstant" '#{nil}
110
"clojureBoolean" '#{true false}
- "clojureSpecial" special-forms
111
- ;; These are duplicates from special-forms
112
- "clojureException" '#{throw try catch finally}
+ "clojureSpecial" (apply disj special-forms exceptions)
+ "clojureException" exceptions
113
"clojureCond" '#{case cond cond-> cond->> condp if-let
114
if-not if-some when when-first when-let
115
when-not when-some}
0 commit comments