Multi Commander Support Forum

Multi Commander => Feature Requests and Suggestions => Topic started by: SDV on February 17, 2019, 10:31:24

Title: Picture Viewer go to next/previous image
Post by: SDV on February 17, 2019, 10:31:24
Hello,
my suggestion is to add some feature to quickly move to the next or previous image in the Picture Viewer mode.
It would be useful for example on MTP-devices while thumbnails are not visible and you need to look through your photos.

At the moment I've got a simple AutoHotkey script for this purpose:

Code: [Select]
; Ctrl-Alt-Up shortcut for Multi Commander file viewing
^!up::
   send {esc}
   send {up}
   send {F1}
return

; Ctrl-Alt-Down shortcut for Multi Commander file viewing
^!down::
   send {esc}
   send {down}
   send {F1}
return

It contains two shortcuts: "Ctrl+Alt+Up" and "Ctrl+Alt+Down", each of them causes three actions:
 - press the Esc button to close previous viewer;
 - go to the next/previous file in the list by pressing up/down arrow;
 - press the F1 button to view the current file.
Title: Re: Picture Viewer go to next/previous image
Post by: Mathias (Author) on February 17, 2019, 15:07:37
If you select files before viewing them, then all selected files will be sent to the viewer and you can move to next/prev with space/backspace