Shell integration for Xonsh.
The following terminal emulators are supported
- iTerm2
- kitty
- WezTerm with CWD; Input, Output, and Prompt zones; and User Vars for tracking additional shell state
- Ghostty
Note: If identifying current terminal fails, iTerm2 hooks are loaded.
PRs welcome on improving the support to more terminal programs :)
To install use pip:
xpip install xontrib-term-integrations
# or: xpip install -U git+https://github.com/jnoortheen/xontrib-term-integrations# this modifies the $PROMPT function. So load it after setting $PROMPT if you have a custom value
xontrib load term_integration(WezTerm) Set user vars1 via the helper set_user_var function:
# via a xonsh alias
set_wezterm_user_var 'my_term_user_var' 'value_of_my_term_user_var'
# or an explicit Python import
from xontrib_term_integrations.utils import set_user_var
set_user_var('my_term_user_var','value_of_my_term_user_var')You can disable registering the alias with a $XONTRIB_TERM_INTEGRATIONS_SKIP_ALIAS = True
Please make sure that you
- Document the purpose of functions and classes.
- When adding a new feature, please mention it in the
README.md. Use screenshots when applicable. - Conventional Commit style should be used for commit messages as it is used to generate changelog.
- Please use pre-commit to run qa checks. Configure it with
pre-commit install-hooks- For new releases, create a GitHub release with new tag (e.g.
v0.x.x) and it will automatically push the package to PyPI.
WezTerm
- (WezTerm) Multiline prompt is partially supported:
- every continuation line is semantically marked by default:
so you can select
if True: #↓ continuation prompt ..... echo 1 # ↑ input
echo 1as aSemanticZonewith a mouse multiclick, but you can't select both lines as one zone (and would need to map some combo of commands to hack around it) - if you set
$MULTILINE_PROMPT_PRE='',$MULTILINE_PROMPT_POS='', then continuation lines won't be marked, you'd be able to select all the lines as oneSemanticZone(unles the right prompt interferes), but that will also include..continuation markers (so you'd either need to disable them in Xonsh or add some extra WezTerm lua parsing hack to trim them)
(follow this WezTerm discussion for updates)
- every continuation line is semantically marked by default:
- (WezTerm) Semantic right prompt not separated from the next-line left prompt (issue)
- WezTerm is not recognized in root shells due to this issue
Ghostty
- Implemented features:
- Do not confirm close for terminals where the cursor is at a prompt.
- New terminals start in the working directory of the previously focused terminal.
- Complex prompts resize correctly by allowing the shell to redraw -- rather than reflow -- the prompt line.
- Triple-click while holding control (Linux) or command (macOS) to select the output of a command.
- The cursor at the prompt is turned into a bar to represent more typical text editing.
- The jump_to_prompt keybinding can be used to scroll the terminal window forward and back through prompts.
⚠️ Because of the implementation, jumping includes secondary newlines in multiline prompts. - Alt+click (option+click on macOS) moves the cursor to the click location while at a prompt.
- sudo can be automatically wrapped to preserve Ghostty terminfo (disabled by default)
- ssh can be automatically wrapped to either transmit the Ghostty terminfo or set the TERM environment variable to xterm-256color to maximize compatibility (disabled by default)