Releases: directvt/vtm
Releases · directvt/vtm
v0.9.99.41
v0.9.99.40
Changes
- Make text anti-aliasing enabled by default.
- Make GUI window key bindings configurable.
- Introduce
Drop
andDropIfRepeats
actions.Action Description Drop
Drop all events for the specified key combination. No further processing. DropIfRepeats
Drop Key Repeat
events for the specified key combination. This binding should be specified before the main action for the key combination.<config> <gui> <hotkeys key*> <key="Alt+Enter" action=DropIfRepeats/> <!-- Don't repeat the Toggle fullscreen mode. --> <key="Alt+Enter" action=ToggleFullscreenMode/> <!-- Toggle fullscreen mode. --> </hotkeys> </gui> </config>
v0.9.99.39
v0.9.99.38
v0.9.99.37
v0.9.99.36
Changes
- Treat only unquoted literals as variables in settings. All unresolved unquoted literals are treated as regular values.
Example
:<config> <set> <variable1="text value"/> </set> <some_section> <variable2="text value"/> </some_section> <test1=variable1/> <!-- Reference to the /config/set/ namespace (w/o quotes). --> <test2=/config/some_section/variable2/> <!-- Absolute reference (w/o quotes). --> <test3="/config/some_section/variable3"/> <!-- Just a text string (quoted string). --> </config>
- Allow config-wide absolute references.
Example
:<config> <set> <selection> <mode="text"/> <rect=false/> </selection> </set> <term> <selection> <mode=/config/set/selection/mode/> <!-- Absolute reference. --> <rect=selection/rect/> <!-- Reference to the /config/set/ (default) namespace. --> </selection> </term> </config>
- Amplify mouse hover on button press.
- Add chord test to info page. You can test your keyboard there. Note that Shift+F7 (Disconnect), Ctrl+PageUp/Down (switch between windows) chords are reserved. At this stage, only key combination detection has been implemented, #86.
Breaking changes
- This version of vtm is not compatible with previous versions due to the changed directvt protocol.
v0.9.99.35
Changes
- Fix terminal search by
Alt+Left/RightArrow
. - Change
Shift+Ctrl+Alt+Arrows
toShift+Alt+Arrows
(scrolls one page horizontally).- Hardcoded hotkeys https://github.com/directvt/vtm/blob/master/doc/apps.md#attribute-action.
v0.9.99.34
v0.9.99.33
v0.9.99.32
Changes
- Add the
Ctrl
modifier to hard-coded terminal hotkeys (to avoid interference with console apps).
Hotkey | Action |
---|---|
Ctrl+Shift+PageUp |
Scroll one page up. |
Ctrl+Shift+PageDown |
Scroll one page down. |
Ctrl+Shift+ArrowUp |
Scroll one line up. |
Ctrl+Shift+ArrowDown |
Scroll one line down. |
Ctrl+Shift+Alt+ArrowLeft |
Scroll one page to the left. |
Ctrl+Shift+Alt+ArrowRight |
Scroll one page to the right. |
Ctrl+Shift+ArrowLeft |
Scroll one cell to the left. |
Ctrl+Shift+ArrowRight |
Scroll one cell to the right. |
Ctrl+Shift+Home |
Scroll to the scrollback top. |
Ctrl+Shift+End |
Scroll to the scrollback bottom (reset viewport position). |