This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-16
Channels
- # announcements (33)
- # atom-editor (1)
- # aws (21)
- # babashka (174)
- # babashka-sci-dev (2)
- # beginners (59)
- # calva (4)
- # chlorine-clover (9)
- # clj-kondo (51)
- # clojars (7)
- # clojure (86)
- # clojure-czech (4)
- # clojure-europe (21)
- # clojure-france (6)
- # clojure-nl (1)
- # clojure-uk (2)
- # conjure (7)
- # core-async (3)
- # core-logic (3)
- # cursive (10)
- # data-science (8)
- # datalevin (14)
- # datomic (12)
- # events (1)
- # fulcro (5)
- # graalvm (10)
- # gratitude (3)
- # honeysql (3)
- # hyperfiddle (3)
- # introduce-yourself (4)
- # joyride (3)
- # leiningen (3)
- # malli (13)
- # minecraft (15)
- # music (1)
- # off-topic (40)
- # pathom (16)
- # polylith (28)
- # portal (25)
- # rdf (15)
- # remote-jobs (3)
- # shadow-cljs (23)
- # specter (1)
- # sql (5)
- # tools-deps (25)
- # xtdb (31)
Howdy all 👋
Is there any kind of exclude list if I don't want a certain kind of file to automatically connect to conjure?
For example, currently if I open up a .lisp
file, it connects to conjure and doesn't allow me to connect to the CL plugin I normally use, vlime
.
conjure is awesome, but for the tiny amount of CL code I write, I'm already set in my ways... having a way to tell conjure to ignore would be helpful.
Didn't see anything in the code or docs (...didn't look super hard 😬 ) so thought I'd ask here.
Takes 2 seconds to comment out conjure from my init file before opening up a lisp file if not, so not a big deal, just wanted to check. Thx!!
@U01E4ELDYM9 Sure enough...
:h g:conjure#filetyes
`g:conjure#filetypes`
A list of filetypes Conjure should be associated with. Conjure
will then look up which client module to use for this filetype
using `g:conjure#filetype#[filetype]`, which should be a string
that resolves to a Lua module that adheres to the
|conjure-clients| interface.
Conjure will only initialise for filetypes in this list. It also
will not load if the file type is in this list but there isn't an
equivalent `g:conjure#filetype#[filetype]` configuration value.
. Thank you!!if so, it may make sense to use update-in
to remove the value instead of having to maintain the list yourself