We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to add some of the ConEmu-specific escape codes via a PR if it's okay with you.
documentation: https://conemu.github.io/en/AnsiEscapeCodes.html#ConEmu_specific_OSC
For example, the equivalent to this iTerm 2 sequence:
ansi-escapes/index.js
Line 129 in 5f93eca
Would be this for ConEmu:
x.ConEmu.setCwd = (cwd = process.cwd()) => `${OSC}9;9;${cwd}${BEL}`;
per the documentation:
Sequence Description ESC ] 9 ; 9 ; “cwd” ST Inform ConEmu about shell current working directory.
ESC ] 9 ; 9 ; “cwd” ST
The text was updated successfully, but these errors were encountered:
Sure, PR welcome :)
Sorry, something went wrong.
We could then also add a general setCwd method which uses iTerm.setCwd on iTerm and ConEmu.setCwd on ConEmu.
setCwd
iTerm.setCwd
ConEmu.setCwd
TERM_PROGRAM
No branches or pull requests
ConEmu
I'd like to add some of the ConEmu-specific escape codes via a PR if it's okay with you.
documentation:
https://conemu.github.io/en/AnsiEscapeCodes.html#ConEmu_specific_OSC
For example, the equivalent to this iTerm 2 sequence:
ansi-escapes/index.js
Line 129 in 5f93eca
Would be this for ConEmu:
per the documentation:
The text was updated successfully, but these errors were encountered: