This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-10
Channels
- # admin-announcements (1)
- # aleph (1)
- # asami (9)
- # babashka (30)
- # beginners (83)
- # calva (8)
- # cherry (4)
- # cider (4)
- # clj-kondo (15)
- # cljs-dev (11)
- # cljsrn (8)
- # clojure (85)
- # clojure-europe (87)
- # clojure-losangeles (9)
- # clojure-nl (4)
- # clojure-norway (4)
- # clojure-spec (3)
- # clojurescript (12)
- # community-development (5)
- # conjure (1)
- # core-typed (3)
- # datomic (21)
- # docker (13)
- # emacs (13)
- # funcool (1)
- # google-cloud (1)
- # graalvm (12)
- # gratitude (14)
- # holy-lambda (6)
- # introduce-yourself (18)
- # lsp (15)
- # malli (6)
- # matcher-combinators (15)
- # nbb (15)
- # off-topic (37)
- # pathom (31)
- # portal (23)
- # rdf (3)
- # releases (2)
- # reveal (2)
- # sci (4)
- # scittle (3)
- # shadow-cljs (14)
- # squint (2)
- # tools-deps (29)
Hi!
Is it possible to escape 14. august
in the beginning of a paragraph?
Quick context: in Norwegian, we write "August 14th" as "1. august". I've got a paragraph starting with that. And when I run my HTML export, I get $FIRST_IMAGE. I really want $SECOND_IMAGE. I'm aware I can work around this with $THIRD_IMAGE.
Any ideas?
This is a hack, and I look forward to somebody posting a real answer, but I have
(defun insert-zero-width-space ()
(interactive)
(insert-char #x200b))
defined, and putting a zero-width space before the 14 solves your problem. The reason I have it is for when I need to format parts of a word (and org-mode expects formatting characters to have whitespace on the side)Aaaah, nice! That's a great idea. I think I can use this for something else I've been struggling with too. Thank you! 😊
If I run emacs foo.clj
from the terminal, I get an Emacs with three buffers: *scratch*
, *Messages*
, and foo.clj
and have to q
out of the first two before I see the Clojure file. This is despite inhibit-startup-screen
being t
and initial-buffer-choice
being nil
. How do I set it so that the file passed in on the command line is the first buffer to be shown?
It's probably something in your config.
If I run /usr/bin/emacs -nw -Q foo.clj
the first buffer is foo.clj
.
It also works for me with my config (without -Q).
That's not helping you fix your problem but at least a pointer that it's not normal ;)
I'm looking for the lispy/lispyville function to "promote" an sexp, that is replace the parent sexp with the current sexp. Anyone know what that's called?
The difference between these two is that the clj-refactor version knows that #inst "2022"
is one expression, as an example.