Alt Menu Hotkey Support (Assign #1-8 to View options)

Share any ideas you have on improving Explorer++
Post Reply
WandersFar
Posts: 4
Joined: Mon Jul 14, 2014 10:23 am

Alt Menu Hotkey Support (Assign #1-8 to View options)

Post by WandersFar »

I’ve written the following script in AHK that switches to Details view, sorts by Size, sorts Descending, and then applies Autosize Columns to show everything:

Code: Select all

#IfWinActive ahk_class Explorer++
/::
SendInput !v{Down 9}{Enter}
Sleep, 200
SendInput !vos!vod!vs
Return
This would be a lot easier if there were consistent hotkey support in the View menu. As you can see, you have to send the Down arrow NINE TIMES just to select the Details view! Then you have to send Enter and sleep for a fraction of a second before proceeding, or it won’t work.

Can you please assign some kind of hotkey to Details so this task could be accomplished in one keystroke instead of ten?

Likewise all the View options (Extra Large Icons, Large Icons, Medium Icons, Small Icons, List, Details, Thumbnails, Tiles) ought to have an associated hotkey. There are eight possible views, so how about numbers 1 through 8? Numbers aren’t used anywhere in the View menu, so they’re available.

Of course what I’d really love would be the ability to edit my own hotkeys in the settings of the program, but I understand that’s a much bigger undertaking. Just assigning numbers to those views would be a big help, though!

Thank you for considering my suggestion.

David Erceg
Site Admin
Posts: 921
Joined: Sat Apr 18, 2009 1:46 am

Re: Alt Menu Hotkey Support (Assign #1-8 to View options)

Post by David Erceg »

Hi WandersFar, this has already been implemented in the dev version, thanks to a patch from the member of the community.

WandersFar
Posts: 4
Joined: Mon Jul 14, 2014 10:23 am

Re: Alt Menu Hotkey Support (Assign #1-8 to View options)

Post by WandersFar »

Thank you for that. Here’s the amended script:

Code: Select all

#IfWinActive ahk_class Explorer++
/::SendInput ^+6!vos!vod!vs
Much simpler!

I’d still love if we could modify hotkeys directly in the program. Any chance of that someday?

David Erceg
Site Admin
Posts: 921
Joined: Sat Apr 18, 2009 1:46 am

Re: Alt Menu Hotkey Support (Assign #1-8 to View options)

Post by David Erceg »

I spent some time looking into the specifics of what would need to be done at the end of last year, so it is something I've been planning to do. I don't think I can give an exact timeframe, since it depends on what other work I have going on.

Post Reply