Top "Indentation" questions

Indenting is used to organize code by indicating blocks, closures, conditionals, and other constructs.

How do I fix the indentation of an entire file in Vi?

In Vim, what is the command to correct the indentation of all the lines? Often times I'll copy and paste …

vim vi indentation
Indentation shortcuts in Visual Studio

I'm new to Visual Studio 2010 and C#. How can I indent the selected text to left/right by using shortcuts? …

c# visual-studio-2010 delphi indentation
How do I autoindent in Netbeans?

In eclipse you can click Ctrl+I at any line, and it'll automatically indent the line or group of lines …

java netbeans ide indentation
"Expected an indented block" error?

I can't understand why python gives an "Expected indentation block" error? """ This module prints all the items within a list""" …

python indentation docstring
How do I force Sublime Text to indent two spaces per tab?

Is there a way to force Sublime Text 2 to always indent two spaces per tab when working with Ruby files? …

editor sublimetext2 sublimetext indentation
How to correct indentation in IntelliJ

How can indentation be automatically (not manually) corrected in IntelliJ? In Eclipse, it's possible to just highlight the code that …

intellij-idea indentation
How to automatically indent source code?

How can I automatically indent source code in Visual Studio 2010? I have used Ctrl + K, Ctrl + F, but it does …

visual-studio-2010 visual-studio indentation
Changing Vim indentation behavior by file type

Could someone explain to me in simple terms the easiest way to change the indentation behavior of Vim based on …

file vim settings indentation
How to indent/format a selection of code in Visual Studio Code with Ctrl + Shift + F

I want to indent a specific section of code in Visual Studio Code. I read How do you format code …

visual-studio-code indentation
What is the proper way to format a multi-line dict in Python?

In Python, I want to write a multi-line dict in my code. There are a couple of ways one could …

python indentation code-formatting multiline