Shell icon indicating copy to clipboard operation
Shell copied to clipboard

Missing documentation of 'command.navigate' function

Open andreaxhearts opened this issue 1 year ago • 0 comments

A function that is used to navigate to a certain path in an open file explorer window...

moudey (07/04/2023 4:26 PM):

New debug build 35 https://nilesoft.org/download/shell/debug.zip

  • New function key.send that enables you to send one or more keys to the current window. It allows customizing multiple items to interact with the explorer.
key.send(key.f5)       // Refresh
key.send(key.ctrl,'n') // Open a New Window with the Same Folder.
key.send(key.ctrl,'t') // Open a new tab and switch to it. 
key.send(key.shift,'d') // Close a File Explorer Window.
key.send(key.shift, key.delete) // Delete permanently.
  • New function command.navigate to open a subfolder in the same explorer window
item(title="navigate" cmd=command.navigate('%windir%\system32'))

andreaxhearts avatar Jul 13 '24 02:07 andreaxhearts