Sublime Text - Preferences

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen

To change preferences in Sublime Text:

  • Go to Preferences » Settings
  • Two files will now open: Default settings on the left and user settings on the right
  • Edit and safe the file on the right. Make sure that everything is within one set of { and } symbols.

Example

Correct:

{
   // "draw_white_space": "all",
   // 
   "font_size": 10,

   // Added: 2024.06.14
   //
   "tab_size": 3,
   "translate_tabs_to_spaces": false,
   "detect_indentation": false
}

Incorrect:

{
   // "draw_white_space": "all",
   // 
   "font_size": 10,
}
{
   // Added: 2024.06.14
   //
   "tab_size": 3,
   "translate_tabs_to_spaces": false,
   "detect_indentation": false
}