You cannot save a view per se, but you can save and retrieve tabs with internal command and you can open a separate tree and place the file panels above each other with internal commands.
So you can make a button that does what you want automaticallly by using a chain of commands, where one is a userdefined em_command for loading your tabs.
So save your tabs (right click on tab) to %COMMANDER_PATH%\mytabs.tab
Make this userdefined command (use cm_CommandBrowser)
Code: Select all
[em_openmytabs]
cmd=LOADTABS %COMMANDER_PATH%\mytabs.tab
Make this button:
Code: Select all
TOTALCMD#BAR#DATA
cm_SeparateTree1,cm_VerticalPanels 1,em_openmytabs
wcmicons.dll,20
My view
-1
To make the button:
1. Mark the green text above (including TOTALCMD#BAR#DATA in the first line and -1 in the last line).
2. Copy it to the ClipBoard (Ctri+C).
3. Right click on TC's buttonbar and choose "Paste".