diff options
author | Bert Münnich <be.muennich@gmail.com> | 2013-08-10 21:18:53 +0200 |
---|---|---|
committer | Bert Münnich <be.muennich@gmail.com> | 2013-08-10 21:18:53 +0200 |
commit | 7d878bd16df1abffde780e195144b845dc133166 (patch) | |
tree | ee956a3830bf27b82a2004b6e8f160ddf60a7011 /types.h | |
parent | 84d77b173288f838ffdbe2cd12061cf7a725f185 (diff) |
Added file marks; fixes issue #94
- Command it_toggle_image_mark (bound to 'm') toggles mark of current
image
- Command it_navigate_marked (bound to 'N'/'P') can be used to go to
the next/previous marked image
- When option -o is given, all marked files get printed
Diffstat (limited to 'types.h')
-rw-r--r-- | types.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -69,6 +69,7 @@ typedef struct { const char *path; /* always absolute */ const char *base; bool loaded; + bool marked; } fileinfo_t; /* timeouts in milliseconds: */ |