Deleting symbols, words & expressionsλ︎
In lisp-state you can easily delete symbols, words and expressions without deleting the structures they are in (unless that structure is empty).
Delete a symbol, word or expression using the d
menu
lisp-state | Description |
---|---|
d s | delete the current symbol |
d w | delete the current word |
d x | delete the current expression |
Evil Safe Structural Editing
Enable evil-cleverparens to Vim editing respect structural editing. For example, using
d d
will delete a line within a function without unbalancing the outer parenthesis. Closing parentheses are pulled up to the preceding line, keeping the correct formatting for the Clojure code.