diff options
| author | Dave Love | 2000-11-27 17:24:54 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-27 17:24:54 +0000 |
| commit | d235b2db166a579d0995e11fa634434b29379042 (patch) | |
| tree | 16f7fc97c23b424e2d8aa94157eb3816b99a58ed | |
| parent | 4a74d0713e6ddd44d1b54696285458e60e4e33a3 (diff) | |
| download | emacs-d235b2db166a579d0995e11fa634434b29379042.tar.gz emacs-d235b2db166a579d0995e11fa634434b29379042.zip | |
(Clipboard): New.
| -rw-r--r-- | man/frames.texi | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/man/frames.texi b/man/frames.texi index 0a301a0211f..37933151e8c 100644 --- a/man/frames.texi +++ b/man/frames.texi | |||
| @@ -42,6 +42,7 @@ such support. | |||
| 42 | @menu | 42 | @menu |
| 43 | * Mouse Commands:: Moving, cutting, and pasting, with the mouse. | 43 | * Mouse Commands:: Moving, cutting, and pasting, with the mouse. |
| 44 | * Secondary Selection:: Cutting without altering point and mark. | 44 | * Secondary Selection:: Cutting without altering point and mark. |
| 45 | * Clipboard:: Using the clipboard for selections. | ||
| 45 | * Mouse References:: Using the mouse to select an item from a list. | 46 | * Mouse References:: Using the mouse to select an item from a list. |
| 46 | * Menu Mouse Clicks:: Mouse clicks that bring up menus. | 47 | * Menu Mouse Clicks:: Mouse clicks that bring up menus. |
| 47 | * Mode Line Mouse:: Mouse clicks on the mode line. | 48 | * Mode Line Mouse:: Mouse clicks on the mode line. |
| @@ -261,6 +262,30 @@ If @code{mouse-yank-at-point} is non-@code{nil}, @kbd{M-Mouse-2} | |||
| 261 | yanks at point. Then it does not matter precisely where you click; all | 262 | yanks at point. Then it does not matter precisely where you click; all |
| 262 | that matters is which window you click on. @xref{Mouse Commands}. | 263 | that matters is which window you click on. @xref{Mouse Commands}. |
| 263 | 264 | ||
| 265 | @node Clipboard | ||
| 266 | @section Using the Clipboard | ||
| 267 | @cindex X clipboard | ||
| 268 | @cindex clipboard | ||
| 269 | @vindex x-select-enable-clipboard | ||
| 270 | @findex menu-bar-enable-clipboard | ||
| 271 | @cindex OpenWindows | ||
| 272 | @cindex Gnome | ||
| 273 | |||
| 274 | As well as the primary and secondary selection types, X supports a | ||
| 275 | @dfn{clipboard} selection type which is used by some applications, | ||
| 276 | particularly under OpenWindows and Gnome. | ||
| 277 | |||
| 278 | The command @kbd{M-x menu-bar-enable-clipboard} makes the @code{Cut}, | ||
| 279 | @code{Paste} and @code{Copy} menu items, as well as the keys of the same | ||
| 280 | names, all use the clipboard. | ||
| 281 | |||
| 282 | You can customize the option @code{x-select-enable-clipboard} to make | ||
| 283 | the Emacs yank functions consult the clipboard before the primary | ||
| 284 | selection, and to make the kill functions to store in the clipboard as | ||
| 285 | well as the primary selection. Otherwise they do not access the | ||
| 286 | clipboard at all. Using the clipboard is the default on MS-Windows, | ||
| 287 | unlike most systems. | ||
| 288 | |||
| 264 | @node Mouse References | 289 | @node Mouse References |
| 265 | @section Following References with the Mouse | 290 | @section Following References with the Mouse |
| 266 | @kindex Mouse-2 @r{(selection)} | 291 | @kindex Mouse-2 @r{(selection)} |