Skip to content

Commit 7de8918

Browse files
committed
Change kind info to be more descriptive
This breaks with the vim docs, but does that really matter? I noticed vim-fireplace also breaks with the vim-docs in this way...
1 parent 746dfd1 commit 7de8918

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/socket_repl/socket_repl_plugin.clj

+7-7
Original file line numberDiff line numberDiff line change
@@ -314,16 +314,16 @@
314314
"menu" (or (str arglists) (str ns))
315315
"info" (str doc)
316316
"kind" (case type
317-
:class "t"
317+
:class "c"
318318
:function "f"
319-
:keyword "v"
319+
:keyword "k"
320320
:local (if arglists "f" "v")
321-
:macro "d"
321+
:macro "m"
322322
:method "f"
323-
:namespace "t"
324-
:resource "t"
325-
:special-form "d"
326-
:static-field "m"
323+
:namespace "n"
324+
:resource "r"
325+
:special-form "s"
326+
:static-field "l"
327327
"")})
328328
(edn/read-string (:val matches)))]
329329
r)

0 commit comments

Comments
 (0)