Author Topic: Lynx-like motion  (Read 7445 times)

32MB

  • Newbie
  • *
  • Posts: 2
    • View Profile
Lynx-like motion
« on: December 23, 2019, 14:30:11 »
Dear Developers,

please add the configurable Lynx-like motion:

Cursor right - open folder/zip/etc.
Cursor left - leave folder (no matter where the cursor is)

Thank you

Matthias515566

  • Power Member
  • ****
  • Posts: 317
    • View Profile
Re: Lynx-like motion
« Reply #1 on: December 26, 2019, 07:04:11 »
In the Folder Tree works this. I needed to google "Lynx-like motion"...

32MB

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Lynx-like motion
« Reply #2 on: December 28, 2019, 12:48:18 »
Right

would be great, if it would work in normal mode

=)

alleby

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: Lynx-like motion
« Reply #3 on: January 09, 2020, 23:17:30 »
+1 on this
my posts both in "support and feedback"
http://forum.multicommander.com/forum/index.php/topic,3529.0.html
and in "feature requests"
http://forum.multicommander.com/forum/index.php/topic,3585.0.html

Currently it is not possible to even have this setup manually as there is no keyboard action in mapper to "enter directory".

Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4271
    • View Profile
    • Multi Commander
Re: Lynx-like motion
« Reply #4 on: January 10, 2020, 08:48:19 »
You can create it your self with script

Create two user defined command of MultiScript type

(Enter Focus Folder)
Code: [Select]
@var $folder = GetSourceFocusPath();
MC.Explorer.Goto SOURCE="{$folder}"
Then assign to left arrow

(Enter Parent Folder)
Code: [Select]
@var $folder = GetSourcePath();pa
$folder = PathGetPathPart($folder, 1);
$folder = PathGetPathPart($folder, 0);
MC.Explorer.Goto SOURCE="{$folder}"
Then assign to right arrow

alleby

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: Lynx-like motion
« Reply #5 on: January 11, 2020, 17:51:01 »
Thanks a lot! it works!

Any chance this could be built-in in the future release as an option? or at least as pre-defined "user defined commands"?
thank you!