Sublime Text 2 : colour of edited file tab?

前端 未结 3 1091
花落未央
花落未央 2021-01-31 07:45

I see that the Sublime Text theme (.config/sublime-text-2/Packages/Theme - Default/Default.sublime-theme) can be edited to make the open tab more obvious.

For that I use

3条回答
  •  耶瑟儿~
    2021-01-31 08:10

    After a little hunting around together with Mikko's suggestion of looking at the change log:

    In Settings-User opened from Preferences | Settings add in the line

    "highlight_modified_tabs": true,
    

    This will make the tab text orange whenever there are unsaved changes to a file.

    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.

    Theme files can be located in in the Color Scheme - Default folder accessed from the menu Preferences | Browse Packages... - you will have to make these changes for every theme that you'd like to change the text color for:

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

    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.

    Addenda

    (1) The above is for dark themes. For a light theme, omit the "file_medium_dark" from the attributes.

    (2) The same changes apear to work in Sublime Text 3 (~/.config/sublime-text-3/Packages/Default.sublime-theme).

提交回复
热议问题