jupyterlab_terminal_clipboard_extension
[!TIP] This extension is part of the stellars_jupyterlab_extensions metapackage. Install all Stellars extensions at once:
pip install stellars_jupyterlab_extensions
Terminal programs running inside JupyterLab normally cannot copy anything to your clipboard. Tools like password managers, vim, tmux, and other TUI applications that rely on xclip or xsel fail silently because there is no X11 display in a browser-based terminal. This extension fixes that - when a terminal program copies something, it lands in your browser clipboard so you can paste it anywhere.
Features
- OSC 52 clipboard interception - captures clipboard escape sequences from terminal output
- Auto-installing shims - deploys
xclip,xsel,wl-copyreplacements to~/.local/bin/on startup when real tools are not functional (no display server) - Non-destructive install - only installs shims when the real tools cannot work, and never overwrites a clipboard tool it did not create
Installation
Requires JupyterLab 4.0.0 or higher.
pip install jupyterlab_terminal_clipboard_extension
Ensure ~/.local/bin is in your PATH for the shims to work:
export PATH="$HOME/.local/bin:$PATH"
Uninstall
pip uninstall jupyterlab_terminal_clipboard_extension
Technical Details
The extension has two components. The frontend plugin registers an OSC 52 parser handler on each terminal's xterm.js instance. When a terminal application writes \033]52;c;<base64>\a, the handler decodes the payload and writes it to the browser clipboard via navigator.clipboard.writeText(), falling back to document.execCommand('copy') for HTTP (non-secure) contexts.
Both of those paths need a focused document, and a terminal program emits OSC 52 whenever it likes - routinely while you are in another window. A copy that arrives unfocused is therefore held rather than attempted, and written when focus returns. One copy is held at a time, the newest wins, and a copy that waits longer than 15 seconds is discarded rather than landing on top of something you have copied elsewhere in the meantime. Every outcome is logged, so a copy is never lost silently.
The held copy is written from a focus or visibilitychange event, which Chrome accepts for a focused tab. Firefox requires a genuine user gesture for clipboard writes and refuses this one, logging the refusal - re-run the command with the tab focused to copy there.
The server plugin runs on JupyterLab startup and installs lightweight POSIX shell shims into ~/.local/bin/. These shims replace xclip, xsel, and wl-copy - the system clipboard tools that terminal programs call. Instead of talking to an X11 display, the shims base64-encode the input and emit an OSC 52 escape sequence to /dev/tty, which the frontend plugin then intercepts.
terminal app -> xclip/xsel (shim) -> OSC 52 escape sequence -> extension -> browser clipboard
Shims are only installed when the real tools cannot function (no DISPLAY or WAYLAND_DISPLAY environment variable set). If a real X11 or Wayland clipboard is available, the shims are not deployed and the original tools are preserved. An existing file in ~/.local/bin that is not one of our shims is never overwritten - the installer logs a warning and skips it, so a clipboard tool you placed there yourself stays intact.
Because OSC 52 only reaches the browser through the terminal, the shims write the escape sequence exclusively to /dev/tty. When a program calls them without a controlling terminal, they exit non-zero with a message on stderr rather than emitting the sequence to stdout, where it would corrupt the caller's output.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupyterlab_terminal_clipboard_extension-1.0.8.tar.gz.
File metadata
- Download URL: jupyterlab_terminal_clipboard_extension-1.0.8.tar.gz
- Upload date:
- Size: 294.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7103ba8456d16bac1827cbeaf3443f684a8e990f5f0eaf9ce9c8ce418997fdcd
|
|
| MD5 |
0b5ec20b0744990fdfdd1012887638a4
|
|
| BLAKE2b-256 |
87446db6ed50bd4f0b9ac85945207ca27f0c9bd18c09a59103fa72307537c645
|
File details
Details for the file jupyterlab_terminal_clipboard_extension-1.0.8-py3-none-any.whl.
File metadata
- Download URL: jupyterlab_terminal_clipboard_extension-1.0.8-py3-none-any.whl
- Upload date:
- Size: 38.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f308a3a73c51d7541771ce226869cc1ee45d5b2a63515aad87437024d8c4e8b
|
|
| MD5 |
1550ca852dee1238f288116ab9914510
|
|
| BLAKE2b-256 |
f88c640bd6444111c23c924618de9da24047be4991082bab18c52432db0102d4
|