Skip to content

Conversation

wadabum
Copy link

@wadabum wadabum commented Jul 7, 2025

PS C:\Users> $PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      19041  5848

PS C:\Users> echo "`e]133;D`a"
e]133;D   # this dings too!!
PS C:\Users> echo "$([char]0x1b)]133;D`a"
# no output, no ding (as it should)
PS C:\Users> echo "$([char]0x1b)]133;D$([char]07)"
# no output, no ding (as it should)
PS C:\Users> echo "$([char]07)"
# dings as expected

Maybe one could argue to make it

$esc = [char]0x1b
$bel = [char]0x07
$out += "${esc}]133;D;$gle${bel}" ...

but i got no idea how slow/fast the individual invokes might be ;)

Copy link

Learn Build status updates of commit c0901c2:

✅ Validation status: passed

File Status Preview URL Details
TerminalDocs/tutorials/shell-integration.md ✅Succeeded View

For more details, please refer to the build report.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant