Default sort for buffer mode should be time not name.

pull/981/head
nicm 2017-06-09 15:17:20 +00:00
parent a2ca51c27a
commit 3ec28ceb9b
1 changed files with 2 additions and 2 deletions

View File

@ -46,13 +46,13 @@ const struct window_mode window_buffer_mode = {
};
enum window_buffer_sort_type {
WINDOW_BUFFER_BY_NAME,
WINDOW_BUFFER_BY_TIME,
WINDOW_BUFFER_BY_NAME,
WINDOW_BUFFER_BY_SIZE,
};
static const char *window_buffer_sort_list[] = {
"name",
"time",
"name",
"size"
};