6
如何在Nano中使制表符变成4个空格而不是8个空格?
当我在nano编辑器中按TAB时,光标将跳出8个空格,如下所示: def square(x): return x * x def cube(y): return y * y * y 我如何将制表位宽度设置为4个空格以显示如下: def square(x): return x * x def cube(y): return y * y * y
152
tabs
terminal
indentation
nano