This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-05-22
Channels
- # ai (1)
- # announcements (1)
- # babashka (9)
- # beginners (18)
- # calva (19)
- # clerk (136)
- # clj-http (3)
- # clj-kondo (13)
- # cljs-dev (166)
- # clojure (39)
- # clojure-europe (133)
- # clojure-nl (1)
- # clojure-norway (5)
- # clojure-uk (12)
- # clr (1)
- # community-development (6)
- # conjure (8)
- # cursive (13)
- # data-science (1)
- # datomic (26)
- # events (5)
- # fulcro (12)
- # gratitude (3)
- # honeysql (9)
- # hyperfiddle (33)
- # introduce-yourself (6)
- # kaocha (1)
- # lambdaisland (5)
- # malli (4)
- # off-topic (3)
- # rdf (4)
- # re-frame (3)
- # releases (3)
- # scittle (11)
- # specter (2)
- # sql (4)
- # tools-deps (4)
- # vim (10)
Is there a way to figure out which plugin/setting I have that does auto insertion of "
, so when I write "
I end up with ""
?
I currently have an undesired behavior where I get nested quotes when I type "
inside a string in insert mode. This hasn't been a problem earlier, so it's something that showed up after I migrated to a new config. GIF in 🧵 :
:imap
will tell you what insert-mode mappings you have, you’ll probably find "
in there.
Yeah, thanks for the imap tip! I wonder why their little fix worked before but not post fennel:
it uses the built-in regex-based syntax highlighting to determine when in a string or not, and doesn't use tree-sitter, so if you only rely on tree-sitter highlighting, it won't work
haha we've all suffered in this space for a long time