mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-10 05:30:45 -08:00
Change all instances of "Follow Mode" to "Follow mode" in docstrings and messages.
This commit is contained in:
parent
b73f65b69d
commit
d9f555a19a
2 changed files with 36 additions and 31 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2007-10-10 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* follow.el: Change all instances of "Follow Mode" to "Follow
|
||||
mode" in docstrings and messages.
|
||||
|
||||
2007-10-09 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* faces.el (face-font-selection-order): Doc fix.
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
;;
|
||||
;; * The windows always display adjacent sections of the buffer.
|
||||
;; This means that whenever one window is moved, all the
|
||||
;; others will follow. (Hence the name Follow Mode.)
|
||||
;; others will follow. (Hence the name Follow mode.)
|
||||
;;
|
||||
;; * Should the point (cursor) end up outside a window, another
|
||||
;; window displaying that point is selected, if possible. This
|
||||
|
|
@ -149,15 +149,15 @@
|
|||
;; The following is a list of commands useful when follow-mode is active.
|
||||
;;
|
||||
;; follow-scroll-up C-c . C-v
|
||||
;; Scroll text in a Follow Mode window chain up.
|
||||
;; Scroll text in a Follow mode window chain up.
|
||||
;;
|
||||
;; follow-scroll-down C-c . v
|
||||
;; Like `follow-scroll-up', but in the other direction.
|
||||
;;
|
||||
;; follow-delete-other-windows-and-split C-c . 1
|
||||
;; Maximize the visible area of the current buffer,
|
||||
;; and enter Follow Mode. This is a very convenient
|
||||
;; way to start Follow Mode, hence we recomend that
|
||||
;; and enter Follow mode. This is a very convenient
|
||||
;; way to start Follow mode, hence we recomend that
|
||||
;; this command be added to the global keymap.
|
||||
;;
|
||||
;; follow-recenter C-c . C-l
|
||||
|
|
@ -328,7 +328,7 @@ After that, changing the prefix key requires manipulating keymaps."
|
|||
|
||||
(define-key mainmap follow-mode-prefix map)
|
||||
|
||||
;; Replace the standard `end-of-buffer', when in Follow Mode. (I
|
||||
;; Replace the standard `end-of-buffer', when in Follow mode. (I
|
||||
;; don't see the point in trying to replace every function that
|
||||
;; could be enhanced in Follow mode. End-of-buffer is a special
|
||||
;; case since it is very simple to define and it greatly enhances
|
||||
|
|
@ -467,7 +467,7 @@ are \" Fw\", or simply \"\"."
|
|||
:group 'follow)
|
||||
|
||||
(defcustom follow-intercept-processes (fboundp 'start-process)
|
||||
"When non-nil, Follow Mode will monitor process output."
|
||||
"When non-nil, Follow mode will monitor process output."
|
||||
:type 'boolean
|
||||
:group 'follow)
|
||||
|
||||
|
|
@ -477,11 +477,11 @@ are \" Fw\", or simply \"\"."
|
|||
A \"tail window\" is a window that displays only the end of
|
||||
the buffer. Normally it is practical for the user that empty
|
||||
windows are recentered automatically. However, when using
|
||||
Follow Mode it breaks the display when the end is displayed
|
||||
Follow mode it breaks the display when the end is displayed
|
||||
in a window \"above\" the last window. This is for
|
||||
example the case when displaying a short page in info.
|
||||
|
||||
Must be set before Follow Mode is loaded.
|
||||
Must be set before Follow mode is loaded.
|
||||
|
||||
Please note that it is not possible to fully prevent Emacs from
|
||||
recentering empty windows. Please report if you find a repeatable
|
||||
|
|
@ -572,7 +572,7 @@ of two major techniques:
|
|||
|
||||
* The windows always displays adjacent sections of the buffer.
|
||||
This means that whenever one window is moved, all the
|
||||
others will follow. (Hence the name Follow Mode.)
|
||||
others will follow. (Hence the name Follow mode.)
|
||||
|
||||
* Should the point (cursor) end up outside a window, another
|
||||
window displaying that point is selected, if possible. This
|
||||
|
|
@ -623,7 +623,7 @@ Keys specific to Follow mode:
|
|||
(add-hook 'find-file-hook 'follow-find-file-hook t)
|
||||
|
||||
(defun follow-find-file-hook ()
|
||||
"Find-file hook for Follow Mode. See the variable `follow-auto'."
|
||||
"Find-file hook for Follow mode. See the variable `follow-auto'."
|
||||
(if follow-auto (follow-mode t)))
|
||||
|
||||
;;}}}
|
||||
|
|
@ -636,7 +636,7 @@ Keys specific to Follow mode:
|
|||
|
||||
;;{{{ Scroll
|
||||
|
||||
;; `scroll-up' and `-down', but for windows in Follow Mode.
|
||||
;; `scroll-up' and `-down', but for windows in Follow mode.
|
||||
;;
|
||||
;; Almost like the real thing, excpet when the cursor ends up outside
|
||||
;; the top or bottom... In our case however, we end up outside the
|
||||
|
|
@ -652,7 +652,7 @@ Keys specific to Follow mode:
|
|||
;; good redisplay abstraction.)
|
||||
|
||||
(defun follow-scroll-up (&optional arg)
|
||||
"Scroll text in a Follow Mode window chain up.
|
||||
"Scroll text in a Follow mode window chain up.
|
||||
|
||||
If called with no ARG, the `next-screen-context-lines' last lines of
|
||||
the bottom window in the chain will be visible in the top window.
|
||||
|
|
@ -660,7 +660,7 @@ the bottom window in the chain will be visible in the top window.
|
|||
If called with an argument, scroll ARG lines up.
|
||||
Negative ARG means scroll downward.
|
||||
|
||||
Works like `scroll-up' when not in Follow Mode."
|
||||
Works like `scroll-up' when not in Follow mode."
|
||||
(interactive "P")
|
||||
(cond ((not (and (boundp 'follow-mode) follow-mode))
|
||||
(scroll-up arg))
|
||||
|
|
@ -681,7 +681,7 @@ Works like `scroll-up' when not in Follow Mode."
|
|||
|
||||
|
||||
(defun follow-scroll-down (&optional arg)
|
||||
"Scroll text in a Follow Mode window chain down.
|
||||
"Scroll text in a Follow mode window chain down.
|
||||
|
||||
If called with no ARG, the `next-screen-context-lines' top lines of
|
||||
the top window in the chain will be visible in the bottom window.
|
||||
|
|
@ -689,7 +689,7 @@ the top window in the chain will be visible in the bottom window.
|
|||
If called with an argument, scroll ARG lines down.
|
||||
Negative ARG means scroll upward.
|
||||
|
||||
Works like `scroll-up' when not in Follow Mode."
|
||||
Works like `scroll-up' when not in Follow mode."
|
||||
(interactive "P")
|
||||
(cond ((not (and (boundp 'follow-mode) follow-mode))
|
||||
(scroll-up arg))
|
||||
|
|
@ -716,12 +716,12 @@ Works like `scroll-up' when not in Follow Mode."
|
|||
|
||||
;;;###autoload
|
||||
(defun follow-delete-other-windows-and-split (&optional arg)
|
||||
"Create two side by side windows and enter Follow Mode.
|
||||
"Create two side by side windows and enter Follow mode.
|
||||
|
||||
Execute this command to display as much as possible of the text
|
||||
in the selected window. All other windows, in the current
|
||||
frame, are deleted and the selected window is split in two
|
||||
side-by-side windows. Follow Mode is activated, hence the
|
||||
side-by-side windows. Follow mode is activated, hence the
|
||||
two windows always will display two successive pages.
|
||||
\(If one window is moved, the other one will follow.)
|
||||
|
||||
|
|
@ -749,7 +749,7 @@ in your `~/.emacs' file, replacing [f7] by your favourite key:
|
|||
(follow-mode 1)))
|
||||
|
||||
(defun follow-switch-to-buffer (buffer)
|
||||
"Show BUFFER in all windows in the current Follow Mode window chain."
|
||||
"Show BUFFER in all windows in the current Follow mode window chain."
|
||||
(interactive "BSwitch to Buffer: ")
|
||||
(let ((orig-window (selected-window))
|
||||
(windows (follow-all-followers)))
|
||||
|
|
@ -777,7 +777,7 @@ Defaults to current buffer."
|
|||
|
||||
|
||||
(defun follow-switch-to-current-buffer-all ()
|
||||
"Show current buffer in all windows on this frame, and enter Follow Mode.
|
||||
"Show current buffer in all windows on this frame, and enter Follow mode.
|
||||
|
||||
To bind this command to a hotkey place the following line
|
||||
in your `~/.emacs' file:
|
||||
|
|
@ -874,10 +874,10 @@ Follow mode since the windows should always be aligned."
|
|||
;;{{{ End of buffer
|
||||
|
||||
(defun follow-end-of-buffer (&optional arg)
|
||||
"Move point to the end of the buffer, Follow Mode style.
|
||||
"Move point to the end of the buffer, Follow mode style.
|
||||
|
||||
If the end is not visible, it will be displayed in the last possible
|
||||
window in the Follow Mode window chain.
|
||||
window in the Follow mode window chain.
|
||||
|
||||
The mark is left at the previous position. With arg N, put point N/10
|
||||
of the way from the true end."
|
||||
|
|
@ -1393,7 +1393,7 @@ position of the first window. Otherwise it is a good guess."
|
|||
"Make sure windows displaying the end of a buffer aren't recentered.
|
||||
|
||||
This is done by reading and rewriting the start position of
|
||||
non-first windows in Follow Mode."
|
||||
non-first windows in Follow mode."
|
||||
(if follow-avoid-tail-recenter-p
|
||||
(let* ((orig-buffer (current-buffer))
|
||||
(top (frame-first-window (selected-frame)))
|
||||
|
|
@ -1685,7 +1685,7 @@ non-first windows in Follow Mode."
|
|||
(after
|
||||
,(intern (concat "follow-" (symbol-name (car cmds))))
|
||||
activate)
|
||||
"Adviced by Follow Mode."
|
||||
"Adviced by Follow mode."
|
||||
(follow-redraw-after-event (ad-get-arg 0))))
|
||||
(setq cmds (cdr cmds))))
|
||||
|
||||
|
|
@ -1796,9 +1796,9 @@ WINDOW can be an object or a window."
|
|||
;; filter...
|
||||
|
||||
(defadvice set-process-filter (before follow-set-process-filter activate)
|
||||
"Ensure process output will be displayed correctly in Follow Mode buffers.
|
||||
"Ensure process output will be displayed correctly in Follow mode buffers.
|
||||
|
||||
Follow Mode inserts its own process filter to do its
|
||||
Follow mode inserts its own process filter to do its
|
||||
magic stuff before the real process filter is called."
|
||||
(if follow-intercept-processes
|
||||
(progn
|
||||
|
|
@ -1872,7 +1872,7 @@ magic stuff before the real process filter is called."
|
|||
(defun follow-intercept-process-output ()
|
||||
"Intercept all active processes.
|
||||
|
||||
This is needed so that Follow Mode can track all display events in the
|
||||
This is needed so that Follow mode can track all display events in the
|
||||
system. (See `follow-mode'.)"
|
||||
(interactive)
|
||||
(let ((list (process-list)))
|
||||
|
|
@ -1886,7 +1886,7 @@ system. (See `follow-mode'.)"
|
|||
|
||||
|
||||
(defun follow-stop-intercept-process-output ()
|
||||
"Stop Follow Mode from spying on processes.
|
||||
"Stop Follow mode from spying on processes.
|
||||
|
||||
All current spypoints are removed and no new will be added.
|
||||
|
||||
|
|
@ -2151,7 +2151,7 @@ report this using the `report-emacs-bug' function."
|
|||
;;{{{ Tail window handling
|
||||
|
||||
;; In Emacs (not XEmacs) windows showing nothing are sometimes
|
||||
;; recentered. When in Follow Mode, this is not desirable for
|
||||
;; recentered. When in Follow mode, this is not desirable for
|
||||
;; non-first windows in the window chain. This section tries to
|
||||
;; make the windows stay where they should be.
|
||||
;;
|
||||
|
|
@ -2185,10 +2185,10 @@ report this using the `report-emacs-bug' function."
|
|||
|
||||
(if follow-avoid-tail-recenter-p
|
||||
(defadvice sit-for (before follow-sit-for activate)
|
||||
"Adviced by Follow Mode.
|
||||
"Adviced by Follow mode.
|
||||
|
||||
Avoid to recenter windows displaying only the end of a file as when
|
||||
displaying a short file in two windows, using Follow Mode."
|
||||
displaying a short file in two windows, using Follow mode."
|
||||
(follow-avoid-tail-recenter)))
|
||||
|
||||
|
||||
|
|
@ -2198,7 +2198,7 @@ displaying a short file in two windows, using Follow Mode."
|
|||
(if (and follow-avoid-tail-recenter-p
|
||||
(fboundp 'move-overlay))
|
||||
(defadvice move-overlay (before follow-move-overlay activate)
|
||||
"Adviced by Follow Mode.
|
||||
"Adviced by Follow mode.
|
||||
Don't recenter windows showing only the end of a buffer.
|
||||
This prevents `mouse-drag-region' from messing things up."
|
||||
(follow-avoid-tail-recenter)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue