Is there any way to get vim to save the tab names (assigned via the Tab Name script) and/or a terminal emulator (set up via the Conque Shell script) upon issuing the :mksession [fileName] command?
Observe below (zoom in), I have a working session on the left, and the same session loaded via the vim -S fileName command, on the right. The assigned tab labels revert to absolute paths, ConqueShell terminal is interpreted as a file.

After learning some basic VimScript I just gave up and used Python instead (to cite one example, you can’t save global information to a session if it is a list). Here is a solution I found for saving tab names (will post a solution for ConqueShell if I find one)
Put the following in your
.vimrcfile and use whatever mapping you want to quickly save and load your sessionsNow create the following text file and put it somewhere in your
PATHvariable (echo $PATHto get it, mine is at/home/user/bin/mksession.py) and make sure to make it executable (chmod 0700 /home/user/bin/mksession.py)