Potresti assegnare una scorciatoia a uno script come questo:
tell application "Finder"
try
target of Finder window 1
make new Finder window to result
on error
make new Finder window to home
end try
end tell
Questo cambierebbe anche alcune proprietà:
tell application "Finder"
try
tell Finder window 1
set t to target
set b to bounds
set cv to current view
set sw to sidebar width
set sv to statusbar visible
set tv to toolbar visible
end tell
on error
make new Finder window to home
return
end try
make new Finder window to t
tell result
set bounds to {(item 1 of b) + 20, (item 2 of b) + 20, (item 3 of b) + 20, (item 4 of b) + 20}
set current view to cv
set sidebar width to sw
set statusbar visible to sv
set toolbar visible to tv
end tell
end tell
target of Finder window 1 è la cartella mostrata sulla barra del titolo. Non dipende dalla selezione nella visualizzazione elenco.
Puoi anche usare ^⌘ ↑ per mostrare la posizione mostrata sulla barra del titolo in una nuova finestra. Tuttavia, non funziona nella vista colonne se la barra degli strumenti è nascosta.