我无法说出这句话

时间:2019-02-11 15:43:00

标签: intellij-idea editor

当我尝试将一个单词带到行首时,它会跳到第一行,但我不想要它。我使用制表符缩进代替空格,希望我不需要将空格用作缩进。

示例: 我用 const bob = you.southernNeighbour; const alice = bob.southernNeighbour; const eve = alice.southernNeighbour; // ... let current = you; // you start where you are. while(current) // as long as there is a house, walk current = current.southernNeighbour; // go to the next southern neighbour 字符指示了光标在哪里

|

当我按退格键时,光标所在的行跳到第一行,新代码如下所示

class MyClass {
    int abc;
    |// comment
}

但是我希望它看起来像这样

class MyClass {
    int abc;|// comment
}

1 个答案:

答案 0 :(得分:1)

您可以在此处更改Backspace Unindent行为:

unindent