currently cm_OpenNewTab creates a new tab with the same path as the currently active one.
a button to change the path/folder with "cd c:\mypath\" will replace the current tab (if not locked).
so my suggestion would be the option to add a path parameter to cm_OpenNewTab (and the other newtab* commands).
folder path paramater for cm_OpenNewTab
Moderators: Hacker, petermad, Stefan2, white
Re: folder path paramater for cm_OpenNewTab
It's possible to use a chain of commands: cm_OpenNewTab,cd c:\mypath\
Overquoting is evil! 👎
Re: folder path paramater for cm_OpenNewTab
thanksFla$her wrote: 2024-12-08, 16:59 UTC It's possible to use a chain of commands: cm_OpenNewTab,cd c:\mypath\
quick update:
Code: Select all
cmd: cd
param: "C:\Temp\%|$DATE:Y-M-D|"
while
Code: Select all
cm_OpenNewTab, cd "C:\Temp\%|$DATE:Y-M-D|"
Re: folder path paramater for cm_OpenNewTab
The entry with "|" applies only to the parameter field. It should be like this: cm_OpenNewTab,cd "C:\Temp\%$DATE:Y-M-D%"
Overquoting is evil! 👎