summaryrefslogtreecommitdiff
path: root/lisp/face-remap.el
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2008-06-04 05:38:04 +0000
committerMiles Bader <miles@gnu.org>2008-06-04 05:38:04 +0000
commit56c73dec5cf9f392a3ddfa6472f8eb61ff1cbaf9 (patch)
tree7a1b43cf57f200ee7ea98e68a123cd23f91c4ae4 /lisp/face-remap.el
parent2a1e0c92c318a2c0ba436b4435cd0fe2f7f75261 (diff)
downloademacs-56c73dec5cf9f392a3ddfa6472f8eb61ff1cbaf9.tar.gz
Add adjust-buffer-face-height command
... and move face-height adjustment bindings into ctl-x-map using it. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1203
Diffstat (limited to 'lisp/face-remap.el')
-rw-r--r--lisp/face-remap.el69
1 files changed, 54 insertions, 15 deletions
diff --git a/lisp/face-remap.el b/lisp/face-remap.el
index fe517a77a33..f53e37e969e 100644
--- a/lisp/face-remap.el
+++ b/lisp/face-remap.el
@@ -181,8 +181,6 @@ also enable or disable `text-scale-mode' as necessary."
text-scale-mode-amount))))
(force-window-update (current-buffer)))
-;;;###autoload (global-set-key [(control =)] 'increase-buffer-face-height)
-;;;###autoload (global-set-key [(control +)] 'increase-buffer-face-height)
;;;###autoload
(defun increase-buffer-face-height (&optional inc)
"Increase the height of the default face in the current buffer by INC steps.
@@ -192,28 +190,69 @@ Each step scales the height of the default face by the variable
`text-scale-mode-step' (a negative number of steps decreases the
height by the same amount). As a special case, an argument of 0
will remove any scaling currently active."
- (interactive
- (list
- (cond ((eq current-prefix-arg '-) -1)
- ((numberp current-prefix-arg) current-prefix-arg)
- ((consp current-prefix-arg) -1)
- (t 1))))
+ (interactive "p")
(setq text-scale-mode-amount (if (= inc 0) 0 (+ text-scale-mode-amount inc)))
(text-scale-mode (if (zerop text-scale-mode-amount) -1 1)))
-;;;###autoload (global-set-key [(control -)] 'decrease-buffer-face-height)
;;;###autoload
(defun decrease-buffer-face-height (&optional dec)
"Decrease the height of the default face in the current buffer by DEC steps.
See `increase-buffer-face-height' for more details."
- (interactive
- (list
- (cond ((eq current-prefix-arg '-) -1)
- ((numberp current-prefix-arg) current-prefix-arg)
- ((consp current-prefix-arg) -1)
- (t 1))))
+ (interactive "p")
(increase-buffer-face-height (- dec)))
+;;;###autoload (define-key ctl-x-map [(control ?+)] 'adjust-buffer-face-height)
+;;;###autoload (define-key ctl-x-map [(control ?-)] 'adjust-buffer-face-height)
+;;;###autoload (define-key ctl-x-map [(control ?=)] 'adjust-buffer-face-height)
+;;;###autoload (define-key ctl-x-map [(control ?0)] 'adjust-buffer-face-height)
+;;;###autoload
+(defun adjust-buffer-face-height (&optional inc)
+ "Increase or decrease the height of the default face in the current buffer.
+
+The actual adjustment made depends on the final component of the
+key-binding used to invoke the command, with all modifiers
+removed:
+
+ +, = Increase the default face height by one step
+ - Decrease the default face height by one step
+ 0 Reset the default face height to the global default
+
+Then, continue to read input events and further adjust the face
+height as long as the input event read (with all modifiers
+removed) is one the above.
+
+Each step scales the height of the default face by the variable
+`text-scale-mode-step' (a negative number of steps decreases the
+height by the same amount). As a special case, an argument of 0
+will remove any scaling currently active.
+
+This command is a special-purpose wrapper around the
+`increase-buffer-face-height' command which makes repetition
+convenient even when it is bound in a non-top-level keymap. For
+binding in a top-level keymap, `increase-buffer-face-height' or
+`decrease-default-face-height' may be more appropriate."
+ (interactive "p")
+ (let ((first t)
+ (step t)
+ (ev last-command-event))
+ (while step
+ (let ((base (event-basic-type ev)))
+ (cond ((or (eq base ?+) (eq base ?=))
+ (setq step inc))
+ ((eq base ?-)
+ (setq step (- inc)))
+ ((eq base ?0)
+ (setq step 0))
+ (first
+ (setq step inc))
+ (t
+ (setq step nil))))
+ (when step
+ (increase-buffer-face-height step)
+ (setq inc 1 first nil)
+ (setq ev (read-event))))
+ (push ev unread-command-events)))
+
;; ----------------------------------------------------------------
;; variable-pitch-mode