Fork me on GitHub
#emacs
<
2017-02-28
>
hlolli09:02:15

Trying to kill backwards in same paredit manner as I kill forward, but it's too aggressive, my attempt is here

(defun backward-kill-line (arg)
  "Kill ARG lines backward."
  (interactive "p")
  (paredit-kill (- 1 arg)))

(define-key paredit-mode-map (kbd "C-S-k") 'backward-kill-line)
anyone that kills backwards that has a function to share?

gregnwosu15:02:13

is there a minor mode that can autocomplete for hiccup?

richiardiandrea17:02:07

has anybody tried company-mode for completion in inf-clojure?