bhauman / rebel-readline

Terminal readline library for Clojure dialects
Eclipse Public License 1.0
680 stars 37 forks source link

Make backspace on line begin join lines #167

Open razum2um opened 6 years ago

razum2um commented 6 years ago

just like cursive/idea do if

(defn f [x]
       <BACKSPACE PRESSED HERE>(inc x))

lines become joined with a space

(defn f [x] (inc x))

@bhauman I'd like to help with it if you find it natural, just point me the place to change