I have added in my PowerShell profile functions to set locations as following:
function myPath {set-location "D:\SomePath\"}
Now when I call it in Windows Terminal with PowerShell the command myPath
it redirects to the specific one. With the command start .
I can open this directory in Windows Explorer. Is there any way that I can introduce custom keyboard shortcuts that will open Window Explorer to the current directory like Ctrl+E
to replace somehow start .
command?