Fork me on GitHub
#cider
<
2018-01-08
>
chrisblom10:01:31

is it possible to mark a function for debugging without jumping to the definition first?

chrisblom10:01:13

nevermind, now using this:

(defun my/cider-debug-var-at-point ()
  (interactive)
  (save-excursion
    (cider-find-var)
    (cider-debug-defun-at-point)))

bozhidar19:01:51

We never implemented some completing selection of all vars, it would have been a nice way to solve your issue.

bozhidar19:01:17

I guess we can also add something like this to the ns browser.

arrdem22:01:51

What all would it take to font-lock “```clj” blocks in docstrings?