From c78626b4c177a1279a3f7a8cae7df45c44beaea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nis=20B=C3=B6rge=20Wechselberg?= Date: Thu, 20 Nov 2014 09:02:31 +0100 Subject: [PATCH] Dropped comments on user preferences, automatic removed by sublime --- .../User/Preferences.sublime-settings | 71 ++++--------------- 1 file changed, 15 insertions(+), 56 deletions(-) diff --git a/sublime-text-3/Packages/User/Preferences.sublime-settings b/sublime-text-3/Packages/User/Preferences.sublime-settings index 18b5f4f..c5cebc5 100644 --- a/sublime-text-3/Packages/User/Preferences.sublime-settings +++ b/sublime-text-3/Packages/User/Preferences.sublime-settings @@ -1,60 +1,19 @@ { - // Sets the colors used within the text area + "caret_style": "phase", "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", - - // Note that the font_face and font_size are overridden in the platform - // specific settings file, for example, "Preferences (Linux).sublime-settings". - // Because of this, setting them here will have no effect: you must set them - // in your User File Preferences. - "font_size": 11, - - // Set to true to turn spell checking on by default - "spell_check": true, - - // The number of spaces a tab is considered equal to - "tab_size": 2, - - // Set to true to insert spaces when tab is pressed - "translate_tabs_to_spaces": true, - - // Valid values are "smooth", "phase", "blink" and "solid". - "caret_style": "phase", - - // Set to true to removing trailing white space on save - "trim_trailing_white_space_on_save": true, - - // Set to true to ensure the last line of the file ends in a newline - // character when saving - "ensure_newline_at_eof_on_save": true, - - // Set to true to automatically save files when switching to a different file - // or application - "save_on_focus_lost": true, - - // The encoding to use when the encoding can't be determined automatically. - // ASCII, UTF-8 and UTF-16 encodings will be automatically detected. - // "fallback_encoding": "UTF-8", - - // When enabled, pressing tab will insert the best matching completion. - // When disabled, tab will only trigger snippets or insert a tab. - // Shift+tab can be used to insert an explicit tab when tab_completion is - // enabled. - "tab_completion": false, - - // By default, shift+tab will only unindent if the selection spans - // multiple lines. When pressing shift+tab at other times, it'll insert a - // tab character - this allows tabs to be inserted when tab_completion is - // enabled. Set this to true to make shift+tab always unindent, instead of - // inserting tabs. - "shift_tab_unindent": true, - - // Display file encoding in the status bar - "show_encoding": true, - - // List any packages to ignore here. When removing entries from this list, - // a restart may be required if the package contains plugins. - "ignored_packages": ["Vintage"], - - // Set font for figlet plugin + "ensure_newline_at_eof_on_save": true, "figlet_font": "banner3", + "font_size": 11, + "ignored_packages": + [ + "Vintage" + ], + "save_on_focus_lost": true, + "shift_tab_unindent": true, + "show_encoding": true, + "spell_check": true, + "tab_completion": false, + "tab_size": 2, + "translate_tabs_to_spaces": true, + "trim_trailing_white_space_on_save": true }