Sublime Forum

How do I turn off auto indention?

#1

So, how do I do it?

(Not 100% sure this is the correct sub forum)

0 Likes

#2

Check the settings.

1 Like

#3

Uh…thanks…

0 Likes

#4

To know all possible settings: menu Preference -> Setting - Default
Here you’ll find a bunch of settings linked to indentation:

[code] // If translate_tabs_to_spaces is true, use_tab_stops will make tab and
// backspace insert/delete up to the next tabstop
“use_tab_stops”: true,

// Set to false to disable detection of tabs vs. spaces on load
"detect_indentation": true,

// Calculates indentation automatically when pressing enter
"auto_indent": true,

// Makes auto indent a little smarter, e.g., by indenting the next line
// after an if statement in C. Requires auto_indent to be enabled.
"smart_indent": true,[/code]

You can now copy those settings in your user setting file (menu Preference -> Setting - User) and set to false auto_indent and/or smart_indent

1 Like