Reputation: 6981
Anyone know of a plugin that'll display when open files were last edited? That's be super useful.
Upvotes: 0
Views: 147
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