Can't delete Parenthesis in IntelliJ/Cursive

2020-07-05 06:26发布

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?

4条回答
再贱就再见
2楼-- · 2020-07-05 06:35

Recently was moved to Edit > Structural Editing > Toggle Structural Editing Style

查看更多
姐就是有狂的资本
3楼-- · 2020-07-05 06:43

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.

查看更多
够拽才男人
4楼-- · 2020-07-05 06:43

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.

查看更多
兄弟一词,经得起流年.
5楼-- · 2020-07-05 06:53

You can delete the parenthesis while remaining in structural editing mode by selecting/highlighting it first with your cursor or shift+arrow. You'll then need to manually remove the corresponding close parenthesis too.

查看更多
登录 后发表回答