Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>After a little hunting around together with Mikko's suggestion of looking at the change log:</p> <p>In Settings-User opened from <code>Preferences | Settings</code> add in the line</p> <pre><code>"highlight_modified_tabs": true, </code></pre> <p>This will make the tab text orange whenever there are unsaved changes to a file.</p> <p>To change the color from orange, a bit of further digging around and experimentation was needed and revealed that editing the theme was one way to change the color from orange.</p> <p>Theme files can be located in in the <code>Color Scheme - Default folder</code> accessed from the menu <code>Preferences | Browse Packages...</code> - you will have to make these changes for every theme that you'd like to change the text color for:</p> <pre><code>{ "class": "tab_control", "attributes": ["selected", "file_medium_dark"], "tint_modifier": [0, 255, 0, 40], "layer2.texture": "Theme - Default/medium_dark_selected_tab_bg.png", "layer2.opacity": 0.7 }, { "class": "tab_control", "attributes": ["dirty", "file_medium_dark"], "tint_modifier": [255, 0, 0, 40], "layer2.texture": "Theme - Default/medium_dark_selected_tab_bg.png", "layer2.opacity": 0.7 }, { "class": "tab_control", "attributes": ["selected", "dirty", "file_medium_dark"], "tint_modifier": [255, 255, 0, 40], "layer2.texture": "Theme - Default/medium_dark_selected_tab_bg.png", "layer2.opacity": 0.7 }, </code></pre> <p>It would be nice to be control the behavior of "selected" and "dirty" (=modified) separately. That might be possible with the layers, but I don't understand those well enough yet.</p> <p><strong>Addenda</strong></p> <p>(1) The above is for dark themes. For a light theme, omit the <code>"file_medium_dark"</code> from the attributes.</p> <p>(2) The same changes apear to work in <em>Sublime Text 3</em> (~/.config/sublime-text-3/Packages/Default.sublime-theme).</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload