Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't delete Parenthesis in IntelliJ/Cursive

I'm using IntelliJ/Cursive to write Clojure. I found out that the only way to erase parenthesis is to totally erase the content inside them, and only then, the parenthesis can be deleted. For example, let's say that I have the following code:

(list)

and I want to delete only the opening parenthesis. Once I hit backspace on the opening parenthesis, the IDE ignores this act. Only when I erase the word "list", the parenthesis can be deleted.

Does anyone have any idea how to solve this?

like image 444
CrazySynthax Avatar asked Jan 29 '16 18:01

CrazySynthax


2 Answers

From the docs:

Structural editing comes enabled for Clojure code by default. If you don't like it, you can turn it off at Settings→Editor→General→Smart Keys→Use structural editing. If you'd like to toggle it on and off quickly, you can use the widget in the status bar at the bottom of the screen, or you can use the Edit→Structural Editing→Toggle Structural Editing Style action. If you find yourself doing that a lot you can even assign a shortcut key to the action.

like image 144
CrazySynthax Avatar answered Sep 30 '22 05:09

CrazySynthax


There is another way to remove parenthesis, using the structural editing command "Splice Sexp". You can also use slurping and barfing to manipulate the parenthesis to the order that you want.

like image 38
Daniel Compton Avatar answered Sep 30 '22 06:09

Daniel Compton