Feature request: Sort FuzzyBuffers by last access
Closed this issue · 3 comments
sindrom91 commented
It would be nice if there was an option to list buffers by most recent access instead of name.
Donaldttt commented
This feature is added in the latest commit.
sindrom91 commented
This doesn't seem to work for me. Order always seems to be the same.
sindrom91 commented
It works fine for me what I change the sorting function in the following way:
return buf_dict[a][3] == buf_dict[b][3] ? 0 :
buf_dict[a][3] < buf_dict[b][3] ? 1 : -1