github directvt/vtm v2025.05.21a

latest releases: v2026.02.27, v2026.02.20, v2026.02.16...
9 months ago

GitHub all current

Changes

  • Fix Unexpected closing tag name... errors by detecting Lua operators "<<", "<space" and "<=" in Lua scripts.
    No spaces are allowed between the opening angle bracket and the name when declaring an XML-subobject.
    Now ... < name ..., ... <= ..., ... << ... are treated as parts of Lua script code.
    settings.xml:
    <config>
        <events>
            <desktop>
                <script on="F2">
                    vtm.desktop.Run({ id="Logs" });
                    a = 10
                    b = 2
                    log("a > b = ", (a > b))
                    log("a < b = ", (a < b))
                    log("a <= b = ", (a <= b))
                    log("a << b = ", (a << b))
                    log("a<=b = ", (a<=b))
                    log("a<<b = ", (a<<b))
                </script>
            </desktop>
        </events>
    </config>

Don't miss a new vtm release

NewReleases is sending notifications on new releases.