From ffdbf7e4c5a412f3149c60ae34b4f0623fde9e94 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Mar 2023 20:26:53 +1300 Subject: Break up Xterm charClass linewise for legibility --- x/Xresources | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x/Xresources b/x/Xresources index ed85bdcc..0fcf4798 100644 --- a/x/Xresources +++ b/x/Xresources @@ -14,7 +14,11 @@ XTerm.vt100.bellIsUrgent: true * left and right angle brackets (less-than and greater-than), because being * able to click URLs quickly outweighs anything else. */ -XTerm.vt100.charClass: 33-126:48,60:60,61:48,62:60 +XTerm.vt100.charClass: \ + 33-126:48, \ + 60:60, \ + 61:48, \ + 62:60 /** * Put the terminal text contents flush against the edges of the window, -- cgit v1.2.3 From f7214b1bcdf885a3e77494d0b16ac8aeb9dce724 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 Mar 2023 20:27:31 +1300 Subject: Add xterm bindings for copy/paste to CLIPBOARD --- x/Xresources | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/x/Xresources b/x/Xresources index 0fcf4798..ca4210f2 100644 --- a/x/Xresources +++ b/x/Xresources @@ -48,3 +48,11 @@ XTerm.vt100.color12: rgb:72/9f/cf XTerm.vt100.color13: rgb:ad/7f/a8 XTerm.vt100.color14: rgb:34/e2/e2 XTerm.vt100.color15: rgb:ee/ee/ec + +/** + * Bind extra keys to copy/paste to/from CLIPBOARD rather than PRIMARY, as + * a simple selection does. + */ +XTerm.vt100.translations: #override \n\ + Ctrl Shift C: copy-selection(CLIPBOARD) \n\ + Ctrl Shift V: insert-selection(CLIPBOARD) -- cgit v1.2.3 From 96818e5cabd8ed76bf000edb14e85bee390db581 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 14 Mar 2023 14:50:04 +1300 Subject: Rephrase charClass for xterm more cleanly Shouldn't really rely on the overlap the previous way did. --- x/Xresources | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/x/Xresources b/x/Xresources index ca4210f2..798cc9d2 100644 --- a/x/Xresources +++ b/x/Xresources @@ -15,10 +15,11 @@ XTerm.vt100.bellIsUrgent: true * able to click URLs quickly outweighs anything else. */ XTerm.vt100.charClass: \ - 33-126:48, \ + 33-59:48, \ 60:60, \ 61:48, \ - 62:60 + 62:60, \ + 63-126:48 /** * Put the terminal text contents flush against the edges of the window, -- cgit v1.2.3 From 4cc223969aaddbaf028e8e656befa1fc93c378b7 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Tue, 14 Mar 2023 14:50:29 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a7168c9e..083cbece 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v12.29.0 -Sat, 11 Mar 2023 05:30:42 +0000 +tejr dotfiles v12.30.0 +Tue, 14 Mar 2023 01:50:29 +0000 -- cgit v1.2.3