Fork me on GitHub
#emacs
<
2018-08-04
>
stardiviner03:08:20

@dev-hartmann Hi, which part does not match the doc says? I write this ob-clojure-literate, I'm still not good at Elisp and Clojure, so might not very good enough to use it right now.

lleo18:08:22

I have a question about configuring emacs indentation.

lleo18:08:52

I would prefer my closing paren, if on a line of it’s own, be on the same column as the opening paren.

vemv19:08:08

How do I make (read-from-minibuffer "Tell me something") return nil if I press C-g? (rather than an error) I tried various incantations, to no avail

vemv19:08:14

Got it:

(defun vemv/read-from-minibuffer (&optional prompt)
  "Catches C-g as nil"
  (interactive)
  (let* ((inhibit-quit t)
         (output (with-local-quit
                   (read-from-minibuffer (or prompt "=> ")))))
    (or output
        (setq quit-flag nil))))

lilactown21:08:58

my CIDER is seriously messed up today

lilactown21:08:32

I’m trying to use deps.edn. It works in one project I’ve been developing for awhile, but today I started a new one and it’s completely horked

lilactown21:08:47

if I just cider-jack-in Emacs completely freezes

pauld21:08:05

see the cider group - a bunch of people that use deps.edn have a broken cider setup now.