yatex

diff yatexm-o.el @ 60:9e08ed569d80

yahtml: change keystroke of calling browser to [prefix] t p yahtml: don't count <a>tag contents as column in <pre> yahtml: support [prefix] c against src="", align="". and many many more
author yuuji
date Fri, 24 Jan 1997 09:04:06 +0000
parents cb9afa9c1213
children 44e3a5e1e883
line diff
     1.1 --- a/yatexm-o.el	Fri May 06 21:14:11 1994 +0000
     1.2 +++ b/yatexm-o.el	Fri Jan 24 09:04:06 1997 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  ;;; -*- Emacs-Lisp -*-
     1.5  ;;; Sample startup file to invoke yatex-mode with outline-minor mode.
     1.6  ;;; (c )1993 by HIROSE Yuuji [yuuji@ae.keio.ac.jp]
     1.7 -;;; Last modified Wed May  4 19:44:53 1994 on 98fa
     1.8 +;;; Last modified Mon Jan 29 21:38:26 1996 on pajero
     1.9  
    1.10  ;;;
    1.11  ;; outline-minor-mode(使用しない場合は不要です)
    1.12 @@ -12,10 +12,11 @@
    1.13  (setq  default-outline-regexp "[*\^l]+")
    1.14  (make-variable-buffer-local 'outline-level-function)
    1.15  (setq-default outline-level-function 'outline-level-default)
    1.16 -(defvar LaTeX-outline-regexp
    1.17 +(setq LaTeX-outline-regexp
    1.18    (concat "[ \t]*" (regexp-quote "\\")
    1.19  	  "\\(appendix\\|documentstyle\\|part\\|chapter\\|section\\|"
    1.20 -	  "subsection\\|subsubsection\\|paragraph\\|subparagraph\\)"))
    1.21 +	  "subsection\\|subsubsection\\|paragraph\\|subparagraph\\)"
    1.22 +          "\\*?[ \t]*[[{]"))
    1.23  
    1.24  ;;;
    1.25  ;; yatex-mode
    1.26 @@ -32,6 +33,9 @@
    1.27    '(lambda ()
    1.28       (setq-default outline-prefix-char (concat YaTeX-prefix "\C-o"));;@
    1.29       (require 'min-out)						    ;;@
    1.30 -     (define-key outline-minor-keymap "\C-?" 'hide-subtree)	    ;;@
    1.31 +     ;;auctex 付属の min-out.el の場合これ↓
    1.32 +     ;(define-key outline-minor-keymap "\C-?" 'hide-subtree)	    ;;@
    1.33 +     ;;Emacs 付属の outline.el の場合これ↓
    1.34 +     (define-key outline-mode-prefix-map "\C-?" 'hide-subtree)
    1.35       (YaTeX-define-begend-key "ba" "abstract")
    1.36       ))