emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emulation/viper-init.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/emulation/viper-init.el
Date: Fri, 10 Jun 2005 06:44:35 -0400

Index: emacs/lisp/emulation/viper-init.el
diff -c emacs/lisp/emulation/viper-init.el:1.28 
emacs/lisp/emulation/viper-init.el:1.29
*** emacs/lisp/emulation/viper-init.el:1.28     Sat Feb 19 19:32:47 2005
--- emacs/lisp/emulation/viper-init.el  Fri Jun 10 10:44:34 2005
***************
*** 1,6 ****
  ;;; viper-init.el --- some common definitions for Viper
  
! ;; Copyright (C) 1997, 98, 99, 2000, 01, 02 Free Software Foundation, Inc.
  
  ;; Author: Michael Kifer <address@hidden>
  
--- 1,6 ----
  ;;; viper-init.el --- some common definitions for Viper
  
! ;; Copyright (C) 1997, 98, 99, 2000, 01, 02, 05 Free Software Foundation, Inc.
  
  ;; Author: Michael Kifer <address@hidden>
  
***************
*** 850,923 ****
    :group 'viper)
  
  
! (defface viper-search-face
    '((((class color)) (:foreground "Black" :background "khaki"))
      (t (:underline t :stipple "gray3")))
    "*Face used to flash out the search pattern."
    :group 'viper-highlighting)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-search-face 'viper-search-face
    "Face used to flash out the search pattern.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-search-face'
  this variable represents.")
! (viper-hide-face 'viper-search-face)
  
  
! (defface viper-replace-overlay-face
    '((((class color)) (:foreground "Black" :background "darkseagreen2"))
      (t (:underline t :stipple "gray3")))
    "*Face for highlighting replace regions on a window display."
    :group 'viper-highlighting)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-replace-overlay-face 'viper-replace-overlay-face
    "Face for highlighting replace regions on a window display.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-replace-overlay-face'
  this variable represents.")
! (viper-hide-face 'viper-replace-overlay-face)
  
  
! (defface viper-minibuffer-emacs-face
    '((((class color)) (:foreground "Black" :background "darkseagreen2"))
      (t (:weight bold)))
    "Face used in the Minibuffer when it is in Emacs state."
    :group 'viper-highlighting)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-minibuffer-emacs-face 'viper-minibuffer-emacs-face
    "Face used in the Minibuffer when it is in Emacs state.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-minibuffer-emacs-face'
  this variable represents.")
! (viper-hide-face 'viper-minibuffer-emacs-face)
  
  
! (defface viper-minibuffer-insert-face
    '((((class color)) (:foreground "Black" :background "pink"))
      (t (:slant italic)))
    "Face used in the Minibuffer when it is in Insert state."
    :group 'viper-highlighting)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-minibuffer-insert-face 'viper-minibuffer-insert-face
    "Face used in the Minibuffer when it is in Insert state.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-minibuffer-insert-face'
  this variable represents.")
! (viper-hide-face 'viper-minibuffer-insert-face)
  
  
! (defface viper-minibuffer-vi-face
    '((((class color)) (:foreground "DarkGreen" :background "grey"))
      (t (:inverse-video t)))
    "Face used in the Minibuffer when it is in Vi state."
    :group 'viper-highlighting)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-minibuffer-vi-face 'viper-minibuffer-vi-face
    "Face used in the Minibuffer when it is in Vi state.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-minibuffer-vi-face'
  this variable represents.")
! (viper-hide-face 'viper-minibuffer-vi-face)
  
  ;; the current face to be used in the minibuffer
  (viper-deflocalvar
--- 850,933 ----
    :group 'viper)
  
  
! (defface viper-search
    '((((class color)) (:foreground "Black" :background "khaki"))
      (t (:underline t :stipple "gray3")))
    "*Face used to flash out the search pattern."
    :group 'viper-highlighting)
+ ;; backward-compatibility alias
+ (put 'viper-search-face 'face-alias 'viper-search)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-search-face 'viper-search
    "Face used to flash out the search pattern.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-search-face'
  this variable represents.")
! (viper-hide-face 'viper-search)
  
  
! (defface viper-replace-overlay
    '((((class color)) (:foreground "Black" :background "darkseagreen2"))
      (t (:underline t :stipple "gray3")))
    "*Face for highlighting replace regions on a window display."
    :group 'viper-highlighting)
+ ;; backward-compatibility alias
+ (put 'viper-replace-overlay-face 'face-alias 'viper-replace-overlay)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-replace-overlay-face 'viper-replace-overlay
    "Face for highlighting replace regions on a window display.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-replace-overlay-face'
  this variable represents.")
! (viper-hide-face 'viper-replace-overlay)
  
  
! (defface viper-minibuffer-emacs
    '((((class color)) (:foreground "Black" :background "darkseagreen2"))
      (t (:weight bold)))
    "Face used in the Minibuffer when it is in Emacs state."
    :group 'viper-highlighting)
+ ;; backward-compatibility alias
+ (put 'viper-minibuffer-emacs-face 'face-alias 'viper-minibuffer-emacs)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-minibuffer-emacs-face 'viper-minibuffer-emacs
    "Face used in the Minibuffer when it is in Emacs state.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-minibuffer-emacs-face'
  this variable represents.")
! (viper-hide-face 'viper-minibuffer-emacs)
  
  
! (defface viper-minibuffer-insert
    '((((class color)) (:foreground "Black" :background "pink"))
      (t (:slant italic)))
    "Face used in the Minibuffer when it is in Insert state."
    :group 'viper-highlighting)
+ ;; backward-compatibility alias
+ (put 'viper-minibuffer-insert-face 'face-alias 'viper-minibuffer-insert)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-minibuffer-insert-face 'viper-minibuffer-insert
    "Face used in the Minibuffer when it is in Insert state.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-minibuffer-insert-face'
  this variable represents.")
! (viper-hide-face 'viper-minibuffer-insert)
  
  
! (defface viper-minibuffer-vi
    '((((class color)) (:foreground "DarkGreen" :background "grey"))
      (t (:inverse-video t)))
    "Face used in the Minibuffer when it is in Vi state."
    :group 'viper-highlighting)
+ ;; backward-compatibility alias
+ (put 'viper-minibuffer-vi-face 'face-alias 'viper-minibuffer-vi)
  ;; An internal variable.  Viper takes the face from here.
! (defvar viper-minibuffer-vi-face 'viper-minibuffer-vi
    "Face used in the Minibuffer when it is in Vi state.
  DO NOT CHANGE this variable.  Instead, use the customization widget
  to customize the actual face object `viper-minibuffer-vi-face'
  this variable represents.")
! (viper-hide-face 'viper-minibuffer-vi)
  
  ;; the current face to be used in the minibuffer
  (viper-deflocalvar




reply via email to

[Prev in Thread] Current Thread [Next in Thread]