When I press TAB in nano editor, the cursor will jump with 8 spaces like this:
def square(x):
return x * x
def cube(y):
return y * y * y
how can I set the tab stop width to 4 spaces to display like this:
def square(x):
return x * x
def cube(y):
return y * y * y

tabcommand, which doesn't affect all programs. – Chris Page Jun 25 '12 at 5:54