olimorris / persisted.nvim

💾 Simple session management for Neovim with git branching, autoloading and Telescope support
MIT License
418 stars 24 forks source link

fix: remove unused last_modified property #126

Closed calops closed 2 months ago

calops commented 2 months ago

The stat command takes different options on different systems. For example, the current command fails (and pollutes the terminal) on OSX.

As the last_modified property isn't used anywhere, I just removed it entirely here. I was initially planning on using it as a sorting key in telescope to have the latest used sessions first in the list, but I couldn't manage it. Maybe I'll get back to it someday.

olimorris commented 2 months ago

Thanks and good suggestion!