implementation of keeping the index of current file in between dir changes

This commit is contained in:
nova
2026-05-25 17:36:39 +02:00
parent e42d55e66a
commit d33ac88de2
3 changed files with 56 additions and 17 deletions

View File

@@ -108,7 +108,7 @@ typedef struct Yank {
} yank;
typedef struct Linked_dir {
char *path;
unsigned long selected_file_current;
unsigned long index;
struct Linked_dir *next;
} linked_dir;