Releases: directvt/vtm
Releases · directvt/vtm
v0.9.70
v0.9.69
v0.9.68
Changes
- Make the CWD sync command template configurable via settings:
Now it is possible to configure the cwdsync command template, for example, make it without prefixed whitespace to be compatible with Far Manager (FarGroup/FarManager#798):
<config> <term> <cwdsync=" cd $P\n"/> </term> </config>
pwsh:echo "vtm.run(id=Term cfg='<config><term cwdsync=`"cd `$P\n`"/></config>')" | vtm
2024-02-14.19-38-40.mp4
v0.9.67
v0.9.66
v0.9.65
Changes
- Fix vtty applet defaults, #562
- Add experimental synchronization of the current working directory for all terminal windows with the "Sync" switch enabled.
ShellCWD Sync
activation (OSC9;9):- Windows Command Prompt:
PROMPT $e]9;9;$P$e\$P$G
- PowerShell:
function prompt{ $e=[char]27; "$e]9;9;$(Convert-Path $pwd)$e\PS $pwd$('>' * ($nestedPromptLevel + 1)) " }
- Bash:
export PS1='\[\033]9;9;\w\033\\\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
v0.9.64a
Changes
- Revise terminology, naming, keywords to make it clearer and more consistent
- Rename
--pipe <name>
to--pin <id>
. - Rename
noui
tovtty
/Teletype Console
. - Rename
xlvt
todtty
/DirectVT Gateway with TTY
. - Rename
group
totile
/Tiling Window Manager
. - Rename
region
tosite
/Desktop Region Marker
. - Drop
shell
andansivt
types. - Add
-x
as alias for--script
cli option.
- Rename
- Update /doc/architecture.md.
- Update /doc/command-line-options.md.
- Update /doc/apps.md.
- Update /doc/settings.md.
- Fix
site
s (Desktop Region Marker) title numbering (cmd=@
). - Fly to
site
by left click on taskbar.
v0.9.63
v0.9.62
Changes
- Differentiate exit code styles by platform, #557
- Make built-in terminal more contrast (pure black background by default).
- Make headless mode the default for
vtm -r
. - Allow the
vtm -r [type] <cli_app...>
option to be simplified tovtm [-r [type]] <cli_app...>
. E.g.:vtm bash
,vtm pwsh
. - Rename
headless
tonoui
(keepheadless
but undocumented). - Drop the
--onlylog
cli option. - Update
command-line-options.md
and usage notes invtm --help
output, #544