diff options
author | Nicolas Cornu <ncornu@aldebaran.com> | 2017-03-06 16:44:39 +0100 |
---|---|---|
committer | Nicolas Cornu <ncornu@aldebaran.com> | 2017-03-06 16:46:33 +0100 |
commit | ffffb53a1d2c21fa5334b78a1f2bf0b440ebbeb6 (patch) | |
tree | d3aa4cd11ff9671dc2cfe0d89677f95f2892798e | |
parent | f489b0363b059aa7161d2a92a98c2dc8c067b8a8 (diff) | |
download | imv-ffffb53a1d2c21fa5334b78a1f2bf0b440ebbeb6.tar.gz |
Add command 'X' to remove image from disk too
-rw-r--r-- | doc/imv.1 | 2 | ||||
-rw-r--r-- | src/main.c | 12 |
2 files changed, 13 insertions, 1 deletions
@@ -117,6 +117,8 @@ Pan up. Pan right. .It Cm x Close current image. +.It Cm X +Close current image and remove it from disk. .It Cm d Toggle display of textual overlay. .It Cm f @@ -417,7 +417,17 @@ int main(int argc, char** argv) break; case SDLK_x: if(!e.key.repeat) { - imv_navigator_remove(&nav, imv_navigator_selection(&nav)); + char* path = strdup(imv_navigator_selection(&nav)); + imv_navigator_remove(&nav, path); + + if (SDL_GetModState() & KMOD_SHIFT) { + if (remove(path)) { + fprintf(stderr, "Warning: can't remove %s from disk.\n", path); + } + } + + free(path); + /* reset slideshow delay */ delay_msec = 0; } |