This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-11-09
Channels
- # announcements (7)
- # beginners (84)
- # calva (3)
- # cljs-dev (19)
- # cljsrn (1)
- # clojure (64)
- # clojure-dev (31)
- # clojure-italy (13)
- # clojure-nl (6)
- # clojure-spec (4)
- # clojure-uk (35)
- # clojurescript (4)
- # clojurex (86)
- # datomic (4)
- # fulcro (11)
- # graalvm (93)
- # joker (5)
- # nrepl (32)
- # off-topic (45)
- # pedestal (4)
- # reagent (3)
- # rewrite-clj (12)
- # sql (17)
- # tools-deps (4)
- # vim (28)
Anyone knows how to control width and order of those columns?
or even how to call them - are they the floating windows?
checked Urban Dictionary for pumu 😂
popup menu
I'm on neovim
but found my way around ... thanks for help
@UA2R84M28 any findings you can share?
so: my understanding is that these are floating windows coming from coc.nvim via conjure completion source
the reason the doc part gets squished is because conjure includes first full name of the function then namespace then arguments if one the completion candidates is long and/or namespace is long then the result leaves little space for documentation
For now I've changed my local conjure source action.clj
to not include namespace - I can live without it
If you need customisation I could potentially add a hook for it that'd let you edit the columns as you see fit :thinking_face:
Envious a bit at the moment of Emacs people dealing only with elisp and not VimL, Lua, Python and Javascript!
I'll be replacing the viml and lua with fennel soon, maybe that'll help a little. I never liked elisp anyway 😅
Added the idea for a completion hook to my to-do list. Shouldn't take long, will allow you to reorder rows and modify / reorder columns to your heart's content.
@U38J3881W it's the first time I've come across issue with too long namespace/function names squeezing out docs, I'll pay attention if it's an actual issue. I thought maybe shortening namespaces might be a solution? Maybe (if possible) trying to be smart about size of the completion options on small screens?
clojure.core.match
-> c.c.match
thanks for a great plugin by the way, I really enjoy using it!
That'll definitely be possible with this hook, then it's just a snippet people can add to their config if they want it. Thanks for the positive feedback, it means a lot! 😊
@U38J3881W the guy that created fennel has created janet-lang which is awesome for scripting but doesnt tranpile to lua. It is very similar to clojure so you might want to take a look.