1

I need to use spaces instead of tabs and unfortunately I can't explain Visual Studio 2013 to show every 4 spaces as tab-stop. Example:

def hello():
....for i in range(3):
........print('Hello world!')

but i need something like

def hello():
...|for i in range(3):
...|...|print('Hello world!')

I mean i don't need exactly vertical line character, just somehow distinguish indents.

By the way Geany IDE makes it great.

EDIT: Visual Studio does show me spaces, it doesn't show vertical lines.

kernelbug
  • 151
  • 1
  • 2
  • 13

2 Answers2

1

Looks like i have found solution: you need to install "Indent Guides" extension to VS. http://visualstudiogallery.msdn.microsoft.com/e792686d-542b-474a-8c55-630980e72c30

kernelbug
  • 151
  • 1
  • 2
  • 13
0

Download and install the Productivity Power Tools for VS2015 and than you can find these options in the edit > advanced menu.

Cerveser
  • 752
  • 8
  • 23