Mercurial > emacs
view lisp/term/sun.el @ 42602:633233bf2bbf
2002-01-07 Michael Kifer <kifer@cs.stonybrook.edu>
* viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
new macro that replaces viper-emacs-p and viper-xemacs-p in many
cases. Used to reduce the number of warnings.
* viper-cmd.el: use viper-cond-compile-for-xemacs-or-emacs.
(viper-standard-value): moved here from viper.el.
(viper-set-unread-command-events): moved to viper-util.el
(viper-check-minibuffer-overlay): make sure
viper-minibuffer-overlay is moved to cover the entire input field.
* viper-util.el: use viper-cond-compile-for-xemacs-or-emacs.
(viper-read-key-sequence, viper-set-unread-command-events,
viper-char-symbol-sequence-p, viper-char-array-p): moved here.
* viper-ex.el: use viper-cond-compile-for-xemacs-or-emacs.
* viper-keym.el: use viper-cond-compile-for-xemacs-or-emacs.
* viper-mous.el: use viper-cond-compile-for-xemacs-or-emacs.
* viper-macs.el (viper-char-array-p, viper-char-symbol-sequence-p,
viper-event-vector-p): moved to viper-util.el
* viper.el (viper-standard-value): moved to viper-cmd.el.
Use viper-cond-compile-for-xemacs-or-emacs.
* ediff-help.el: use ediff-cond-compile-for-xemacs-or-emacs.
* ediff-hook.el: use ediff-cond-compile-for-xemacs-or-emacs.
* ediff-init.el (ediff-cond-compile-for-xemacs-or-emacs): new
macro designed to be used in many places where ediff-emacs-p or
ediff-xemacs-p was previously used. Reduces the number of
warnings.
Use ediff-cond-compile-for-xemacs-or-emacs in many places in lieue
of ediff-xemacs-p.
(ediff-make-current-diff-overlay, ediff-highlight-diff-in-one-buffer,
ediff-convert-fine-diffs-to-overlays, ediff-empty-diff-region-p,
ediff-whitespace-diff-region-p, ediff-get-region-contents):
moved to ediff-util.el.
(ediff-event-key): moved here.
* ediff-merge.el: got rid of unreferenced variables.
* ediff-mult.el: use ediff-cond-compile-for-xemacs-or-emacs.
* ediff-util.el: use ediff-cond-compile-for-xemacs-or-emacs.
(ediff-cleanup-mess): improved the way windows are set up after
quitting ediff.
(ediff-janitor): use ediff-dispose-of-variant-according-to-user.
(ediff-dispose-of-variant-according-to-user): new function
designed to be smarter and also understands indirect buffers.
(ediff-highlight-diff-in-one-buffer,
ediff-unhighlight-diff-in-one-buffer,
ediff-unhighlight-diffs-totally-in-one-buffer,
ediff-highlight-diff, ediff-highlight-diff,
ediff-unhighlight-diff, ediff-unhighlight-diffs-totally,
ediff-empty-diff-region-p, ediff-whitespace-diff-region-p,
ediff-get-region-contents, ediff-make-current-diff-overlay):
moved here.
(ediff-format-bindings-of): new function by Hannu Koivisto
<azure@iki.fi>.
(ediff-setup): make sure the merge buffer is always widened and
modifiable.
(ediff-write-merge-buffer-and-maybe-kill): refuse to write the
result of a merge into a file visited by another buffer.
(ediff-arrange-autosave-in-merge-jobs): check if the merge file
is visited by another buffer and ask to save/delete that buffer.
(ediff-verify-file-merge-buffer): new function to do the above.
* ediff-vers.el: load ediff-init.el at compile time.
* ediff-wind.el: use ediff-cond-compile-for-xemacs-or-emacs.
* ediff.el (ediff-windows, ediff-regions-wordwise,
ediff-regions-linewise): use indirect buffers to improve
robustness and make it possible to compare regions of the same
buffer (even overlapping regions).
(ediff-clone-buffer-for-region-comparison,
ediff-clone-buffer-for-window-comparison): new functions.
(ediff-files-internal): refuse to compare identical files.
(ediff-regions-internal): get rid of the warning about comparing
regions of the same buffer.
* ediff-diff.el (ediff-convert-fine-diffs-to-overlays): moved here.
Plus the following fixes courtesy of Dave Love:
Doc fixes.
(ediff-word-1): Use word class and move - to the
front per regexp documentation.
(ediff-wordify): Bind forward-word-function outside loop.
(ediff-copy-to-buffer): Use insert-buffer-substring rather than
consing buffer contents.
(ediff-goto-word): Move syntax table setting outside loop.
author | Michael Kifer <kifer@cs.stonybrook.edu> |
---|---|
date | Tue, 08 Jan 2002 04:36:01 +0000 |
parents | 916f157c7118 |
children | 5ade352e8d1c |
line wrap: on
line source
;;; sun.el --- keybinding for standard default sunterm keys ;; Copyright (C) 1987 Free Software Foundation, Inc. ;; Author: Jeff Peck <peck@sun.com> ;; Keywords: terminals ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;;; Commentary: ;; The function key sequences for the console have been converted for ;; use with function-key-map, but the *tool stuff hasn't been touched. ;;; Code: (defun scroll-down-in-place (n) (interactive "p") (previous-line n) (scroll-down n)) (defun scroll-up-in-place (n) (interactive "p") (next-line n) (scroll-up n)) (defun kill-region-and-unmark (beg end) "Like kill-region, but pops the mark [which equals point, anyway.]" (interactive "r") (kill-region beg end) (setq this-command 'kill-region-and-unmark) (set-mark-command t)) (defun select-previous-complex-command () "Select Previous-complex-command" (interactive) (if (zerop (minibuffer-depth)) (repeat-complex-command 1) ;; FIXME: this function does not seem to exist. -stef'01 (previous-complex-command 1))) (defun rerun-prev-command () "Repeat Previous-complex-command." (interactive) (eval (nth 0 command-history))) (defvar grep-arg nil "Default arg for RE-search") (defun grep-arg () (if (memq last-command '(research-forward research-backward)) grep-arg (let* ((command (car command-history)) (command-name (symbol-name (car command))) (search-arg (car (cdr command))) (search-command (and command-name (string-match "search" command-name))) ) (if (and search-command (stringp search-arg)) (setq grep-arg search-arg) (setq search-command this-command grep-arg (read-string "REsearch: " grep-arg) this-command search-command) grep-arg)))) (defun research-forward () "Repeat RE search forward." (interactive) (re-search-forward (grep-arg))) (defun research-backward () "Repeat RE search backward." (interactive) (re-search-backward (grep-arg))) ;; ;; handle sun's extra function keys ;; this version for those who run with standard .ttyswrc and no emacstool ;; ;; sunview picks up expose and open on the way UP, ;; so we ignore them on the way down ;; (defvar sun-raw-prefix (make-sparse-keymap)) (define-key function-key-map "\e[" sun-raw-prefix) (define-key sun-raw-prefix "210z" [r3]) (define-key sun-raw-prefix "213z" [r6]) (define-key sun-raw-prefix "214z" [r7]) (define-key sun-raw-prefix "216z" [r9]) (define-key sun-raw-prefix "218z" [r11]) (define-key sun-raw-prefix "220z" [r13]) (define-key sun-raw-prefix "222z" [r15]) (define-key sun-raw-prefix "193z" [redo]) (define-key sun-raw-prefix "194z" [props]) (define-key sun-raw-prefix "195z" [undo]) ;; (define-key sun-raw-prefix "196z" 'ignore) ; Expose-down ;; (define-key sun-raw-prefix "197z" [put]) ;; (define-key sun-raw-prefix "198z" 'ignore) ; Open-down ;; (define-key sun-raw-prefix "199z" [get]) (define-key sun-raw-prefix "200z" [find]) ;; (define-key sun-raw-prefix "201z" 'kill-region-and-unmark) ; Delete (define-key sun-raw-prefix "224z" [f1]) (define-key sun-raw-prefix "225z" [f2]) (define-key sun-raw-prefix "226z" [f3]) (define-key sun-raw-prefix "227z" [f4]) (define-key sun-raw-prefix "228z" [f5]) (define-key sun-raw-prefix "229z" [f6]) (define-key sun-raw-prefix "230z" [f7]) (define-key sun-raw-prefix "231z" [f8]) (define-key sun-raw-prefix "232z" [f9]) (define-key sun-raw-prefix "233z" [f10]) (define-key sun-raw-prefix "234z" [f11]) (define-key sun-raw-prefix "235z" [f12]) (define-key sun-raw-prefix "A" [up]) ; R8 (define-key sun-raw-prefix "B" [down]) ; R14 (define-key sun-raw-prefix "C" [right]) ; R12 (define-key sun-raw-prefix "D" [left]) ; R10 (global-set-key [r3] 'backward-page) (global-set-key [r6] 'forward-page) (global-set-key [r7] 'beginning-of-buffer) (global-set-key [r9] 'scroll-down) (global-set-key [r11] 'recenter) (global-set-key [r13] 'end-of-buffer) (global-set-key [r15] 'scroll-up) (global-set-key [redo] 'redraw-display) ;FIXME: collides with default. (global-set-key [props] 'list-buffers) (global-set-key [put] 'sun-select-region) (global-set-key [get] 'sun-yank-selection) (global-set-key [find] 'exchange-point-and-mark) (global-set-key [f3] 'scroll-down-in-place) (global-set-key [f4] 'scroll-up-in-place) (global-set-key [f6] 'shrink-window) (global-set-key [f7] 'enlarge-window) ;; Since .emacs gets loaded before this file, a hook is supplied ;; for you to put your own bindings in. (defvar sun-raw-prefix-hooks nil "List of forms to evaluate after setting sun-raw-prefix.") (when sun-raw-prefix-hooks (message "sun-raw-prefix-hooks is obsolete! Use term-setup-hook instead!") (let ((hooks sun-raw-prefix-hooks)) (while hooks (eval (car hooks)) (setq hooks (cdr hooks))))) ;;; This section adds definitions for the emacstool users ;; emacstool event filter converts function keys to C-x*{c}{lrt} ;; ;; for example the Open key (L7) would be encoded as "\C-x*gl" ;; the control, meta, and shift keys modify the character {lrt} ;; note that (unshifted) C-l is ",", C-r is "2", and C-t is "4" ;; ;; {c} is [a-j] for LEFT, [a-i] for TOP, [a-o] for RIGHT. ;; A higher level insists on encoding {h,j,l,n}{r} (the arrow keys) ;; as ANSI escape sequences. Use the shell command ;; % setkeys noarrows ;; if you want these to come through for emacstool. ;; ;; If you are not using EmacsTool, ;; you can also use this by creating a .ttyswrc file to do the conversion. ;; but it won't include the CONTROL, META, or SHIFT keys! ;; ;; Important to define SHIFTed sequence before matching unshifted sequence. ;; (talk about bletcherous old uppercase terminal conventions!*$#@&%*&#$%) ;; this is worse than C-S/C-Q flow control anyday! ;; Do *YOU* run in capslock mode? ;; ;; Note: al, el and gl are trapped by EmacsTool, so they never make it here. (defvar suntool-map (make-sparse-keymap) "*Keymap for Emacstool bindings.") (define-key suntool-map "gr" 'beginning-of-buffer) ; r7 (define-key suntool-map "iR" 'backward-page) ; R9 (define-key suntool-map "ir" 'scroll-down) ; r9 (define-key suntool-map "kr" 'recenter) ; r11 (define-key suntool-map "mr" 'end-of-buffer) ; r13 (define-key suntool-map "oR" 'forward-page) ; R15 (define-key suntool-map "or" 'scroll-up) ; r15 (define-key suntool-map "b\M-L" 'rerun-prev-command) ; M-AGAIN (define-key suntool-map "b\M-l" 'prev-complex-command) ; M-Again (define-key suntool-map "bl" 'redraw-display) ; Again (define-key suntool-map "cl" 'list-buffers) ; Props (define-key suntool-map "dl" 'undo) ; Undo (define-key suntool-map "el" 'ignore) ; Expose-Open (define-key suntool-map "fl" 'sun-select-region) ; Put (define-key suntool-map "f," 'copy-region-as-kill) ; C-Put (define-key suntool-map "gl" 'ignore) ; Open-Open (define-key suntool-map "hl" 'sun-yank-selection) ; Get (define-key suntool-map "h," 'yank) ; C-Get (define-key suntool-map "il" 'research-forward) ; Find (define-key suntool-map "i," 're-search-forward) ; C-Find (define-key suntool-map "i\M-l" 'research-backward) ; M-Find (define-key suntool-map "i\M-," 're-search-backward) ; C-M-Find (define-key suntool-map "jL" 'yank) ; DELETE (define-key suntool-map "jl" 'kill-region-and-unmark) ; Delete (define-key suntool-map "j\M-l" 'exchange-point-and-mark); M-Delete (define-key suntool-map "j," (lambda () (interactive) (pop-mark))) ; C-Delete (define-key suntool-map "fT" 'shrink-window-horizontally) ; T6 (define-key suntool-map "gT" 'enlarge-window-horizontally) ; T7 (define-key suntool-map "ft" 'shrink-window) ; t6 (define-key suntool-map "gt" 'enlarge-window) ; t7 (define-key suntool-map "cT" (lambda (n) (interactive "p") (scroll-down n))) (define-key suntool-map "dT" (lambda (n) (interactive "p") (scroll-up n))) (define-key suntool-map "ct" 'scroll-down-in-place) ; t3 (define-key suntool-map "dt" 'scroll-up-in-place) ; t4 (define-key ctl-x-map "*" suntool-map) ;; Since .emacs gets loaded before this file, a hook is supplied ;; for you to put your own bindings in. (defvar suntool-map-hooks nil "List of forms to evaluate after setting suntool-map.") (when suntool-map-hooks (message "suntool-map-hooks is obsolete! Use term-setup-hook instead!") (let ((hooks suntool-map-hooks)) (while hooks (eval (car hooks)) (setq hooks (cdr hooks))))) ;; ;; If running under emacstool, arrange to call suspend-emacstool ;; instead of suspend-emacs. ;; ;; First mouse blip is a clue that we are in emacstool. ;; ;; C-x C-@ is the mouse command prefix. (autoload 'sun-mouse-handler "sun-mouse" "Sun Emacstool handler for mouse blips (not loaded)." t) (defun emacstool-init () "Set up Emacstool window, if you know you are in an emacstool." ;; Make sure sun-mouse and sun-fns are loaded. (require 'sun-fns) (define-key ctl-x-map "\C-@" 'sun-mouse-handler) ;; FIXME: this function does not seem to exist either. -stef'01 (if (< (sun-window-init) 0) (message "Not a Sun Window") (progn (substitute-key-definition 'suspend-emacs 'suspend-emacstool global-map) (substitute-key-definition 'suspend-emacs 'suspend-emacstool esc-map) (substitute-key-definition 'suspend-emacs 'suspend-emacstool ctl-x-map)) (send-string-to-terminal (concat "\033]lEmacstool - GNU Emacs " emacs-version "\033\\")))) (defun sun-mouse-once () "Converts to emacstool and sun-mouse-handler on first mouse hit." (interactive) (emacstool-init) (sun-mouse-handler)) ; Now, execute this mouse blip. (define-key ctl-x-map "\C-@" 'sun-mouse-once) ;;; sun.el ends here