本文介绍了无法在IntelliJ/Cursive中删除括号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用IntelliJ/Cursive编写Clojure.我发现擦除括号的唯一方法是完全擦除其中的内容,然后才可以删除括号.例如,假设我有以下代码:

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)

,我只想删除左括号.一旦在开头的括号中按了退格键,IDE将忽略此行为.仅当我删除列表"一词时,括号才能删除.

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?

推荐答案

来自文档:

这篇关于无法在IntelliJ/Cursive中删除括号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 23:58