Search code examples
sublimetext3sublimetextsublime-text-plugin

Sublime 3: plugin to see when file was last edited?


Anyone know of a plugin that'll display when open files were last edited? That's be super useful.


Solution

  • This function (along with many others) is present in SideBarEnhancements. Copy the package's default settings to its user settings, then set the following attributes:

    "statusbar_modified_time": true,
    "statusbar_modified_time_format": "%Y.%m.%d %H:%M:%S",
    "statusbar_modified_time_locale": "",
    

    Use strftime.org to learn about all the different format string options. This particular one would read out 2016.05.09 15.49.56, for example.