0
|
1 ;;; auto-show.el --- perform automatic horizontal scrolling as point moves
|
155
|
2
|
|
3 ;; This file is in the public domain.
|
0
|
4
|
155
|
5 ;; Author: Pete Ware <ware@cis.ohio-state.edu>
|
|
6 ;; Modified by: Ben Wing <wing@666.com>
|
|
7 ;; Maintainer: XEmacs Development Team
|
|
8 ;; Keywords: extensions, internal
|
0
|
9
|
2
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
25 ;; 02111-1307, USA.
|
|
26
|
155
|
27 ;;; Synched up with: Emacs/Mule zeta.
|
0
|
28
|
|
29 ;;; Commentary:
|
|
30
|
155
|
31 ;; This file provides functions that
|
|
32 ;; automatically scroll the window horizontally when the point moves
|
|
33 ;; off the left or right side of the window.
|
0
|
34
|
155
|
35 ;; Once this library is loaded, automatic horizontal scrolling
|
|
36 ;; occurs whenever long lines are being truncated.
|
|
37 ;; To request truncation of long lines, set the variable
|
|
38 ;; Setting the variable `truncate-lines' to non-nil.
|
|
39 ;; You can do this for all buffers as follows:
|
|
40 ;;
|
|
41 ;; (set-default 'truncate-lines t)
|
0
|
42
|
155
|
43 ;; Here is how to do it for C mode only:
|
|
44 ;;
|
|
45 ;; (set-default 'truncate-lines nil) ; this is the original value
|
|
46 ;; (defun my-c-mode-hook ()
|
|
47 ;; "Run when C-mode starts up. Changes ..."
|
|
48 ;; ... set various personal preferences ...
|
|
49 ;; (setq truncate-lines t))
|
|
50 ;; (add-hook 'c-mode-hook 'my-c-mode-hook)
|
|
51 ;;
|
|
52 ;;
|
|
53 ;; As a finer level of control, you can still have truncated lines but
|
|
54 ;; without the automatic horizontal scrolling by setting the buffer
|
|
55 ;; local variable `auto-show-mode' to nil. The default value is t.
|
|
56 ;; The command `auto-show-mode' toggles the value of the variable
|
|
57 ;; `auto-show-mode'.
|
0
|
58
|
|
59 ;;; Code:
|
|
60
|
|
61 (defvar auto-show-mode t
|
|
62 "*Non-nil enables automatic horizontal scrolling, when lines are truncated.
|
|
63 The default value is t. To change the default, do this:
|
|
64 (set-default 'auto-show-mode nil)
|
|
65 See also command `auto-show-mode'.
|
155
|
66 This variable has no effect when lines are not being truncated.
|
|
67 This variable is automatically local in each buffer where it is set.")
|
0
|
68
|
|
69 (make-variable-buffer-local 'auto-show-mode)
|
|
70
|
|
71 (defvar auto-show-shift-amount 8
|
|
72 "*Extra columns to scroll. for automatic horizontal scrolling.")
|
|
73
|
|
74 (defvar auto-show-show-left-margin-threshold 50
|
|
75 "*Threshold column for automatic horizontal scrolling to the right.
|
|
76 If point is before this column, we try to scroll to make the left margin
|
|
77 visible. Setting this to 0 disables this feature.")
|
|
78
|
|
79 (defun auto-show-truncationp ()
|
|
80 "True if line truncation is enabled for the selected window."
|
2
|
81 ;; XEmacs change (use specifiers)
|
0
|
82 ;; ### There should be a more straightforward way to do this from elisp.
|
|
83 (or truncate-lines
|
|
84 (and truncate-partial-width-windows
|
|
85 (< (+ (window-width)
|
|
86 (specifier-instance left-margin-width)
|
|
87 (specifier-instance right-margin-width))
|
|
88 (frame-width)))))
|
|
89
|
|
90 (defun auto-show-mode (arg)
|
|
91 "Turn automatic horizontal scroll mode on or off.
|
155
|
92 With arg, turn auto scrolling on if arg is positive, off otherwise.
|
|
93 This mode is enabled or disabled for each buffer individually.
|
|
94 It takes effect only when `truncate-lines' is non-nil."
|
0
|
95 (interactive "P")
|
|
96 (setq auto-show-mode
|
|
97 (if (null arg)
|
|
98 (not auto-show-mode)
|
|
99 (> (prefix-numeric-value arg) 0))))
|
|
100
|
2
|
101 ;; XEmacs addition:
|
0
|
102 (defvar auto-show-inhibiting-commands
|
|
103 '(scrollbar-char-left
|
|
104 scrollbar-char-right
|
|
105 scrollbar-page-left
|
|
106 scrollbar-page-right
|
|
107 scrollbar-to-left
|
|
108 scrollbar-to-right
|
|
109 scrollbar-horizontal-drag)
|
|
110 "Commands that inhibit auto-show behavior.
|
|
111 This normally includes the horizontal scrollbar commands.")
|
|
112
|
2
|
113 ;; XEmacs addition:
|
0
|
114 (defun auto-show-should-take-action-p ()
|
|
115 (and auto-show-mode (auto-show-truncationp)
|
|
116 (equal (window-buffer) (current-buffer))
|
|
117 (not (memq this-command auto-show-inhibiting-commands))))
|
|
118
|
|
119 ;; XEmacs addition:
|
|
120 (defun auto-show-make-region-visible (start end)
|
|
121 "Move point in such a way that the region (START, END) is visible.
|
|
122 This only does anything if auto-show-mode is enabled, and it doesn't
|
|
123 actually do any horizontal scrolling; rather, it just sets things up so
|
|
124 that the region will be visible when `auto-show-make-point-visible'
|
|
125 is next called (this happens after every command)."
|
|
126 (if (auto-show-should-take-action-p)
|
|
127 (let* ((col (current-column)) ;column on line point is at
|
|
128 (scroll (window-hscroll));how far window is scrolled
|
|
129 (w-width (- (window-width)
|
|
130 (if (> scroll 0)
|
|
131 2 1))) ;how wide window is on the screen
|
|
132 (right-col (+ scroll w-width))
|
|
133 (start-col (save-excursion (goto-char start) (current-column)))
|
|
134 (end-col (save-excursion (goto-char end) (current-column))))
|
|
135 (cond ((and (>= start-col scroll)
|
|
136 (<= end-col right-col))
|
|
137 ;; already completely visible
|
|
138 nil)
|
|
139 ((< start-col scroll)
|
|
140 (scroll-right (- scroll start-col)))
|
|
141 (t
|
|
142 (scroll-left (- end-col right-col)))))))
|
|
143
|
|
144 (defun auto-show-make-point-visible (&optional ignore-arg)
|
|
145 "Scroll horizontally to make point visible, if that is enabled.
|
|
146 This function only does something if `auto-show-mode' is non-nil
|
|
147 and longlines are being truncated in the selected window.
|
155
|
148 See also the command `auto-show-mode'."
|
0
|
149 (interactive)
|
2
|
150 ;; XEmacs change
|
0
|
151 (if (auto-show-should-take-action-p)
|
|
152 (let* ((col (current-column)) ;column on line point is at
|
|
153 (scroll (window-hscroll)) ;how far window is scrolled
|
|
154 (w-width (- (window-width)
|
|
155 (if (> scroll 0)
|
|
156 2 1))) ;how wide window is on the screen
|
|
157 (right-col (+ scroll w-width)))
|
|
158 (if (and (< col auto-show-show-left-margin-threshold)
|
|
159 (< col (window-width))
|
|
160 (> scroll 0))
|
|
161 (scroll-right scroll)
|
|
162 (if (< col scroll) ;to the left of the screen
|
|
163 (scroll-right (+ (- scroll col) auto-show-shift-amount))
|
|
164 (if (or (> col right-col) ;to the right of the screen
|
|
165 (and (= col right-col)
|
|
166 (not (eolp))))
|
|
167 (scroll-left (+ auto-show-shift-amount
|
|
168 (- col (+ scroll w-width))))
|
|
169 )
|
|
170 )
|
|
171 )
|
|
172 )
|
|
173 )
|
|
174 )
|
|
175
|
|
176 ;; XEmacs change:
|
|
177 ;; #### instead of this, we kludgily call it from the C code, to make sure
|
|
178 ;; that it's done after any other things on post-command-hook (which might
|
|
179 ;; move point).
|
|
180 ;; Do auto-scrolling after commands.
|
|
181 ;;(add-hook 'post-command-hook 'auto-show-make-point-visible)
|
|
182
|
|
183 ;; If being dumped, turn it on right away.
|
155
|
184 (when (boundp 'load-gc)
|
|
185 (auto-show-mode 1))
|
0
|
186
|
|
187 ;; Do auto-scrolling in comint buffers after process output also.
|
|
188 ; XEmacs -- don't do this now, it messes up comint.
|
|
189 ;(add-hook 'comint-output-filter-functions 'auto-show-make-point-visible t)
|
|
190
|
|
191 (provide 'auto-show)
|
|
192
|
|
193 ;; auto-show.el ends here
|