Sublime Text - Preferences

Uit De Vliegende Brigade
Versie door Jeroen Strompf (overleg | bijdragen) op 14 jun 2024 om 08:28 (Nieuwe pagina aangemaakt met 'To change preferences in Sublime Text: * Go to <code>Preferences » Settings</code> * Two files will now open: Default settings on the left and user settings on th...')
(wijz) ← Oudere versie | Huidige versie (wijz) | Nieuwere versie → (wijz)
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

{
   // "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
}