diff options
| author | Tassilo Horn | 2013-12-20 16:35:53 +0100 |
|---|---|---|
| committer | Tassilo Horn | 2013-12-20 16:35:53 +0100 |
| commit | 7b4ec5497f42a3db1bbb0bfdba5560091587480f (patch) | |
| tree | 6a4b28ab73d261c4039930d2591c39362d867945 | |
| parent | bac0e622f44842f3f05fcc749abdf9d3323e849a (diff) | |
| download | emacs-7b4ec5497f42a3db1bbb0bfdba5560091587480f.tar.gz emacs-7b4ec5497f42a3db1bbb0bfdba5560091587480f.zip | |
Document `toggle-frame-maximized' and `toggle-frame-fullscreen'.
* doc/emacs/frames.texi: Document `toggle-frame-maximized' and
`toggle-frame-fullscreen' with their respective keys.
| -rw-r--r-- | doc/emacs/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/emacs/frames.texi | 10 | ||||
| -rw-r--r-- | etc/NEWS | 1 |
3 files changed, 14 insertions, 0 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 0eddd0d1954..47d3125f196 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-12-20 Tassilo Horn <tsdh@gnu.org> | 1 | 2013-12-20 Tassilo Horn <tsdh@gnu.org> |
| 2 | 2 | ||
| 3 | * frames.texi: Document `toggle-frame-maximized' and | ||
| 4 | `toggle-frame-fullscreen' with their respective keys. | ||
| 5 | |||
| 3 | * buffers.texi: Document buffer name uniquification changes. | 6 | * buffers.texi: Document buffer name uniquification changes. |
| 4 | 7 | ||
| 5 | * indent.texi: Document that `electric-indent-mode' is enabled by | 8 | * indent.texi: Document that `electric-indent-mode' is enabled by |
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index 45f137d3b78..d2c25b9dc05 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -453,6 +453,16 @@ cycles through all the frames on your terminal. | |||
| 453 | @kindex C-x 5 1 | 453 | @kindex C-x 5 1 |
| 454 | @findex delete-other-frames | 454 | @findex delete-other-frames |
| 455 | Delete all frames on the current terminal, except the selected one. | 455 | Delete all frames on the current terminal, except the selected one. |
| 456 | |||
| 457 | @item M-<F10> | ||
| 458 | @kindex M-<F10> | ||
| 459 | @findex toggle-frame-maximized | ||
| 460 | Toggle maximization state of the current frame. | ||
| 461 | |||
| 462 | @item <F11> | ||
| 463 | @kindex <F11> | ||
| 464 | @findex toggle-frame-fullscreen | ||
| 465 | Toggle fullscreen mode of the current frame. | ||
| 456 | @end table | 466 | @end table |
| 457 | 467 | ||
| 458 | The @kbd{C-x 5 0} (@code{delete-frame}) command deletes the selected | 468 | The @kbd{C-x 5 0} (@code{delete-frame}) command deletes the selected |
| @@ -244,6 +244,7 @@ As a command it was a special case of `split-window-below', and as such | |||
| 244 | superfluous. After being reimplemented in Lisp, its interactive form | 244 | superfluous. After being reimplemented in Lisp, its interactive form |
| 245 | was mistakenly retained. | 245 | was mistakenly retained. |
| 246 | 246 | ||
| 247 | +++ | ||
| 247 | ** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized', | 248 | ** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized', |
| 248 | bound to <f11> and M-<f10>, respectively. | 249 | bound to <f11> and M-<f10>, respectively. |
| 249 | 250 | ||