v0.9.99.54
Known issues
- Esc key does not work properly.
Breaking changes
- This version of vtm is not compatible with previous versions due to the changed directvt protocol.
Changes
- Reimplement hotkey handling.
- Drop schemes in favor of exclusive keyboard mode.
Platform Hotkey Description Windows Ctrl-Alt | Alt-Ctrl
Toggle exclusive keyboard mode. Unix Alt+Shift+B
Toggle exclusive keyboard mode. - Introduce
preview
mode for hotkeys. Keyboard events travel along the focus tree from the desktop to the target objects (preview route) and then return back to the desktop along the same path (release route). Normally, if the preview mode is not specified, the key event will travel all the way to the target object along the focus tree and will only be processed on the way back. If thepreview
keyword is specified, the event may be processed before reaching the target object.
An example of usingpreview
mode is a key binding to switch to exclusive mode.<config> <hotkeys> <terminal> <key="Ctrl-Alt | Alt-Ctrl" preview action=""/> <!-- Reset current bindings. --> <key="Ctrl-Alt | Alt-Ctrl" preview action=ExclusiveKeyboardMode/> <!-- Toggle exclusive keyboard mode by pressing and releasing Ctrl-Alt or Alt-Ctrl (reversed release order). --> </terminal> </hotkeys> </config>