-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
%user-aliases% should be %user_aliases% #1675
Comments
@step Why? Is something not working? |
Yes, I get a syntax error message, recalling from memory, something like "-aliases is an invalid identifier". Possibly my %CmdSpec% (TCC) is fussier than CMD about identifiers, I'm not sure. |
Yes, the entire thing blows up with TCC due to the dash. I agree why not keep it consistent all the conemu vars use underscores. Otherwise, you wind up with stuff like this in cmder (running the init.bat with TCC):
|
fixed |
Fixed |
## Rename user-profile.* user_profile.* to resolve #1806, #1675 * This is a backward compatible fix and will automatically and silently rename users '%cmder_root%/config/user-profile.\*' to '%cmder_root%/config/user_profile.\*' and '[user_specified_config_root]/user-profile.\*' to '[user_specified_config_root]/user_profile.\*' if the sources exist. * Cmder.exe does this for cmd.exe sessions. * The init scripts for bash and Powershell handles it for these shells
not fixed - probably can't fix TCC/LE that I have access to appears to be incompatible with cmd.exe despite their docs saying it is. |
I think all instances of
%user-aliases%
anduser-aliases=
in vendor\init.bat (and possibly other files) should be%user_aliases%
anduser_aliases
respectively. The dash isn't a valid character for batch script identifiers.Running mini version 1.3.5 Win10 x64.
The text was updated successfully, but these errors were encountered: