t56k
t56k

Reputation: 6981

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.

Upvotes: 0

Views: 147

Answers (1)

MattDMo
MattDMo

Reputation: 102852

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.

Upvotes: 4

Related Questions