Shortcut for thumbs

How to assign a keyboard shortcut to show thumbnail in desired size,presently one can assign only 1 shortcut for 1 particular size,want an another also

If you just want to change the thumbnail size:

Show THUMBNAILSIZE=128

If you want to switch to thumbnails mode at the same time:

@toggle:if Set VIEW=Thumbnails;Show THUMBNAILSIZE=128
Set VIEW=Thumbnails
Show THUMBNAILSIZE=128

(The first line deals with when the button will be highlighted to indicate it is "on". It's not needed if you want a pure hotkey, but is useful if it's (also) a toolbar button or menu item.)

If you want to toggle between your default size and another size each time you click the button:

Set VIEW=Thumbnails
@if:Show THUMBNAILSIZE=128
Show THUMBNAILSIZE=reset
@if:else
Show THUMBNAILSIZE=128

forgot to mention that i want to switch to a desired size and also toggle between details and thumbs using the same hotkey,how

@if:Set VIEW=Thumbnails
Set VIEW=Details
@if:else
Set VIEW=Thumbnails
Show THUMBNAILSIZE=128

many thx