author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 17 Nov 2020 19:49:45 +0200 | |
changeset 2462 | 9b3b29e0b467 |
parent 2224 | b45b160b9f02 |
permissions | -rw-r--r-- |
1894
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
1 |
.. -*- coding: utf-8; -*- |
139 | 2 |
|
1894
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
3 |
===================== |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
4 |
Clipboard/selection |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
5 |
===================== |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
6 |
.. contents:: |
1905
fba288d59662
Include only local subsections into TOC. This prevent duplication of
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1894
diff
changeset
|
7 |
:local: |
139 | 8 |
|
1894
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
9 |
MS Windows |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
10 |
========== |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
11 |
|
2224
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
12 |
To fix copy/paste problem with RDP launch or restart ``rdpclip.exe``. |
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
13 |
|
1894
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
14 |
X Windows |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
15 |
========= |
139 | 16 |
|
17 |
X11 selection transfers (which both PRIMARY and CLIPBOARD are instances of) |
|
18 |
are done through synthesized X11 events and properties changes. |
|
19 |
||
20 |
The messages used to transfer the selections have a maximum size that's |
|
21 |
actually quite low (a few kilobytes). |
|
22 |
||
2224
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
23 |
See: |
139 | 24 |
|
2224
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
25 |
* http://standards.freedesktop.org/clipboards-spec/clipboards-latest.txt |
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
26 |
* http://www.jwz.org/doc/x-cut-and-paste.html |
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
27 |
* http://en.wikipedia.org/wiki/X_Window_selection |
b45b160b9f02
Fix copy/paste problem with RDP.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
28 |
* http://www.emacswiki.org/cgi-bin/wiki/CopyAndPaste |
139 | 29 |
|
1894
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
30 |
xclipboard |
2e3bc2435d68
Convert all files from TXT to RST.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
139
diff
changeset
|
31 |
========== |
139 | 32 |
|
33 |
The xclipboard command emulates the traditional Macintosh style clipboard by |
|
34 |
claiming ownership of the CLIPBOARD selection and answering any requests for |
|
35 |
its value. When it loses the selection, it immediately asks the new owner for |
|
36 |
the value of the CLIPBOARD selection, makes a local copy, and then reasserts |
|
37 |
ownership of the CLIPBOARD. This way the clipboard contents can persist after |
|
38 |
the original application has exited. |
|
39 |