Now I've encountered a problem with the CD_ENTER alias. The help file says:
CD_Enter - TCC will execute this alias immediately after changing the current directory.
Note that it says that the alias will be executed AFTER the directory change has been made. However, look at this.
TCC(27.01.23): C:\>alias cd_enter
set newcwd=%1 & echo `%1=`%1 & echo oldcwd=%oldcwd & echo newcwd=%newcwd & dir a*
TCC(27.01.23): C:\>cd temp
%1=C:\temp
oldcwd=C:\
newcwd=C:\temp...
Read more
CD_Enter - TCC will execute this alias immediately after changing the current directory.
Note that it says that the alias will be executed AFTER the directory change has been made. However, look at this.
TCC(27.01.23): C:\>alias cd_enter
set newcwd=%1 & echo `%1=`%1 & echo oldcwd=%oldcwd & echo newcwd=%newcwd & dir a*
TCC(27.01.23): C:\>cd temp
%1=C:\temp
oldcwd=C:\
newcwd=C:\temp...
Read more