annotate bin/executable_clip @ 876:8589883596fd

fix: remove pathdirs option to avoid slow path completions see: https://stackoverflow.com/questions/76746392/why-is-my-zsh-tab-completion-slow-on-commands-but-not-directories > Perform a path search even on command names with slashes in them. > Thus if ?/usr/local/bin? is in the user?s path, and he or she types ?X11/xinit?, the command ?/usr/local/bin/X11/xinit? will be executed (assuming it exists). > Commands explicitly beginning with ?/?, ?./? or ?../? are not subject to the path search. This also applies to the ?.? and source builtins.
author Zeger Van de Vannet <zeger@vandevan.net>
date Thu, 25 Apr 2024 10:05:40 +0200
parents eba1dee43703
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
334
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
1 #!/usr/bin/env bash
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
2
369
eba1dee43703 Strip terminal escape sequences from copy
zegervdv <zegervdv@me.com>
parents: 339
diff changeset
3 DATA=$(cat - | sed -r "s/\x1b\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g" | base64)
334
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
4
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
5 if [ -z "$TMUX" ]; then
339
308594cabf62 Fix quoting typo in clip for non-tmux sessions
zegervdv <zegervdv@me.com>
parents: 334
diff changeset
6 echo -ne "\e]52;c;${DATA}\x07"
334
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
7 else
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
8 echo -ne "\ePtmux;\e\e]52;c;${DATA}\x07\e\\"
d7d0b1a5db4f Add script to send text to clipboard over OSC52
Zeger Van de Vannet <zegervdv@me.com>
parents:
diff changeset
9 fi