Skip to content

v1.2.14

Compare
Choose a tag to compare
@chrisant996 chrisant996 released this 22 Jun 01:23
· 3689 commits to master since this release
  • Automatically runs clink_start.cmd from the binaries directory and/or the profile directory when Clink is injected.
  • Clink is able to retrieve the last exit code for use by Lua scripts.
    • The new cmd.get_errorlevel setting is off by default, but when enabled it retrieves the last exit code from CMD before running Lua scripts.
    • The new os.geterrorlevel() function gets the last exit code (or 0 if the setting is off).
    • It works by running a hidden command line between each interactive prompt (as if you typed echo %errorlevel% yourself every second command you type). If you experience problems with this, turn it off.
  • Improved refreshing the input line when resizing the terminal window. It's better than before, but there's no way to make it work perfectly because Windows can resize the terminal further while a program is already trying to respond to the terminal having been resized previously.
  • Fixed #130; doskey alias completions stop working when there are many aliases.