annotate yatex.el @ 58:3a7c0c2bf16d

Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
author yuuji
date Thu, 01 Feb 1996 18:55:47 +0000
parents 18f4939986e6
children 48ac97a6b6ce
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1 ;;; -*- Emacs-Lisp -*-
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
2 ;;; Yet Another tex-mode for emacs.
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
3 ;;; yatex.el rev. 1.61
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
4 ;;; (c )1991-1995 by HIROSE Yuuji.[yuuji@ae.keio.ac.jp]
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
5 ;;; Last modified Fri Feb 2 03:47:10 1996 on supra
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
6 ;;; $Id$
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
7
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
8 ;; This program is free software; you can redistribute it and/or modify
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
9 ;; it under the terms of the GNU General Public License as published by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
10 ;; the Free Software Foundation; either version 2, or (at your option)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
11 ;; any later version.
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
12
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
13 ;; This program is distributed in the hope that it will be useful,
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
16 ;; GNU General Public License for more details.
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
17
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
18 ;; You should have received a copy of the GNU General Public License
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
19 ;; along with this program; see the file COPYING. If not, write to
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
20 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
21
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
22 (require 'comment)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
23 (defconst YaTeX-revision-number "1.61"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
24 "Revision number of running yatex.el"
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
25 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
26
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
27 ;---------- Local variables ----------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
28 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
29 ;; Initialize local variable for yatex-mode.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
30 ;; Preserving user preferred definitions.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
31 ;; ** Check all of these defvar-ed values **
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
32 ;; ** and setq other values more suitable **
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
33 ;; ** for your site, if needed. **
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
34 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
35 (defvar YaTeX-prefix "\C-c"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
36 "*Prefix key to trigger YaTeX functions.
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
37 You can select favorite prefix key by setq in your ~/.emacs."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
38 )
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
39 (defvar YaTeX-environment-indent 1
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
40 "*Indentation depth at column width in LaTeX environments."
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
41 )
1
912f6e258cba Support %#! usage to specify latex command.
yuuji
parents: 0
diff changeset
42 (defvar YaTeX-fill-prefix ""
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
43 "*fill-prefix used for auto-fill-mode.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
44 The default value is null string."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
45 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
46 (defvar YaTeX-fill-column 72
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
47 "*fill-column used for auto-fill-mode."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
48 )
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
49 (defvar YaTeX-comment-prefix "%"
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
50 "TeX comment prefix."
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
51 )
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
52 (defvar YaTeX-current-position-register ?3
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
53 "*Position register to keep where the last completion was done.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
54 All of YaTeX completing input store the current position into
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
55 the register YaTeX-current-position-register. So every time you
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
56 make a trip to any other part of text other than you are writing, you can
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
57 return to the editing paragraph by calling register-to-point with argument
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
58 YaTeX-current-position-register."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
59 )
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
60 (defvar YaTeX-dos (eq system-type 'ms-dos))
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
61 (defvar YaTeX-emacs-19 (string= "19" (substring emacs-version 0 2)))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
62 (defvar YaTeX-user-completion-table
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
63 (if YaTeX-dos "~/_yatexrc" "~/.yatexrc")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
64 "*Default filename in which user completion table is saved."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
65 )
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
66 ;;(defvar YaTeX-tmp-dic-unit 'main-file
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
67 ;; "*Default switching unit of temporary dictionary.
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
68 ;;There are two switching unit:
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
69 ;;'main-file : switch tmp-dic according to main-file directory.
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
70 ;;'directory : switch tmp-dic dir by dir."
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
71 ;;)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
72 (defvar YaTeX-japan (or (boundp 'NEMACS) (boundp 'MULE))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
73 "Whether yatex mode is running on Japanese environment or not."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
74 )
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
75 (defvar tex-command (if YaTeX-japan "jlatex" "latex")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
76 "*Default command for typesetting LaTeX text."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
77 )
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
78 (defvar bibtex-command (if YaTeX-japan "jbibtex" "bibtex")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
79 "*Default command of BibTeX."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
80 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
81 (defvar dvi2-command ;previewer command for your site
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
82 (if YaTeX-dos "dviout -wait=0"
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
83 "xdvi -geo +0+0 -s 4")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
84 "*Default previewer command including its option.
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
85 This default value is for X window system."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
86 )
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
87 (defvar makeindex-command (if YaTeX-dos "makeind" "makeindex")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
88 "*Default makeindex command."
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
89 )
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
90 (defvar dviprint-command-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
91 (if YaTeX-dos "dviprt %s %f%t"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
92 "dvi2ps %f %t %s | lpr")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
93 "*Command line string to print out current file.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
94 Format string %s will be replaced by the filename. Do not forget to
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
95 specify the `from usage' and `to usage' with their option by format string
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
96 %f and %t.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
97 See also documentation of dviprint-from-format and dviprint-to-format."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
98 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
99 (defvar dviprint-from-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
100 (if YaTeX-dos "%b-" "-f %b")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
101 "*`From' page format of dvi filter. %b will turn to beginning page number."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
102 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
103 (defvar dviprint-to-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
104 (if YaTeX-dos "%e" "-t %e")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
105 "*`To' page format of dvi filter. %e will turn to end page number."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
106 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
107 (defvar YaTeX-default-document-style
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
108 (concat (if YaTeX-japan "j") "article")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
109 "*Default LaTeX Documentstyle for YaTeX-typeset-region."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
110 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
111 (defvar YaTeX-need-nonstop nil
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
112 "*T for adding `\\nonstopmode{}' to text before invoking latex command."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
113 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
114 (defvar latex-warning-regexp "line.* [0-9]*"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
115 "*Regular expression of line number of warning message by latex command."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
116 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
117 (defvar latex-error-regexp "l\\.[1-9][0-9]*"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
118 "*Regular expression of line number of latex error.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
119 Perhaps your latex command stops at this error message with line number of
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
120 LaTeX source text."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
121 )
1
912f6e258cba Support %#! usage to specify latex command.
yuuji
parents: 0
diff changeset
122 (defvar latex-dos-emergency-message
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
123 "Emergency stop" ;<- for Micro tex, ASCII-pTeX 1.6
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
124 "Message pattern of emergency stop of typesetting.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
125 Because Demacs (GNU Emacs on DOS) cannot have concurrent process, the
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
126 latex command which is stopping on a LaTeX error, is terminated by Demacs.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
127 Many latex command on DOS display some messages when it is terminated by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
128 other process, user or OS. Define to this variable a message string of your
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
129 latex command on DOS shown at abnormal termination.
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
130 Remember Demacs's call-process function is not oriented for interactive
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
131 process."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
132 )
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
133 (defvar latex-message-kanji-code 2
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
134 "*Kanji coding system latex command types out.
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
135 1 = Shift JIS, 2 = JIS, 3 = EUC."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
136 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
137 (defvar YaTeX-inhibit-prefix-letter nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
138 "*T for changing key definitions from [prefix] Letter to [prefix] C-Letter."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
139 )
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
140 (defvar NTT-jTeX nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
141 "*Use NTT-jTeX for latex command."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
142 )
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
143 (defvar YaTeX-item-regexp (concat (regexp-quote "\\") "\\(sub\\)*item")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
144 "*Regular expression of item command."
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
145 )
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
146 (defvar YaTeX-nervous t
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
147 "*If you are nervous about maintenance of yatexrc, set this value to T.
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
148 And you will have the local dictionary."
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
149 )
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
150 (defvar YaTeX-sectioning-regexp
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
151 "\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\*?\\)\\b"
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
152 "*LaTeX sectioning commands regexp."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
153 )
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
154 (defvar YaTeX-paragraph-start
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
155 (concat "^[ \t]*%\\|^[ \t]*$\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
156 YaTeX-sectioning-regexp ;sectioning commands
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
157 "\\|[A-z]*item\\|begin{\\|end{" ;special declaration
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
158 "\\)")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
159 "*Paragraph starting regexp of common LaTeX source. Use this value
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
160 for YaTeX-uncomment-paragraph."
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
161 )
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
162 (defvar YaTeX-paragraph-separate
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
163 (concat "^[ \t]*%\\|^[ \t]*$\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
164 YaTeX-sectioning-regexp ;sectioning commands
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
165 "\\|begin{\\|end{" ;special declaration
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
166 "\\)")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
167 "*Paragraph delimiter regexp of common LaTeX source. Use this value
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
168 for YaTeX-uncomment-paragraph."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
169 )
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
170 (defvar YaTeX-verbatim-environments
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
171 '("verbatim" "verbatim*")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
172 "*Assume these environments of this variable disable LaTeX commands.")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
173 (defvar YaTeX-verb-regexp "verb\\*?\\|path"
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
174 "*Regexp of verb family. Do not contain preceding \\\\ nor \\(\\).")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
175 (defvar YaTeX-fill-inhibit-environments
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
176 (append '("tabular" "tabular*" "array" "picture" "eqnarray" "eqnarray*"
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
177 "equation" "math" "displaymath")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
178 YaTeX-verbatim-environments)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
179 "*In these environments, YaTeX inhibits fill-paragraph from formatting.
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
180 Define those environments as a form of list."
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
181 )
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
182 (defvar YaTeX-itemizing-env-regexp
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
183 "itemize\\|enumerate\\|description\\|list"
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
184 "*Regexp of itemizing environments")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
185 (defvar YaTeX-equation-env-regexp
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
186 "array\\*?\\|equation\\*?"
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
187 "*Regexp of environments for equations")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
188 (defvar YaTeX-array-env-regexp
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
189 (concat
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
190 "array\\*?\\|eqnarray\\*?\\|tabbing\\|tabular\\*?\\|" ;LaTeX
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
191 "align\\*?\\|split\\*?\\|aligned\\*?\\|alignat\\*?\\|" ;AMS-LaTeX
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
192 "xalignat\\*?\\|xxalignat\\*?") ;AMS-LaTeX
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
193 "*Regexp of environments where `&' becomes field delimiter.")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
194 (defvar YaTeX-uncomment-once t
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
195 "*T for removing all continuous commenting character(%).
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
196 Nil for removing only one commenting character at the beginning-of-line."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
197 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
198 (defvar YaTeX-default-pop-window-height 10
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
199 "Default typesetting buffer height.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
200 If integer, sets the window-height of typesetting buffer.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
201 If string, sets the percentage of it.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
202 If nil, use default pop-to-buffer."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
203 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
204 (defvar YaTeX-close-paren-always t
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
205 "Close parenthesis always when YaTeX-modify-mode is nil."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
206 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
207 (defvar YaTeX-no-begend-shortcut nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
208 "*T for disabling shortcut of begin-type completion, [prefix] b d, etc."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
209 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
210 (defvar YaTeX-greek-by-maketitle-completion nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
211 "*T for greek letters completion by maketitle-type completion."
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
212 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
213 (defvar YaTeX-auto-math-mode t
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
214 "*T for changing YaTeX-math mode automatically.")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
215 (defvar YaTeX-use-AMS-LaTeX nil
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
216 "*T for using AMS-LaTeX"
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
217 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
218 (defvar yatex-mode-hook nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
219 "*List of functions to be called at the end of yatex-mode initializations."
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
220 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
221 ;;-- Math mode values --
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
222
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
223 (defvar YaTeX-math-key-list-default
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
224 '((";" . YaTeX-math-sign-alist)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
225 (":" . YaTeX-greek-key-alist))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
226 "Default key sequence to invoke math-mode's image completion."
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
227 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
228 (defvar YaTeX-math-key-list-private nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
229 "*User defined alist, math-mode-prefix vs completion alist."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
230 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
231 (defvar YaTeX-math-key-list
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
232 (append YaTeX-math-key-list-private YaTeX-math-key-list-default)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
233 "Key sequence to invoke math-mode's image completion."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
234 )
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
235 (defvar YaTeX-create-file-prefix-g nil
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
236 "*Non-nil creates new file when [prefix] g on \\include{foo}."
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
237 )
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
238 (defvar YaTeX-skip-default-reader nil
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
239 "Non-nil skips default argument reader of section-type completion."
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
240 )
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
241 (defvar YaTeX-simple-messages nil
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
242 "Non-nil makes minibuffer messages simpler."
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
243 )
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
244 (defvar YaTeX-addin-prefix "YaTeX:")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
245 ;------------ Completion table ------------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
246 ; Set tex-section-like command possible completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
247 (defvar section-table
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
248 '(("part") ("chapter") ("section") ("subsection")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
249 ("subsubsection") ("paragraph") ("subparagraph")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
250 ("author") ("thanks") ("documentstyle") ("pagestyle")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
251 ("title") ("underline") ("label") ("makebox")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
252 ("footnote") ("footnotetext")
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
253 ("hspace*") ("vspace*") ("bibliography") ("bibitem") ("cite")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
254 ("input") ("include") ("includeonly") ("mbox") ("hbox") ("caption")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
255 ("newlength") ("setlength" 2) ("addtolength" 2) ("settowidth" 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
256 ("setcounter" 2) ("addtocounter" 2) ("stepcounter" 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
257 ("newcommand" 2) ("renewcommand" 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
258 ("setcounter" 2) ("newenvironment" 3) ("newtheorem" 2)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
259 ("cline") ("framebox") ("savebox") ("date") ("put") ("ref")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
260 ("frac" 2) ("multicolumn" 3) ("shortstack")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
261 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
262 "Default completion table for section-type completion."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
263 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
264 (defvar user-section-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
265 (defvar tmp-section-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
266
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
267 ; Set tex-environment possible completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
268 (defvar env-table
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
269 '(("quote") ("quotation") ("center") ("verse") ("document")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
270 ("verbatim") ("itemize") ("enumerate") ("description")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
271 ("list") ("tabular") ("tabular*") ("table") ("tabbing") ("titlepage")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
272 ("sloppypar") ("quotation") ("picture") ("displaymath")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
273 ("eqnarray") ("figure") ("equation") ("abstract") ("array")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
274 ("thebibliography") ("theindex") ("flushleft") ("flushright")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
275 ("minipage")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
276 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
277 "Default completion table for begin-type completion."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
278 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
279 (defvar user-env-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
280 (defvar tmp-env-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
281
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
282 ; Set {\Large }-like completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
283 (defvar fontsize-table
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
284 '(("rm") ("em") ("bf") ("boldmath") ("it") ("sl") ("sf") ("sc") ("tt")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
285 ("dg") ("dm")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
286 ("tiny") ("scriptsize") ("footnotesize") ("small")("normalsize")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
287 ("large") ("Large") ("LARGE") ("huge") ("Huge")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
288 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
289 "Default completion table for large-type completion."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
290 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
291 (defvar user-fontsize-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
292 (defvar tmp-fontsize-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
293
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
294 (defvar singlecmd-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
295 (append
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
296 '(("maketitle") ("sloppy") ("protect")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
297 ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
298 ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
299 ("pagebreak") ("newpage") ("clearpage") ("cleardoublepage")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
300 ("footnotemark") ("verb") ("verb*")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
301 ("linebreak") ("pagebreak")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
302 ("left") ("right")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
303 )
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
304 (if YaTeX-greek-by-maketitle-completion
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
305 '(("alpha") ("beta") ("gamma") ("delta") ("epsilon")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
306 ("varepsilon") ("zeta") ("eta") ("theta")("vartheta")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
307 ("iota") ("kappa") ("lambda") ("mu") ("nu") ("xi") ("pi")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
308 ("varpi") ("rho") ("varrho") ("sigma") ("varsigma") ("tau")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
309 ("upsilon") ("phi") ("varphi") ("chi") ("psi") ("omega")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
310 ("Gamma") ("Delta") ("Theta") ("Lambda")("Xi") ("Pi")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
311 ("Sigma") ("Upsilon") ("Phi") ("Psi") ("Omega"))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
312 "Default completion table for maketitle-type completion."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
313 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
314 (defvar user-singlecmd-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
315 (defvar tmp-singlecmd-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
316
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
317 ;---------- Key mode map ----------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
318 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
319 ;; Create new key map: YaTeX-mode-map
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
320 ;; Do not change this section.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
321 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
322 (defvar YaTeX-mode-map nil
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
323 "Keymap used in YaTeX mode"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
324 )
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
325 (defvar YaTeX-typesetting-mode-map nil
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
326 "Keymap used in YaTeX typesetting buffer"
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
327 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
328 (defvar YaTeX-prefix-map nil
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
329 "Keymap used when YaTeX-prefix key pushed"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
330 )
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
331 (defvar YaTeX-user-extensional-map (make-sparse-keymap)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
332 "*Keymap used for the user's customization")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
333 (defvar YaTeX-current-completion-type nil
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
334 "Has current completion type. This may be used in YaTeX addin functions."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
335 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
336 (defvar YaTeX-modify-mode nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
337 "*Current editing mode.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
338 When non-nil, each opening parentheses only opens,
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
339 nil enters both open/close parentheses when opening parentheses key pressed."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
340 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
341 (defvar YaTeX-math-mode nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
342 "Holds whether current mode is math-mode."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
343 )
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
344 ;---------- Define default key bindings on YaTeX mode map ----------
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
345 (defun YaTeX-define-key (key binding &optional map)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
346 "Define key on YaTeX-prefix-map."
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
347 (if YaTeX-inhibit-prefix-letter
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
348 (let ((c (aref key 0)))
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
349 (cond
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
350 ((and (>= c ?a) (<= c ?z)) (aset key 0 (1+ (- c ?a))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
351 ((and (>= c ?A) (<= c ?Z) (numberp YaTeX-inhibit-prefix-letter))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
352 (aset key 0 (1+ (- c ?A))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
353 (t nil))))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
354 (define-key (or map YaTeX-prefix-map) key binding)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
355 )
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
356 (defun YaTeX-define-begend-key-normal (key env &optional map)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
357 "Define short cut YaTeX-make-begin-end key."
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
358 (YaTeX-define-key
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
359 key
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
360 (list 'lambda '(arg) '(interactive "P")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
361 (list 'YaTeX-insert-begin-end env 'arg))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
362 map)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
363 )
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
364 (defun YaTeX-define-begend-region-key (key env &optional map)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
365 "Define short cut YaTeX-make-begin-end-region key."
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
366 (YaTeX-define-key key (list 'lambda nil '(interactive)
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
367 (list 'YaTeX-insert-begin-end env t)) map)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
368 )
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
369 (defun YaTeX-define-begend-key (key env &optional map)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
370 "Define short cut key for begin type completion both for normal
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
371 and region mode. To customize YaTeX, user should use this function."
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
372 (YaTeX-define-begend-key-normal key env map)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
373 (if YaTeX-inhibit-prefix-letter nil
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
374 (YaTeX-define-begend-region-key
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
375 (concat (upcase (substring key 0 1)) (substring key 1)) env))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
376 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
377 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
378 ;; Define key table
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
379 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
380 (if YaTeX-mode-map
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
381 nil
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
382 (setq YaTeX-mode-map (make-sparse-keymap))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
383 (setq YaTeX-prefix-map (make-sparse-keymap))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
384 (define-key YaTeX-mode-map "\"" 'YaTeX-insert-quote)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
385 (define-key YaTeX-mode-map "{" 'YaTeX-insert-braces)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
386 (define-key YaTeX-mode-map "(" 'YaTeX-insert-parens)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
387 (define-key YaTeX-mode-map "$" 'YaTeX-insert-dollar)
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
388 (define-key YaTeX-mode-map "&" 'YaTeX-insert-amper)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
389 (define-key YaTeX-mode-map "[" 'YaTeX-insert-brackets)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
390 (define-key YaTeX-mode-map YaTeX-prefix YaTeX-prefix-map)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
391 (define-key YaTeX-mode-map "\M-\C-@" 'YaTeX-mark-environment)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
392 (define-key YaTeX-mode-map "\M-\C-a" 'YaTeX-beginning-of-environment)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
393 (define-key YaTeX-mode-map "\M-\C-e" 'YaTeX-end-of-environment)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
394 (define-key YaTeX-mode-map "\M-\C-m" 'YaTeX-intelligent-newline)
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
395 (define-key YaTeX-mode-map "\C-i" 'YaTeX-indent-line)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
396 (YaTeX-define-key "%" 'YaTeX-%-menu)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
397 (YaTeX-define-key "t" 'YaTeX-typeset-menu)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
398 (YaTeX-define-key "w" 'YaTeX-switch-mode-menu)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
399 (YaTeX-define-key "'" 'YaTeX-prev-error)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
400 (YaTeX-define-key "^" 'YaTeX-visit-main)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
401 (YaTeX-define-key "4^" 'YaTeX-visit-main-other-window)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
402 (YaTeX-define-key "4g" 'YaTeX-goto-corresponding-*-other-window)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
403 (YaTeX-define-key "44" 'YaTeX-switch-to-window)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
404 (and YaTeX-emacs-19 window-system
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
405 (progn
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
406 (YaTeX-define-key "5^" 'YaTeX-visit-main-other-frame)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
407 (YaTeX-define-key "5g" 'YaTeX-goto-corresponding-*-other-frame)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
408 (YaTeX-define-key "55" 'YaTeX-switch-to-window)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
409 (YaTeX-define-key " " 'YaTeX-do-completion)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
410 (YaTeX-define-key "v" 'YaTeX-version)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
411
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
412 (YaTeX-define-key "}" 'YaTeX-insert-braces-region)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
413 (YaTeX-define-key "]" 'YaTeX-insert-brackets-region)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
414 (YaTeX-define-key ")" 'YaTeX-insert-parens-region)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
415 (YaTeX-define-key "$" 'YaTeX-insert-dollars-region)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
416 (YaTeX-define-key "i" 'YaTeX-fill-item)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
417 (YaTeX-define-key
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
418 "\\" '(lambda () (interactive) (insert "$\\backslash$")))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
419 (if YaTeX-no-begend-shortcut
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
420 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
421 (YaTeX-define-key "B" 'YaTeX-make-begin-end-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
422 (YaTeX-define-key "b" 'YaTeX-make-begin-end))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
423 (YaTeX-define-begend-key "bc" "center")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
424 (YaTeX-define-begend-key "bd" "document")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
425 (YaTeX-define-begend-key "bD" "description")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
426 (YaTeX-define-begend-key "be" "enumerate")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
427 (YaTeX-define-begend-key "bE" "equation")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
428 (YaTeX-define-begend-key "bi" "itemize")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
429 (YaTeX-define-begend-key "bl" "flushleft")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
430 (YaTeX-define-begend-key "bm" "minipage")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
431 (YaTeX-define-begend-key "bt" "tabbing")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
432 (YaTeX-define-begend-key "bT" "tabular")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
433 (YaTeX-define-begend-key "b\^t" "table")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
434 (YaTeX-define-begend-key "bp" "picture")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
435 (YaTeX-define-begend-key "bq" "quote")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
436 (YaTeX-define-begend-key "bQ" "quotation")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
437 (YaTeX-define-begend-key "br" "flushright")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
438 (YaTeX-define-begend-key "bv" "verbatim")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
439 (YaTeX-define-begend-key "bV" "verse")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
440 (YaTeX-define-key "B " 'YaTeX-make-begin-end-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
441 (YaTeX-define-key "b " 'YaTeX-make-begin-end))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
442 (YaTeX-define-key "e" 'YaTeX-end-environment)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
443 (YaTeX-define-key "S" 'YaTeX-make-section-region)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
444 (YaTeX-define-key "s" 'YaTeX-make-section)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
445 (YaTeX-define-key "L" 'YaTeX-make-fontsize-region)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
446 (YaTeX-define-key "l" 'YaTeX-make-fontsize)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
447 (YaTeX-define-key "m" 'YaTeX-make-singlecmd)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
448 (YaTeX-define-key "." 'YaTeX-comment-paragraph)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
449 (YaTeX-define-key "," 'YaTeX-uncomment-paragraph)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
450 (YaTeX-define-key ">" 'YaTeX-comment-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
451 (YaTeX-define-key "<" 'YaTeX-uncomment-region)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
452 (YaTeX-define-key "g" 'YaTeX-goto-corresponding-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
453 (YaTeX-define-key "k" 'YaTeX-kill-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
454 (YaTeX-define-key "c" 'YaTeX-change-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
455 (YaTeX-define-key "a" 'YaTeX-make-accent)
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
456 (YaTeX-define-key "?" 'YaTeX-help)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
457 (YaTeX-define-key "/" 'YaTeX-apropos)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
458 (YaTeX-define-key "&" 'YaTeX-what-column)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
459 (YaTeX-define-key "d" 'YaTeX-display-hierarchy)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
460 (YaTeX-define-key "x" YaTeX-user-extensional-map)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
461 (YaTeX-define-key "n"
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
462 '(lambda () (interactive) (insert "\\\\")))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
463 (if YaTeX-dos
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
464 (define-key YaTeX-prefix-map "\C-r"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
465 '(lambda () (interactive)
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
466 (set-screen-height YaTeX-saved-screen-height) (recenter))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
467 (mapcar
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
468 (function
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
469 (lambda (key)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
470 (define-key YaTeX-mode-map (car key) 'YaTeX-math-insert-sequence)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
471 YaTeX-math-key-list)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
472 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
473
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
474 (if YaTeX-typesetting-mode-map nil
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
475 (setq YaTeX-typesetting-mode-map (make-keymap))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
476 ;(suppress-keymap YaTeX-typesetting-mode-map t)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
477 (define-key YaTeX-typesetting-mode-map " " 'YaTeX-jump-error-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
478 (define-key YaTeX-typesetting-mode-map "\C-m" 'YaTeX-send-string)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
479 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
480
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
481 (defvar YaTeX-section-completion-map nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
482 "*Key map used at YaTeX completion in the minibuffer.")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
483 (if YaTeX-section-completion-map nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
484 (setq YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
485 (copy-keymap (or (and (boundp 'gmhist-completion-map)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
486 gmhist-completion-map)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
487 minibuffer-local-completion-map)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
488 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
489 " " 'YaTeX-minibuffer-complete)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
490 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
491 "\C-i" 'YaTeX-minibuffer-complete)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
492 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
493 "\C-v" 'YaTeX-read-section-with-overview))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
494
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
495 (defvar YaTeX-recursive-map nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
496 "*Key map used at YaTeX reading arguments in the minibuffer.")
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
497 (if YaTeX-recursive-map nil
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
498 (setq YaTeX-recursive-map (copy-keymap global-map))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
499 (define-key YaTeX-recursive-map YaTeX-prefix YaTeX-prefix-map))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
500
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
501 ;; (define-key YaTeX-recursive-map
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
502 ;; (concat YaTeX-prefix (if YaTeX-inhibit-prefix-letter "\C-s" "s"))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
503 ;; 'YaTeX-make-section)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
504 ;; (define-key map
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
505 ;; (concat YaTeX-prefix (if YaTeX-inhibit-prefix-letter "\C-m" "m"))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
506 ;; 'YaTeX-make-singlecmd)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
507 ;; (define-key map
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
508 ;; (concat YaTeX-prefix (if YaTeX-inhibit-prefix-letter "\C-l" "l"))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
509 ;; 'YaTeX-make-fontsize)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
510
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
511
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
512 ;---------- Define other variable ----------
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
513 (defvar env-name "document" "*Initial tex-environment completion")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
514 (defvar section-name "documentstyle" "*Initial tex-section completion")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
515 (defvar fontsize-name "large" "*Initial fontsize completion")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
516 (defvar single-command "maketitle" "*Initial LaTeX single command")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
517 (defvar YaTeX-user-table-is-read nil
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
518 "Flag that means whether user completion table has been read or not."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
519 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
520 (defvar YaTeX-kanji-code-alist nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
521 "Kanji-code expression translation table."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
522 )
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
523 (if (boundp 'MULE)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
524 (setq YaTeX-kanji-code-alist
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
525 (list (cons
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
526 1
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
527 (if YaTeX-dos (if (boundp '*sjis-dos*) *sjis-dos* *sjis*dos)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
528 *sjis*))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
529 '(2 . *junet*) '(3 . *euc-japan*))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
530 ))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
531 (defvar YaTeX-kanji-code (if YaTeX-dos 1 2)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
532 "*File kanji code used by Japanese TeX."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
533 )
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
534 (defvar YaTeX-coding-system nil "File coding system used by Japanese TeX.")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
535 (defvar YaTeX-latex-message-code "Process coding system for LaTeX.")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
536 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
537 ((boundp 'MULE)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
538 (setq YaTeX-coding-system
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
539 (symbol-value (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
540 (if (not YaTeX-dos)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
541 (setq YaTeX-latex-message-code *autoconv*)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
542 ((boundp 'NEMACS)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
543 (setq YaTeX-latex-message-code latex-message-kanji-code))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
544 )
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
545 (defvar YaTeX-parent-file nil
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
546 "*Main LaTeX source file name used when %#! expression doesn't exist.")
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
547 (make-variable-buffer-local 'YaTeX-parent-file)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
548
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
549 ;---------- Provide YaTeX-mode ----------
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
550 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
551 ;; Major mode definition
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
552 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
553 (defun yatex-mode ()
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
554 " Yet Another LaTeX mode: Major mode for editing input files of LaTeX.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
555 -You can invoke processes concerning LaTeX typesetting by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
556 \\[YaTeX-typeset-menu]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
557 -Complete LaTeX environment form of `\\begin{env} ... \\end{env}' by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
558 \\[YaTeX-make-begin-end]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
559 -Enclose region into some environment by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
560 \\[universal-argument] \\[YaTeX-make-begin-end]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
561 -Complete LaTeX command which takes argument like `\\section{}' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
562 \\[YaTeX-make-section]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
563 -Put LaTeX command which takes no arguments like `\\maketitle' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
564 \\[YaTeX-make-singlecmd]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
565 -Complete font or character size descriptor like `{\\large }' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
566 \\[YaTeX-make-fontsize]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
567 -Enclose region into those descriptors above by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
568 \\[universal-argument] \\[YaTeX-make-fontsize]
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
569 -Enter European accent notations by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
570 \\[YaTeX-make-accent]
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
571 -Toggle various modes of YaTeX by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
572 \\[YaTeX-switch-mode-menu]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
573 -Change environt name (on the begin/end line) by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
574 \\[YaTeX-change-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
575 -Kill LaTeX command/environment sequences by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
576 \\[YaTeX-kill-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
577 -Kill LaTeX command/environment with its contents
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
578 \\[universal-argument] \\[YaTeX-kill-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
579 -Go to corresponding object (begin/end, file, labels) by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
580 \\[YaTeX-goto-corresponding-*] or
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
581 \\[YaTeX-goto-corresponding-*-other-window] (in other window)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
582 \\[YaTeX-goto-corresponding-*-other-frame] (in other frame)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
583 -Go to main LaTeX source text by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
584 \\[YaTeX-visit-main] or
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
585 \\[YaTeX-visit-main-other-window] (in other window)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
586 \\[YaTeX-visit-main-other-frame] (in other frame)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
587 -Comment out or uncomment region by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
588 \\[YaTeX-comment-region] or \\[YaTeX-uncomment-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
589 -Comment out or uncomment paragraph by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
590 \\[YaTeX-comment-paragraph] or \\[YaTeX-uncomment-paragraph]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
591 -Make an \\item entry hang-indented by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
592 \\[YaTeX-fill-item]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
593 -Enclose the region with parentheses by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
594 \\[YaTeX-insert-parens-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
595 \\[YaTeX-insert-braces-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
596 \\[YaTeX-insert-brackets-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
597 \\[YaTeX-insert-dollars-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
598 -Look up the corresponding column header of tabular environment by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
599 \\[YaTeX-what-column]
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
600 -Enter a newline and an entry suitable for environment by
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
601 \\[YaTeX-intelligent-newline]
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
602 -View the structure of file inclusion by
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
603 \\[YaTeX-display-hierarchy]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
604 -Refer the online help of popular LaTeX commands by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
605 \\[YaTeX-help] (help)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
606 \\[YaTeX-apropos] (apropos)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
607 -Edit `%# notation' by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
608 \\[YaTeX-%-menu]
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
609
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
610 Those are enough for fastening your editing of LaTeX source. But further
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
611 more features are available and they are documented in the manual.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
612 "
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
613 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
614 (kill-all-local-variables)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
615 (setq major-mode 'yatex-mode)
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
616 (setq mode-name (if YaTeX-japan "‚â‚Ä‚Ó" "YaTeX"))
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
617 (mapcar 'make-local-variable
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
618 '(dvi2-command fill-column fill-prefix
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
619 tmp-env-table tmp-section-table tmp-fontsize-table
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
620 tmp-singlecmd-table paragraph-start paragraph-separate
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
621 YaTeX-math-mode indent-line-function
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
622 comment-start comment-start-skip
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
623 ))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
624 (cond ((boundp 'MULE)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
625 (set-file-coding-system YaTeX-coding-system))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
626 ((boundp 'NEMACS)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
627 (make-local-variable 'kanji-fileio-code)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
628 (setq kanji-fileio-code YaTeX-kanji-code)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
629 (setq fill-column YaTeX-fill-column
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
630 fill-prefix YaTeX-fill-prefix
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
631 paragraph-start YaTeX-paragraph-start
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
632 paragraph-separate YaTeX-paragraph-separate
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
633 indent-line-function 'YaTeX-indent-line
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
634 comment-start YaTeX-comment-prefix
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
635 ;;comment-start-skip "[^\\\\]%+[ \t]*"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
636 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
637 (use-local-map YaTeX-mode-map)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
638 (if YaTeX-dos (setq YaTeX-saved-screen-height (screen-height)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
639 (YaTeX-read-user-completion-table)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
640 (and (fboundp 'YaTeX-19-collect-macros) (YaTeX-19-collect-macros))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
641 (run-hooks 'text-mode-hook 'yatex-mode-hook)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
642 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
643
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
644 ;---------- Define YaTeX-mode functions ----------
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
645 (defvar YaTeX-ec "\\" "Escape character of current mark-up language.")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
646 (defvar YaTeX-ec-regexp (regexp-quote YaTeX-ec))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
647 (defvar YaTeX-struct-begin
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
648 (concat YaTeX-ec "begin{%1}%2")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
649 "Keyword to begin environment.")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
650 (defvar YaTeX-struct-end (concat YaTeX-ec "end{%1}")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
651 "Keyword to end environment.")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
652 (defvar YaTeX-struct-name-regexp "[^}]+"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
653 "Environment name regexp.")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
654 (defvar YaTeX-TeX-token-regexp
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
655 (cond (YaTeX-japan "[A-Za-z*‚ -‚ñˆŸ-êž]+")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
656 (t "[A-Za-z*]+"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
657 "Regexp of characters which can be a member of TeX command's name.")
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
658 (defvar YaTeX-command-token-regexp YaTeX-TeX-token-regexp
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
659 "Regexp of characters which can be a member of current mark up language's command name.")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
660
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
661 ;;(defvar YaTeX-struct-section
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
662 ;; (concat YaTeX-ec "%1{%2}")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
663 ;; "Keyword to make section.")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
664
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
665 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
666 ;; autoload section
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
667 ;;;
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
668 ;;autoload from yatexlib(general functions).
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
669 (autoload 'YaTeX-showup-buffer "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
670 (autoload 'YaTeX-window-list "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
671 (autoload 'YaTeX-search-active-forward "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
672 (autoload 'YaTeX-search-active-backward "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
673 (autoload 'substitute-all-key-definition "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
674 (autoload 'YaTeX-switch-to-buffer "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
675 (autoload 'YaTeX-switch-to-buffer-other-window "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
676 (autoload 'YaTeX-replace-format "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
677 (autoload 'YaTeX-replace-format-args "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
678 (autoload 'rindex "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
679 (autoload 'YaTeX-match-string "yatexlib" "YaTeX library" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
680 (autoload 'YaTeX-minibuffer-complete "yatexlib" "YaTeX library" t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
681 (autoload 'goto-buffer-window "yatexlib" "YaTeX library" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
682 (autoload 'split-window-calculate-height "yatexlib" "YaTeX library" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
683 (autoload 'read-string-with-history "yatexlib" "YaTeX library" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
684 (autoload 'read-from-minibuffer-with-history "yatexlib" "YaTeX library" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
685 (autoload 'completing-read-with-history "yatexlib" "YaTeX library" t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
686 (autoload 'YaTeX-switch-to-window "yatexlib" "For windows.el" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
687
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
688 ;;autoload from yatexprc.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
689 (autoload 'YaTeX-visit-main "yatexprc" "Visit main LaTeX file." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
690 (autoload 'YaTeX-visit-main-other-window "yatexprc"
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
691 "Visit main other window." t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
692 (autoload 'YaTeX-main-file-p "yatexprc" "Check if the file is main." t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
693 (autoload 'YaTeX-get-builtin "yatexprc" "Get %# built-in." t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
694
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
695 ;;autoload from yatexmth.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
696 (autoload 'YaTeX-math-insert-sequence "yatexmth" "Image input." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
697 (autoload 'YaTeX-in-math-mode-p "yatexmth" "Check if in math-env." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
698 (autoload 'YaTeX-toggle-math-mode "yatexmth" "YaTeX math-mode interfaces." t)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
699 (autoload 'YaTeX-math-member-p "yatexmth" "Check if a word is math command." t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
700
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
701 ;;autoload from yatexhlp.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
702 (autoload 'YaTeX-help "yatexhlp" "YaTeX helper with LaTeX commands." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
703 (autoload 'YaTeX-apropos "yatexhlp" "Apropos for (La)TeX commands." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
704
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
705 ;;autoload from yatexgen.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
706 (autoload 'YaTeX-generate "yatexgen" "YaTeX add-in function generator." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
707 (autoload 'YaTeX-generate-simple "yatexgen" "YaTeX add-in support." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
708
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
709 ;;autoload from yatexsec.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
710 (autoload 'YaTeX-read-section-in-minibuffer "yatexsec" "YaTeX sectioning" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
711 (autoload 'YaTeX-make-section-with-overview "yatexsec" "YaTeX sectioning" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
712
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
713 ;;autoload from yatexenv.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
714 (autoload 'YaTeX-what-column "yatexenv" "YaTeX env. specific funcs" t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
715 (autoload 'YaTeX-intelligent-newline "yatexenv" "YaTeX env. specific funcs" t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
716 (autoload 'YaTeX-indent-line-equation "yatexenv" "Indent equation lines." t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
717 (autoload 'YaTeX-goto-corresponding-leftright "yatexenv" "\left\right jumps" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
718
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
719 ;;autoload from yatexhie.el
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
720 (autoload 'YaTeX-display-hierarchy "yatexhie"
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
721 "YaTeX document hierarchy browser" t)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
722
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
723 ;;;
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
724 ;; YaTeX-mode functions
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
725 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
726 (defun YaTeX-insert-begin-end (env region-mode)
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
727 "Insert \\begin{mode-name} and \\end{mode-name}.
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
728 This works also for other defined begin/end tokens to define the structure."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
729 (setq YaTeX-current-completion-type 'begin)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
730 (let*((ccol (current-column)) beg beg2 exchange
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
731 (arg region-mode) ;for old compatibility
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
732 (indent-column (+ ccol YaTeX-environment-indent))(i 1) func)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
733 (if (and region-mode (> (point) (mark)))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
734 (progn (exchange-point-and-mark)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
735 (setq exchange t
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
736 ccol (current-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
737 indent-column (+ ccol YaTeX-environment-indent))))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
738 ;;VER2 (insert "\\begin{" env "}" (YaTeX-addin env))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
739 (setq beg (point))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
740 (YaTeX-insert-struc 'begin env)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
741 (setq beg2 (point))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
742 (insert "\n")
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
743 (indent-to indent-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
744 (save-excursion
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
745 ;;indent optional argument of \begin{env}, if any
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
746 (while (> (point-beginning-of-line) beg)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
747 (skip-chars-forward "\\s " (point-end-of-line))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
748 (indent-to indent-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
749 (forward-line -1)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
750 (require 'yatexenv)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
751 (if region-mode
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
752 ;;if region-mode, indent all text in the region
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
753 (save-excursion
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
754 (if (fboundp (intern-soft (concat "YaTeX-enclose-" env)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
755 (funcall (intern-soft (concat "YaTeX-enclose-" env))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
756 (point) (mark))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
757 (while (< (progn (forward-line 1) (point)) (mark))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
758 (if (eolp) nil
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
759 (skip-chars-forward " \t\n")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
760 (indent-to indent-column))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
761 (if region-mode (exchange-point-and-mark))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
762 (indent-to ccol)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
763 ;;VER2 (insert "\\end{" env "}\n")
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
764 (YaTeX-insert-struc 'end env)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
765 (YaTeX-reindent ccol)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
766 (if region-mode
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
767 (progn
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
768 (insert "\n")
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
769 (or exchange (exchange-point-and-mark)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
770 (goto-char beg2)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
771 (YaTeX-intelligent-newline nil))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
772 (if YaTeX-current-position-register
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
773 (point-to-register YaTeX-current-position-register)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
774 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
775
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
776 (defun YaTeX-make-begin-end (arg)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
777 "Make LaTeX environment command of \\begin{env.} ... \\end{env.}
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
778 by completing read.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
779 If you invoke this command with universal argument,
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
780 \(key binding for universal-argument is \\[universal-argument]\)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
781 you can put REGION into that environment between \\begin and \\end."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
782 (interactive "P")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
783 (let*
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
784 ((mode (if arg " region" ""))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
785 (env
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
786 (YaTeX-read-environment
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
787 (format "Begin environment%s(default %s): " mode env-name))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
788 (if (string= env "")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
789 (setq env env-name))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
790 (setq env-name env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
791 (YaTeX-update-table
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
792 (list env-name) 'env-table 'user-env-table 'tmp-env-table)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
793 (YaTeX-insert-begin-end env-name arg))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
794 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
795
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
796 (defun YaTeX-make-begin-end-region ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
797 "Call YaTeX-make-begin-end with ARG to specify region mode."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
798 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
799 (YaTeX-make-begin-end t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
800 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
801
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
802 (defun YaTeX-inner-environment (&optional quick)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
803 "Return current inner-most environment.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
804 Non-nil for optional argument QUICK restricts search bound to most
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
805 recent sectioning command. Matching point is stored to property 'point
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
806 of 'YaTeX-inner-environment, which can be referred by
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
807 (get 'YaTeX-inner-environment 'point)."
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
808 (let*((nest 0)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
809 (beg (YaTeX-replace-format-args
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
810 (regexp-quote YaTeX-struct-begin)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
811 YaTeX-struct-name-regexp "" ""))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
812 (end (YaTeX-replace-format-args
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
813 (regexp-quote YaTeX-struct-end)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
814 YaTeX-struct-name-regexp "" ""))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
815 (begend (concat "\\(" beg "\\)\\|\\(" end "\\)"))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
816 bound m0
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
817 (open
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
818 (concat "^" (or (cdr (assq major-mode '((yahtml-mode . "<")))) "{")))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
819 (close
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
820 (concat "^" (or (cdr (assq major-mode '((yahtml-mode . ">")))) "}"))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
821 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
822 (if quick
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
823 (setq bound
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
824 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
825 (YaTeX-re-search-active-backward
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
826 (concat YaTeX-ec-regexp
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
827 "\\(" YaTeX-sectioning-regexp "\\)\\*?\\{")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
828 YaTeX-comment-prefix nil 1)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
829 (or (bobp) (end-of-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
830 (point))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
831 (if (catch 'begin
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
832 (if (and (numberp bound) (< (point) bound)) (throw 'begin nil))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
833 (while (YaTeX-re-search-active-backward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
834 begend YaTeX-comment-prefix bound t)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
835 (setq m0 (match-beginning 0))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
836 (if (looking-at end) ;;(match-beginning 2)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
837 (setq nest (1+ nest))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
838 (setq nest (1- nest)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
839 (if (< nest 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
840 (progn
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
841 (put 'YaTeX-inner-environment 'point m0)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
842 (goto-char m0)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
843 (put 'YaTeX-inner-environment 'indent (current-column))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
844 (throw 'begin t)))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
845 (buffer-substring
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
846 (progn (skip-chars-forward open) (1+ (point)))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
847 (progn (skip-chars-forward close) (point))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
848 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
849
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
850 (defun YaTeX-end-environment ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
851 "Close opening environment"
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
852 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
853 (let ((curp (point))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
854 (env (YaTeX-inner-environment))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
855 (md (match-data)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
856
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
857 (if (not env) (error "No premature environment")
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
858 (save-excursion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
859 (if (YaTeX-search-active-forward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
860 (YaTeX-replace-format-args YaTeX-struct-end env "" "")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
861 YaTeX-comment-prefix nil t)
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
862 (if (y-or-n-p
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
863 (concat "Environment `" env
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
864 "' may be already closed. Force close?"))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
865 nil
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
866 (error "end environment aborted."))))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
867 (message "") ;Erase (y or n) message.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
868 ;(insert "\\end{" env "}")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
869 (YaTeX-insert-struc 'end env)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
870 (store-match-data md)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
871 (setq curp (point))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
872 (goto-char (match-end 0))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
873 (if (pos-visible-in-window-p)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
874 (sit-for (if YaTeX-dos 2 1))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
875 (message "Matches with %s at line %d"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
876 (YaTeX-replace-format-args YaTeX-struct-begin env "" "")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
877 (count-lines (point-min) (point))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
878 (goto-char curp))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
879 )
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
880 )
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
881
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
882 ;;;VER2
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
883 (defun YaTeX-insert-struc (what env)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
884 (cond
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
885 ((eq what 'begin)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
886 (insert (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
887 YaTeX-struct-begin env (YaTeX-addin env))))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
888 ((eq what 'end)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
889 (insert (YaTeX-replace-format-args YaTeX-struct-end env)))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
890 (t nil))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
891 )
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
892
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
893 (defun YaTeX-make-section (arg &optional beg end cmd)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
894 "Make LaTeX \\section{} type command with completing read.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
895 With numeric ARG, you can specify the number of arguments of
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
896 LaTeX command.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
897 For example, if you want to produce LaTeX command
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
898
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
899 \\addtolength{\\topmargin}{8mm}
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
900
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
901 which has two arguments. You can produce that sequence by typing...
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
902 ESC 2 C-c s add SPC RET \\topm SPC RET 8mm RET
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
903 \(by default\)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
904 Then yatex will automatically complete `addtolength' with two arguments
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
905 next time.
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
906 You can complete symbol at LaTeX command and the 1st argument.
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
907
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
908 If the optional 2nd and 3rd argument BEG END are specified, enclose
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
909 the region from BEG to END into the first argument of the LaTeX sequence.
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
910 Optional 4th arg CMD is LaTeX command name, for non-interactive use."
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
911 (interactive "P")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
912 (setq YaTeX-current-completion-type 'section)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
913 (unwind-protect
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
914 (let*
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
915 ((source-window (selected-window))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
916 (section
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
917 (or cmd
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
918 (YaTeX-read-section
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
919 (if YaTeX-simple-messages
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
920 (format "Section-type (default %s): " section-name)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
921 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
922 (format "%s???{} (default %s)%s: " YaTeX-ec section-name
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
923 (format "[level:%d]" (minibuffer-depth)))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
924 (format "(C-v for view-section) %s???{} (default %s): "
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
925 YaTeX-ec section-name)))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
926 nil)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
927 (section (if (string= section "") section-name section))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
928 (numarg ;; The number of section-type command's argument
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
929 (or arg
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
930 (nth 1 (YaTeX-lookup-table section 'section))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
931 1))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
932 (arg-reader (intern-soft (concat "YaTeX::" section)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
933 (addin-args (and arg-reader (fboundp arg-reader)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
934 (title "")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
935 (j 1)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
936 (enable-recursive-minibuffers t));;let
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
937 (setq section-name section)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
938 (if beg
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
939 (let ((e (make-marker)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
940 (goto-char end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
941 (insert "}")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
942 (set-marker e (point))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
943 (goto-char beg)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
944 (insert YaTeX-ec section-name "{")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
945 (goto-char (marker-position e)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
946 (use-global-map YaTeX-recursive-map)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
947 (if (= numarg 0) (YaTeX-make-singlecmd section-name)
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
948 (insert YaTeX-ec section-name (YaTeX-addin section-name)))
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
949 (while (<= j numarg)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
950 (insert
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
951 "{"
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
952 (setq title
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
953 (cond
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
954 (addin-args (funcall arg-reader j))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
955 (YaTeX-skip-default-reader "")
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
956 (t
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
957 (read-string (format "Argument %d of %s: " j section)))))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
958 "}")
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
959 (setq j (1+ j))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
960 (YaTeX-update-table
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
961 (if (/= numarg 1) (list section numarg)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
962 (list section))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
963 'section-table 'user-section-table 'tmp-section-table)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
964 (if YaTeX-current-position-register
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
965 (point-to-register YaTeX-current-position-register))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
966 (if (string= (buffer-substring (- (point) 2) (point)) "{}")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
967 (forward-char -1))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
968 (while (string= (buffer-substring (- (point) 3) (1- (point))) "{}")
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
969 (forward-char -2)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
970 (if (<= (minibuffer-depth) 0) (use-global-map global-map)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
971 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
972
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
973 (defun YaTeX-make-section-region (args beg end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
974 "Call YaTeX-make-section with arguments to specify region mode."
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
975 (interactive "P\nr")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
976 (YaTeX-make-section args beg end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
977 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
978
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
979 (defun YaTeX-make-fontsize (arg &optional fontsize)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
980 "Make completion like {\\large ...} or {\\slant ...} in minibuffer.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
981 If you invoke this command with universal argument, you can put region
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
982 into {\\xxx } braces.
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
983 \(key binding for universal-argument is \\[universal-argument]\)"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
984 (interactive "P")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
985 (YaTeX-sync-local-table 'tmp-fontsize-table)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
986 (let* ((mode (if arg "region" ""))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
987 (fontsize
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
988 (or fontsize
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
989 (YaTeX-read-fontsize
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
990 (if YaTeX-simple-messages
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
991 (format "Font or size (default %s): " fontsize-name)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
992 (format "{\\??? %s} (default %s)%s: " mode fontsize-name
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
993 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
994 (format "[level:%d]" (minibuffer-depth)) "")))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
995 nil nil))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
996 (if (string= fontsize "")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
997 (setq fontsize fontsize-name))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
998 (setq fontsize-name fontsize)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
999 (YaTeX-update-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1000 (list fontsize-name)
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1001 'fontsize-table 'user-fontsize-table 'tmp-fontsize-table)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1002 (if arg
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1003 (save-excursion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1004 (if (> (point) (mark)) (exchange-point-and-mark))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1005 (insert "{\\" fontsize-name " ")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1006 (exchange-point-and-mark)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1007 (insert "}"))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1008 (insert "{\\" fontsize-name " }")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1009 (if YaTeX-current-position-register
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1010 (point-to-register YaTeX-current-position-register))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1011 (forward-char -1)))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1012 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1013
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1014 (defun YaTeX-make-fontsize-region ()
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1015 "Call function:YaTeX-make-fontsize with ARG to specify region mode."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1016 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1017 (YaTeX-make-fontsize t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1018 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1019
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1020 (defvar YaTeX-singlecmd-suffix "" "*Suffix for maketitle-type commands.")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1021 (defvar YaTeX-read-singlecmd-history nil "Holds maketitle-type history.")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1022 (put 'YaTeX-read-singlecmd-history 'no-default t)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1023 (defun YaTeX-make-singlecmd (single)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1024 (interactive
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1025 (list (YaTeX-cplread-with-learning
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1026 (if YaTeX-simple-messages
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1027 (format "maketitle-type (default %s): " single-command)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1028 (format "%s??? (default %s)%s: " YaTeX-ec single-command
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1029 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1030 (format "[level:%d]" (minibuffer-depth)) "")))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1031 'singlecmd-table 'user-singlecmd-table 'tmp-singlecmd-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1032 nil nil nil 'YaTeX-read-singlecmd-history)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1033 (if (string= single "")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1034 (setq single single-command))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1035 (setq single-command single)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1036 (setq YaTeX-current-completion-type 'maketitle)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1037 (let ((dollar (and (not (YaTeX-in-math-mode-p))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1038 (YaTeX-math-member-p single-command)))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1039 p q)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1040 (if dollar (insert "$"))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1041 (insert YaTeX-ec single-command)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1042 (setq p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1043 (insert (YaTeX-addin single) YaTeX-singlecmd-suffix)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1044 (if dollar (insert "$"))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1045 (setq q (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1046 (goto-char p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1047 (forward-char -2)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1048 (if (looking-at "\\[\\]") (forward-char 1) (goto-char q)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1049 (if YaTeX-current-position-register
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1050 (point-to-register YaTeX-current-position-register))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1051 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1052
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1053 (defvar YaTeX-completion-begin-regexp "[{\\]"
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1054 "Regular expression of limit where LaTeX command's completion begins.")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1055
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1056 (defun YaTeX-do-completion ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1057 "Try completion on LaTeX command preceding point."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1058 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1059 (if
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1060 (or (eq (preceding-char) ? )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1061 (eq (preceding-char) ?\t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1062 (eq (preceding-char) ?\n)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1063 (bobp))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1064 (message "Nothing to complete.") ;Do not complete
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1065 (let* ((end (point))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1066 (limit (point-beginning-of-line))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1067 (completion-begin
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1068 (progn (re-search-backward "[ \t\n]" limit 1) (point)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1069 (begin (progn
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1070 (goto-char end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1071 (if (re-search-backward YaTeX-completion-begin-regexp
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1072 completion-begin t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1073 (1+ (point))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1074 nil))))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1075 (goto-char end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1076 (cond
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1077 ((null begin)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1078 (message "I think it is not a LaTeX sequence."))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1079 (t
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1080 (mapcar 'YaTeX-sync-local-table
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
1081 '(tmp-section-table tmp-env-table tmp-singlecmd-table))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1082 (let*((pattern (buffer-substring begin end))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1083 (all-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1084 (append
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1085 section-table user-section-table tmp-section-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1086 env-table user-env-table tmp-env-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1087 singlecmd-table user-singlecmd-table tmp-singlecmd-table))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1088 ;; First,
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1089 ;; search completion without backslash.
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1090 (completion (try-completion pattern all-table)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1091 (if
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1092 (eq completion nil)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1093 ;; Next,
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1094 ;; search completion with backslash
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1095 (setq completion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1096 (try-completion (buffer-substring (1- begin) end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1097 all-table nil)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1098 begin (1- begin)))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1099 (cond
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1100 ((null completion)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1101 (message (concat "Can't find completion for '" pattern "'"))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1102 (ding))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1103 ((eq completion t) (message "Sole completion."))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1104 ((not (string= completion pattern))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1105 (kill-region begin end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1106 (insert completion)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1107 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1108 (t
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1109 (message "Making completion list...")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1110 (with-output-to-temp-buffer "*Help*"
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1111 (display-completion-list
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1112 (all-completions pattern all-table))))))))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1113 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1114
12
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1115 (defun YaTeX-toggle-modify-mode (&optional arg)
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1116 (interactive "P")
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1117 (or (memq 'YaTeX-modify-mode mode-line-format)
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1118 (setq mode-line-format
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1119 (append (list "" 'YaTeX-modify-mode) mode-line-format)))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1120 (if (or arg (null YaTeX-modify-mode))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1121 (progn
12
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1122 (setq YaTeX-modify-mode "*m*")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1123 (message "Modify mode"))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1124 (setq YaTeX-modify-mode nil)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1125 (message "Cancel modify mode."))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1126 (set-buffer-modified-p (buffer-modified-p)) ;redraw mode-line
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1127 )
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1128
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1129 (defun YaTeX-switch-mode-menu (arg &optional char)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1130 (interactive "P")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1131 (message "Toggle: (M)odify-mode ma(T)h-mode")
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1132 (let ((c (or char (read-char))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1133 (cond
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1134 ((= c ?m) (YaTeX-toggle-modify-mode arg))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1135 ((or (= c ?$) (= c ?t))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1136 (if YaTeX-auto-math-mode
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1137 (message "Makes no sense in YaTeX-auto-math-mode.")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1138 (YaTeX-toggle-math-mode arg)))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1139 )
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1140
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1141 (defun YaTeX-insert-quote ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1142 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1143 (insert
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1144 (cond
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1145 ((YaTeX-literal-p) ?\")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1146 ((= (preceding-char) ?\\ ) ?\")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1147 ;((= (preceding-char) ?\( ) ?\")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1148 ((or (= (preceding-char) 32)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1149 (= (preceding-char) 9)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1150 (= (preceding-char) ?\n)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1151 (bobp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1152 (string-match
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1153 (regexp-quote (char-to-string (preceding-char)))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1154 "ABCDHIuvwxyz()"))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1155 "``")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1156 (t "''")))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1157 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1158
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1159 (defun YaTeX-closable-p ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1160 (and (not YaTeX-modify-mode)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1161 (not (eq YaTeX-close-paren-always 'never))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1162 (or YaTeX-close-paren-always (eolp))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1163 (not (input-pending-p))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1164 (not (YaTeX-literal-p)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1165 ;;(or YaTeX-modify-mode
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1166 ;; (and (not YaTeX-close-paren-always) (not (eolp)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1167 ;; (input-pending-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1168 ;; (YaTeX-quick-in-environment-p "verbatim"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1169 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1170
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1171 (defun YaTeX-insert-braces-region (beg end &optional open close)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1172 (interactive "r")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1173 (save-excursion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1174 (goto-char end)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1175 (insert (or close "}"))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1176 (goto-char beg)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1177 (insert (or open "{")))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1178 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1179
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1180 (defun YaTeX-insert-braces (arg &optional open close)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1181 (interactive "p")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1182 (let (env)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1183 (cond
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1184 ((YaTeX-jmode) (YaTeX-self-insert arg))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1185 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1186 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1187 (and (> (- (point) (point-min)) 6) (forward-char -6))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1188 (looking-at "\\\\left\\\\"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1189 (insert "{\\right\\}")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1190 (forward-char -8))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1191 ((and (> (point) (+ (point-min) 4))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1192 (save-excursion (backward-char 4) (looking-at "\\\\end"))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1193 (not (YaTeX-literal-p))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1194 (setq env (YaTeX-inner-environment)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1195 (momentary-string-display
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1196 (concat
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1197 "{"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1198 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1199 (YaTeX-japan
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
1200 (format "¡“x‚©‚ç‚Í‚¿‚á‚ñ‚Æ %s b ‚ðŽg‚¢‚Ü‚µ‚傤" YaTeX-prefix))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1201 (t (format "You don't understand Zen of `%s b':p" YaTeX-prefix)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1202 "}")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1203 (point))
47
d7e7b4654058 Support special popup frame.
yuuji
parents: 46
diff changeset
1204 (insert (or open "{") env (or close "}")))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1205 (t
47
d7e7b4654058 Support special popup frame.
yuuji
parents: 46
diff changeset
1206 (insert (or open "{") (or close "}"))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1207 (forward-char -1))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1208 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1209
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1210 (defun YaTeX-jmode ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1211 (or (and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1212 (and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1213 )
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1214
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1215 (defun YaTeX-self-insert (arg)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1216 (call-interactively (global-key-binding (char-to-string last-command-char))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1217
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1218 (defun YaTeX-insert-brackets (arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1219 "Insert Kagi-kakko or \\ [ \\] pair or simply \[."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1220 (interactive "p")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1221 (let ((col (1- (current-column))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1222 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1223 ((YaTeX-jmode) (YaTeX-self-insert arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1224 ((not (YaTeX-closable-p))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1225 (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1226 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1227 (and (> (- (point) (point-min)) 5) (forward-char -5))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1228 (looking-at "\\\\left"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1229 (insert "[\\right]")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1230 (forward-char -7))
36
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1231 ((and (= (preceding-char) ?\\ )
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1232 (/= (char-after (- (point) 2)) ?\\ )
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1233 (not (YaTeX-in-math-mode-p)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1234 (insert last-command-char "\n")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1235 (indent-to (max 0 col))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1236 (insert "\\]")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1237 (beginning-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1238 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1239 (delete-region (point) (progn (beginning-of-line) (point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1240 (indent-to (+ YaTeX-environment-indent (max 0 col)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1241 (or YaTeX-auto-math-mode YaTeX-math-mode (YaTeX-toggle-math-mode 1)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1242 ((YaTeX-closable-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1243 (insert "[]")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1244 (backward-char 1))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1245 (t (YaTeX-self-insert arg)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1246 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1247 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1248
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1249 (defun YaTeX-insert-brackets-region (beg end)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1250 (interactive "r")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1251 (YaTeX-insert-braces-region beg end "[" "]")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1252 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1253
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1254 (defun YaTeX-insert-parens (arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1255 "Insert parenthesis pair."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1256 (interactive "p")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1257 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1258 ((YaTeX-jmode) (YaTeX-self-insert arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1259 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1260 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1261 (and (> (- (point) (point-min)) 5) (forward-char -5))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1262 (looking-at "\\\\left"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1263 (insert "(\\right)")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1264 (forward-char -7))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1265 ((and (= (preceding-char) ?\\ ) (not (YaTeX-in-math-mode-p)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1266 (insert "(\\)")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1267 (backward-char 2))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1268 ((YaTeX-closable-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1269 (insert "()")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1270 (backward-char 1))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1271 (t (YaTeX-self-insert arg)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1272 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1273
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1274 (defun YaTeX-insert-parens-region (beg end)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1275 (interactive "r")
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1276 (YaTeX-insert-braces-region beg end "(" ")")
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1277 )
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1278
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1279 (defun YaTeX-insert-dollar ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1280 (interactive)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1281 (if (or (not (YaTeX-closable-p))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1282 (= (preceding-char) 92)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1283 (and (YaTeX-in-math-mode-p)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1284 (or (/= (preceding-char) ?$) (/= (following-char) ?$))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1285 (insert "$")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1286 (insert "$$")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1287 (forward-char -1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1288 (or YaTeX-auto-math-mode YaTeX-math-mode (YaTeX-toggle-math-mode 1)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1289 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1290
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1291 (defun YaTeX-insert-dollars-region (beg end)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1292 (interactive "r")
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1293 (YaTeX-insert-braces-region beg end "$" "$")
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1294 )
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1295
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1296 (defun YaTeX-insert-amper ()
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1297 (interactive)
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1298 (if (or (string-match YaTeX-array-env-regexp
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1299 (or (YaTeX-inner-environment t) "document"))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1300 (= (preceding-char) 92)
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1301 (YaTeX-literal-p))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1302 (insert "&")
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1303 (insert "\\&"))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1304 )
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1305
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1306 (defun YaTeX-version ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1307 "Return string of the version of running YaTeX."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1308 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1309 (message
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1310 (concat "Yet Another tex-mode "
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
1311 (if YaTeX-japan "u–ì’¹v" "`Wild Bird'")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1312 " Revision "
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1313 YaTeX-revision-number))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1314 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1315
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1316 (defun YaTeX-typeset-menu (arg &optional char)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1317 "Typeset, preview, visit error and miscellaneous convenient menu.
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1318 Optional second argument CHAR is for non-interactive call from menu."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1319 (interactive "P")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1320 (message
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1321 (concat "J)latex R)egion B)ibtex mk(I)ndex "
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1322 (or YaTeX-dos "K)ill-latex ")
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1323 "P)review "
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1324 (and (boundp 'window-system) window-system "S)earch ")
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1325 "V)iewerr L)pr"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1326 (let ((sw (selected-window)) (c (or char (read-char))))
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1327 (require 'yatexprc) ;for Nemacs's bug
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1328 (select-window sw)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1329 (cond
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1330 ((= c ?j) (YaTeX-typeset-buffer))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1331 ((= c ?r) (YaTeX-typeset-region))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1332 ((= c ?b) (YaTeX-call-command-on-file
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1333 bibtex-command "*YaTeX-bibtex*"))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1334 ((= c ?i) (YaTeX-call-command-on-file
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1335 makeindex-command "*YaTeX-makeindex*"))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1336 ((= c ?k) (YaTeX-kill-typeset-process YaTeX-typeset-process))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1337 ((= c ?p) (call-interactively 'YaTeX-preview))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1338 ((= c ?q) (YaTeX-system "lpq" "*Printer queue*"))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1339 ((= c ?v) (YaTeX-view-error))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1340 ((= c ?l) (YaTeX-lpr arg))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1341 ((= c ?m) (YaTeX-switch-mode-menu arg))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1342 ((= c ?b) (YaTeX-insert-string "\\"))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1343 ((= c ?s) (YaTeX-xdvi-remote-search arg))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1344 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1345
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1346 (defun YaTeX-%-menu (&optional beg end char)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1347 "Operate %# notation."
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1348 ;;Do not use interactive"r" for the functions which require no mark
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1349 (interactive)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1350 (message "!)Edit-%%#! B)EGIN-END-region L)Edit-%%#LPR")
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1351 (let ((c (or char (read-char))) (string "") key
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1352 (b (make-marker)) (e (make-marker)))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1353 (save-excursion
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1354 (cond
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1355 ((or (= c ?!) (= c ?l)) ;Edit `%#!'
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1356 (goto-char (point-min))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1357 (setq key (cond ((= c ?!) "%#!")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1358 ((= c ?l) "%#LPR")))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1359 (if (re-search-forward key nil t)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1360 (progn
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1361 (setq string (buffer-substring (point) (point-end-of-line)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1362 (delete-region (point) (progn (end-of-line) (point))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1363 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1364 (delete-region (point) (progn (beginning-of-line)(point)));for 19 :-<
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1365 (insert key))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1366 (unwind-protect
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1367 (setq string (read-string (concat key ": ") string))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1368 (insert string)))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1369
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1370 ((= c ?b) ;%#BEGIN %#END region
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1371 (or end (setq beg (min (point) (mark)) end (max (point) (mark))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1372 (set-marker b beg)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1373 (set-marker e end)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1374 (goto-char (point-min))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1375 (while (re-search-forward "^%#\\(BEGIN\\)\\|\\(END\\)$" nil t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1376 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1377 (delete-region (point) (progn (forward-line 1) (point))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1378 (goto-char (marker-position b))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1379 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1380 (delete-region (point) (progn (beginning-of-line)(point)));for 19 :-<
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1381 (insert "%#BEGIN")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1382 (goto-char (marker-position e))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1383 (insert "%#END\n"))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1384 )))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1385 )
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1386
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1387 (defun YaTeX-goto-corresponding-label (reverse &optional otherwin)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1388 "Jump to corresponding \\label{} and \\ref{} or \\cite and \\bibitem.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1389 The default search direction depends on the command at the cursor position.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1390 When the cursor is on \\ref(\\cite), YaTeX will try to search the
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1391 corresponding \\label(\\bibitem) backward,
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1392 and if it fails search forward again. And when the cursor is
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1393 on \\label(\\bibitem), YaTeX will search the corresponding \\ref(\\cite)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1394 forward at first and secondary backward.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1395 Argument REVERSE non-nil makes the default
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1396 direction rule reverse. Since Search string is automatically set in
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1397 search-last-string, you can repeat search the same label/ref by typing
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1398 \\[isearch-forward] or \\[isearch-backward].
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1399 If optional second argument OTHERWIN is non-nil, move to other window."
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1400
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1401 (let ((scmd "") label direc string blist (p (point)) (cb (current-buffer))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1402 (refcommands "label\\|ref\\|cite\\|bibitem")
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1403 (func (function (lambda (string sfunc)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1404 (or
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1405 (funcall sfunc string nil t)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1406 (funcall (if (eq sfunc 'search-forward)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1407 'search-backward 'search-forward)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1408 string nil t))))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1409 (cond
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1410 ((YaTeX-on-section-command-p refcommands)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1411 (setq scmd (cdr (assoc (YaTeX-match-string 1)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1412 '(("label" . "ref") ("ref" . "label")
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1413 ("cite" . "bibitem") ("bibitem" . "cite")))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1414 (goto-char (match-end 0))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1415 (let ((label (buffer-substring
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1416 (1- (point)) (progn (backward-list 1) (1+ (point))))))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1417 (setq string (concat "\\" scmd "{" label "}"))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1418 (setq direc (if (string-match "ref\\|cite" scmd)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1419 'search-forward 'search-backward))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1420 (if YaTeX-current-position-register
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1421 (point-to-register YaTeX-current-position-register))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1422 (if reverse (setq direc (if (eq direc 'search-forward)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1423 'search-backward 'search-forward)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1424 (if (funcall func string direc) ;label/ref found!
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1425 (progn
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1426 (if otherwin
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1427 (progn
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1428 (goto-char p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1429 (if (one-window-p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1430 (split-window-calculate-height
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1431 YaTeX-default-pop-window-height))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1432 (select-window (get-lru-window))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1433 (switch-to-buffer cb)))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1434 (goto-char (match-beginning 0))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1435 (push-mark p))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1436 ;;if label/ref not found, search through all yatex buffers.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1437 (goto-char p) ;resume position of current buffer
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1438 (setq blist (YaTeX-yatex-buffer-list))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1439 (catch 'found
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1440 (while blist
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1441 (set-buffer (car blist))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1442 (if (YaTeX-on-section-command-p refcommands)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1443 (goto-char (match-beginning 0)))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1444 (if (funcall func string direc)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1445 (progn
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1446 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1447 (otherwin
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1448 (set-buffer cb)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1449 (goto-char p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1450 (if (one-window-p)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1451 (split-window-calculate-height
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1452 YaTeX-default-pop-window-height))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1453 (select-window (get-lru-window))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1454 (switch-to-buffer (car blist)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1455 ((or (get-buffer-window (car blist))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1456 (and YaTeX-emacs-19
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1457 (get-buffer-window (car blist) t)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1458 (goto-buffer-window (car blist)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1459 (t
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1460 (switch-to-buffer (car blist))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1461 (message
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1462 (format "Type %s %c to return to original position."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1463 (key-description
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1464 (car
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1465 (or (where-is-internal 'register-to-point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1466 (where-is-internal 'jump-to-register))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1467 YaTeX-current-position-register))))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1468 (goto-char (match-beginning 0))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1469 (throw 'found t)))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1470 (setq blist (cdr blist)))))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1471 )
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1472 (if YaTeX-emacs-19
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1473 (setq search-ring (cons string search-ring))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1474 (setq search-last-string string)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1475 (t nil)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1476 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1477
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1478 (defun YaTeX-goto-corresponding-environment (&optional allow-mismatch noerr)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1479 "Go to corresponding begin/end enclosure.
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1480 Optional argument ALLOW-MISMATCH allows mismatch open/clese. Use this
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1481 for \left(, \right).
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1482 Optional third argument NOERR causes no error for unballanced environment."
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1483 (interactive)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1484 (if (not (YaTeX-on-begin-end-p)) nil
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1485 (let ((p (match-end 0)) b0 b1 env (nest 0) regexp re-s (op (point))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1486 (m0 (match-beginning 0)) ;whole matching
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1487 (m1 (match-beginning 1)) ;environment in \begin{}
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1488 (m2 (match-beginning 2))) ;environment in \end{}
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1489 ;(setq env (regexp-quote (buffer-substring p (match-beginning 0))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1490 (if (cond
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1491 (m1 ;if begin{xxx}
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1492 (setq env
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1493 (if allow-mismatch YaTeX-struct-name-regexp
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1494 (regexp-quote (buffer-substring m1 (match-end 1)))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1495 ; (setq regexp (concat "\\(\\\\end{" env "}\\)\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1496 ; "\\(\\\\begin{" env "}\\)"))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1497 (setq regexp
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1498 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1499 "\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1500 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1501 (regexp-quote YaTeX-struct-end) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1502 "\\)\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1503 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1504 (regexp-quote YaTeX-struct-begin) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1505 "\\)"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1506 (setq re-s 're-search-forward))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1507 (m2 ;if end{xxx}
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1508 (setq env
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1509 (if allow-mismatch YaTeX-struct-name-regexp
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1510 (regexp-quote (buffer-substring m2 (match-end 2)))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1511 ; (setq regexp (concat "\\(\\\\begin{" env "}\\)\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1512 ; "\\(\\\\end{" env "}\\)"))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1513 (setq regexp
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1514 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1515 "\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1516 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1517 (regexp-quote YaTeX-struct-begin) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1518 "\\)\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1519 (YaTeX-replace-format-args
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1520 (regexp-quote YaTeX-struct-end) env "" "")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1521 "\\)"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1522 (setq re-s 're-search-backward))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1523 (t (if noerr nil (error "Corresponding environment not found."))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1524 (progn
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1525 (while (and (>= nest 0) (funcall re-s regexp nil t))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1526 (setq b0 (match-beginning 0) b1 (match-beginning 1))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1527 (if (or (equal b0 m0)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1528 (YaTeX-literal-p b0))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1529 nil
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1530 (setq nest (if (equal b0 b1)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1531 (1- nest) (1+ nest)))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1532 (if (< nest 0)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1533 (goto-char (match-beginning 0)) ;found.
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1534 (goto-char op)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1535 (funcall
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1536 (if noerr 'message 'error)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1537 "Corresponding environment `%s' not found." env)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1538 (sit-for 1)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1539 nil)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1540 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1541
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1542 (defun YaTeX-goto-corresponding-file (&optional other)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1543 "Visit or switch buffer of corresponding file,
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1544 looking at \\input or \\include or \includeonly on current line."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1545 (if (not (YaTeX-on-includes-p)) nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1546 (let ((parent buffer-file-name) input-file)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1547 (save-excursion
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1548 (if (search-forward "{" (point-end-of-line) t)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1549 nil
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1550 (skip-chars-backward "^,{"))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1551 (setq input-file
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1552 (buffer-substring
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1553 (point) (progn (skip-chars-forward "^ ,}") (point))))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1554 (if (not (string-match "\\.\\(tex\\|sty\\)$" input-file))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1555 (setq input-file (concat input-file ".tex"))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1556 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1557 (other (YaTeX-switch-to-buffer-other-window input-file))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1558 ((get-file-buffer input-file) (goto-buffer-window input-file))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1559 (t (YaTeX-switch-to-buffer input-file)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1560 (or (YaTeX-get-builtin "!")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1561 YaTeX-parent-file
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1562 (setq YaTeX-parent-file parent))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1563 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1564
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1565 (defun YaTeX-goto-corresponding-BEGIN-END ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1566 (if (not (YaTeX-on-BEGIN-END-p)) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1567 (if (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1568 ((equal (match-beginning 0) (match-beginning 1)) ;if on %#BEGIN
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1569 (not (search-forward "%#END" nil t)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1570 (t ; if on %#END
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1571 (not (search-backward "%#BEGIN" nil t))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1572 (error "Corresponding %%#BEGIN/END not found."))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1573 (beginning-of-line)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1574 t)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1575 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1576
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1577 (defun YaTeX-on-section-command-p (command)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1578 "Check if point is on the LaTeX command: COMMAND(regexp).
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1579 Return nil if point is not on it. Otherwise return the
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1580 number of argument position.
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1581 Section command name is stored in match-data #1."
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1582 (let ((p (point)) md (parg 0) (argc 1) word (grouping 0) (i 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1583 (while (setq i (string-match "\\\\(" command i))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1584 (setq grouping (1+ grouping) i (+ i 2)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1585 (save-excursion
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1586 (if (looking-at YaTeX-ec-regexp) nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1587 (catch 'found ;caught value has no meaning
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1588 (while t
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1589 (if (bobp) (throw 'found nil))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1590 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1591 ((looking-at YaTeX-ec-regexp) (throw 'found t))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1592 ((looking-at "[[{]") nil)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1593 ((looking-at "[]}]")(condition-case nil (up-list -1) (error nil)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1594 (t (skip-chars-backward " \t\r\n")))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1595 (skip-chars-backward (concat "^ \t\r\n{}[]" YaTeX-ec-regexp))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1596 (or (bobp) (forward-char -1)))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1597 (if (and
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1598 (looking-at (concat YaTeX-ec-regexp "\\(" command "\\)"
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1599 "\\(\\(\\[[^]]+\\]\\)*\\)" ;optional arg
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1600 "[ \t\n\r]*{[^}]+}")) ;arg braces
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1601 (not (YaTeX-lookup-table
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1602 (setq word (YaTeX-match-string 1)) 'singlecmd)))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1603 (progn
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1604 (setq md (match-data))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1605 (skip-chars-forward "^{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1606 (if (<= (point) p) (setq parg (1+ parg)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1607 (setq argc
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1608 (or (car (cdr (YaTeX-lookup-table word 'section)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1609 argc))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1610 (while (and (>= (setq argc (1- argc)) 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1611 (progn (skip-chars-forward " \t\n\r")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1612 (looking-at "{")))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1613 (forward-list 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1614 (if (<= (point) p) (setq parg (1+ parg))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1615 (store-match-data md)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1616 (setq i (+ 2 grouping))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1617 (if (and (match-beginning i)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1618 (>= p (match-beginning i)) (< p (match-end i)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1619 -1 ;return -1 if point is on optional arg
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1620 (if (< p (point)) parg))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1621 ))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1622 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1623
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1624 (defun YaTeX-on-maketitle-p ()
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1625 "Check if point is on maketitle type commands.
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1626 Call this function after YaTeX-on-section-command-p."
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1627 (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1628 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1629 (or (= (char-after (point)) ?\\ )
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1630 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1631 (skip-chars-backward
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1632 (concat "^" YaTeX-ec-regexp) (point-beginning-of-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1633 (or (bobp) (bolp) (backward-char 1))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1634 (and (looking-at (concat YaTeX-ec-regexp YaTeX-TeX-token-regexp))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1635 (<= (match-beginning 0) p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1636 (> (match-end 0) p)))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1637
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1638 (defun YaTeX-on-begin-end-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1639 (save-excursion
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1640 (beginning-of-line)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1641 (re-search-forward
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1642 ;;"\\\\begin{\\([^}]+\\)}\\|\\\\end{\\([^}]+\\)}"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1643 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1644 (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1645 (regexp-quote YaTeX-struct-begin)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1646 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" "")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1647 "\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1648 (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1649 (regexp-quote YaTeX-struct-end)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1650 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" ""))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1651 (point-end-of-line) t))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1652 )
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1653
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1654 (defun YaTeX-on-includes-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1655 (save-excursion
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1656 (beginning-of-line)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1657 (re-search-forward "\\(\\(include.*\\)\\|\\(input\\)\\){.*}"
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1658 (point-end-of-line) t))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1659 )
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1660
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1661 (defun YaTeX-on-comment-p (&optional sw)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1662 "Return t if current line is commented out.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1663 Optional argument SW t to treat all `%' lines as comment,
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1664 even if on `%#' notation."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1665 (save-excursion
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1666 (beginning-of-line)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1667 (skip-chars-forward "\\s ")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1668 (looking-at (if sw "%" "%[^#]")))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1669 )
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1670
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1671 (defun YaTeX-on-BEGIN-END-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1672 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1673 (let ((case-fold-search nil))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1674 (beginning-of-line)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1675 (re-search-forward "\\(%#BEGIN\\)\\|\\(%#END\\)" (point-end-of-line) t)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1676 )
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1677
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1678 (defun YaTeX-goto-corresponding-* (arg)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1679 "Parse current line and call suitable function."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1680 (interactive "P")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1681 (cond
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1682 ((YaTeX-goto-corresponding-label arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1683 ((YaTeX-goto-corresponding-environment))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1684 ((YaTeX-goto-corresponding-file))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1685 ((YaTeX-goto-corresponding-BEGIN-END))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1686 ((and (string-match
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1687 YaTeX-equation-env-regexp ;to delay loading
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1688 (or (YaTeX-inner-environment t) "document"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1689 (YaTeX-goto-corresponding-leftright)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1690 (t (message "I don't know where to go.")))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1691 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1692
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1693 (defun YaTeX-goto-corresponding-*-other-window (arg)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1694 "Parse current line and call suitable function."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1695 (interactive "P")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1696 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1697 ((YaTeX-goto-corresponding-label arg t))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1698 ;;((YaTeX-goto-corresponding-environment))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1699 ((YaTeX-goto-corresponding-file t))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1700 ;;((YaTeX-goto-corresponding-BEGIN-END))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1701 (t (message "I don't know where to go.")))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1702 )
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1703
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1704 (defun YaTeX-comment-region (alt-prefix)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1705 "Comment out region by '%'.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1706 If you call this function on the 'begin{}' or 'end{}' line,
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1707 it comments out whole environment"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1708 (interactive "P")
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1709 (if (not (YaTeX-on-begin-end-p))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1710 (comment-out-region
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1711 (if alt-prefix
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1712 (read-string "Insert prefix: ")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1713 YaTeX-comment-prefix))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1714 (YaTeX-comment-uncomment-env 'comment-out-region))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1715 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1716
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1717 (defun YaTeX-uncomment-region (alt-prefix)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1718 "Uncomment out region by '%'."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1719 (interactive "P")
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1720 (if (not (YaTeX-on-begin-end-p))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1721 (uncomment-region
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1722 (if alt-prefix (read-string "Remove prefix: ")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1723 YaTeX-comment-prefix)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1724 (region-beginning) (region-end) YaTeX-uncomment-once)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1725 (YaTeX-comment-uncomment-env 'uncomment-region))
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1726 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1727
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1728 (defun YaTeX-comment-uncomment-env (func)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1729 "Comment or uncomment out one LaTeX environment switching function by FUNC."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1730 (let (beg (p (point)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1731 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1732 (beginning-of-line)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1733 (setq beg (point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1734 (YaTeX-goto-corresponding-environment)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1735 (beginning-of-line)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1736 (if (> p (point)) (setq beg (1+ beg)) (forward-char 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1737 (funcall func YaTeX-comment-prefix beg (point) YaTeX-uncomment-once)))
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
1738 (message "%sommented out current environment."
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
1739 (if (eq func 'comment-region) "C" "Un-c"))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1740 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1741
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1742 (defun YaTeX-beginning-of-environment (&optional limit-search-bound end)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1743 "Goto the beginning of the current environment.
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1744 Optional argument LIMIT-SEARCH-BOUND non-nil limits the search bound to
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1745 most recent sectioning command. Non-nil for optional third argument END
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1746 goes to end of environment."
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1747 (interactive)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1748 (let ((op (point)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1749 (if (YaTeX-inner-environment limit-search-bound)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1750 (progn
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1751 (goto-char (get 'YaTeX-inner-environment 'point))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1752 (and end (YaTeX-goto-corresponding-environment))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1753 (if (interactive-p) (push-mark op))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1754 t)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1755 )
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1756
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1757 (defun YaTeX-end-of-environment (&optional limit-search-bound)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1758 "Goto the end of the current environment.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1759 Optional argument LIMIT-SEARCH-BOUND non-nil limits the search bound
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1760 to most recent sectioning command."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1761 (interactive)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1762 (YaTeX-beginning-of-environment limit-search-bound t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1763 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1764
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1765 (defun YaTeX-mark-environment ()
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1766 "Mark current position and move point to end of environment."
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1767 (interactive)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1768 (let ((curp (point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1769 (if (and (YaTeX-on-begin-end-p) (match-beginning 1)) ;if on \\begin
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1770 (forward-line 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1771 (beginning-of-line))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1772 (if (not (YaTeX-end-of-environment)) ;arg1 turns to match-beginning 1
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1773 (progn
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1774 (goto-char curp)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1775 (error "Cannot found the end of current environment."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1776 (YaTeX-goto-corresponding-environment)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1777 (beginning-of-line) ;for confirmation
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1778 (if (< curp (point))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1779 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1780 (message "Mark this environment?(y or n): ")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1781 (if (= (read-char) ?y) nil
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1782 (goto-char curp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1783 (error "Abort. Please call again at more proper position."))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1784 (set-mark-command nil)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1785 (YaTeX-goto-corresponding-environment)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1786 (end-of-line)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1787 (if (eobp) nil (forward-char 1))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1788 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1789
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1790 (defun YaTeX-comment-paragraph ()
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1791 "Comment out current paragraph."
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1792 (interactive)
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1793 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1794 (cond
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1795 ((YaTeX-on-begin-end-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1796 (beginning-of-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1797 (insert YaTeX-comment-prefix)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1798 (YaTeX-goto-corresponding-environment)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1799 (beginning-of-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1800 (insert YaTeX-comment-prefix))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1801 ((YaTeX-on-comment-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1802 (message "Already commented out."))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1803 (t
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1804 (mark-paragraph)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1805 (if (looking-at paragraph-separate) (forward-line 1))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1806 (comment-out-region "%"))))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1807 )
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1808
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1809 (defun YaTeX-uncomment-paragraph ()
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1810 "Uncomment current paragraph."
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1811 (interactive)
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1812 (save-excursion
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1813 (if (YaTeX-on-begin-end-p)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1814 (let ((p (make-marker)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1815 (set-marker p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1816 (YaTeX-goto-corresponding-environment)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1817 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1818 (goto-char (marker-position p))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1819 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1820 (if (YaTeX-on-comment-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1821 (let*((fill-prefix "")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1822 ;;append `^%' to head of paragraph delimiter.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1823 (paragraph-start
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1824 (concat
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1825 "^$\\|^%\\(" YaTeX-paragraph-delimiter "\\)"))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1826 (paragraph-separate paragraph-start))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1827 (mark-paragraph)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1828 (if (not (bobp)) (forward-line 1))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1829 (uncomment-region "%" nil nil YaTeX-uncomment-once))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1830 (message "This line is not a comment line."))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1831 )
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1832
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1833 (defun YaTeX-remove-prefix (prefix &optional once)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1834 "Remove prefix on current line as far as prefix detected. But
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1835 optional argument ONCE makes deletion once."
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1836 (interactive "sPrefix:")
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1837 (beginning-of-line)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1838 (while (re-search-forward (concat "^" prefix) (point-end-of-line) t)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1839 (replace-match "")
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1840 (if once (end-of-line)))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1841 )
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
1842
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1843 (defun YaTeX-kill-option-string ()
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1844 (if (and (eq predicate 'YaTeX-on-begin-end-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1845 (looking-at "\\(\\[.*\\]\\)*\\({.*}\\)*"))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1846 (delete-region (match-beginning 0) (match-end 0)))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1847 )
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1848
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1849 (defun YaTeX-kill-some-pairs (predicate gofunc kill-contents)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1850 "Kill some matching pair.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1851 This function assumes that pairs occupy each line where they resid."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1852 ;;(interactive)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1853 (if (not (funcall predicate)) nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1854 (let ((beg (make-marker)) (end (make-marker)) (p (make-marker)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1855 (set-marker end (match-end 0))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1856 (if (match-beginning 2)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1857 (set-marker beg (match-beginning 2))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1858 (set-marker beg (match-beginning 1))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1859 (goto-char (match-end 0))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1860 (YaTeX-kill-option-string))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1861 (save-excursion
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1862 (funcall gofunc)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1863 (delete-region (point-beginning-of-line) (match-end 0))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1864 (YaTeX-kill-option-string)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1865 (if (and (eolp) (not (eobp))) (delete-char 1))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1866 (set-marker p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1867 (goto-char beg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1868 (delete-region (point-beginning-of-line) end)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1869 (if (and (eolp) (not (eobp))) (delete-char 1))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1870 (if kill-contents (delete-region p (point))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1871 t))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1872 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1873
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1874 (defun YaTeX-kill-section-command (point kill-all)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1875 "Kill section-type command at POINT leaving its argument.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1876 Non-nil for the second argument kill its argument too."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1877 (let (beg (end (make-marker)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1878 (save-excursion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1879 (goto-char point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1880 (or (looking-at YaTeX-ec-regexp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1881 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1882 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1883 (forward-char -1)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1884 (setq beg (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1885 (skip-chars-forward "^{")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1886 (forward-list 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1887 (set-marker end (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1888 (if kill-all (delete-region beg end)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1889 (goto-char beg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1890 (delete-region
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1891 (point) (progn (skip-chars-forward "^{" end) (1+ (point))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1892 (goto-char end)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1893 (backward-delete-char 1))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1894 )
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1895
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1896 (defun YaTeX-kill-paren (kill-contents)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1897 "Kill parentheses leaving its contents.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1898 But kill its contents if the argument KILL-CONTENTS is non-nil."
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1899 (save-excursion
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1900 (let (p)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1901 (if (looking-at "\\s(\\|\\(\\s)\\)")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1902 (progn
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1903 (if (match-beginning 1)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1904 (up-list -1))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1905 (setq p (point))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1906 (forward-list 1)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1907 (if kill-contents (delete-region p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1908 (backward-delete-char 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1909 (goto-char p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1910 (if (looking-at
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1911 (concat "{" YaTeX-ec-regexp
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1912 YaTeX-command-token-regexp "+"
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1913 "\\s +"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1914 (delete-region
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1915 (point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1916 (progn (re-search-forward "\\s +" nil t) (point)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1917 (delete-char 1)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1918 t))))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1919 )
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1920
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1921 (defvar YaTeX-read-environment-history nil "Holds history of environments.")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1922 (put 'YaTeX-read-environment-history 'no-default t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1923 (defun YaTeX-read-environment (prompt &optional predicate must-match initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1924 "Read a LaTeX environment name with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1925 (YaTeX-sync-local-table 'tmp-env-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1926 (completing-read-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1927 prompt
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1928 (append tmp-env-table user-env-table env-table)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1929 predicate must-match initial
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1930 'YaTeX-read-environment-history)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1931 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1932
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1933 (defvar YaTeX-read-section-history nil "Holds history of section-types.")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1934 (put 'YaTeX-read-section-history 'no-default t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1935 (defun YaTeX-read-section (prompt &optional predicate initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1936 "Read a LaTeX section-type command with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1937 (YaTeX-sync-local-table 'tmp-section-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1938 (let ((minibuffer-completion-table
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1939 (append tmp-section-table user-section-table section-table)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1940 (read-from-minibuffer-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1941 prompt initial YaTeX-section-completion-map nil
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1942 'YaTeX-read-section-history))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1943 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1944
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1945 (defun YaTeX-read-section-with-overview ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1946 "Read sectioning command with overview.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1947 This function refers a local variable `source-window' in YaTeX-make-section"
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1948 (interactive)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1949 (require 'yatexsec) ;some case needs this
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1950 (if (> (minibuffer-depth) 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1951 (error "Too many minibuffer levels for overview."))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1952 (let ((sw (selected-window))(enable-recursive-minibuffers t) sect)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1953 (unwind-protect
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1954 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1955 (select-window source-window)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1956 (setq sect (YaTeX-read-section-in-minibuffer
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1957 "Sectioning(Up=C-p, Down=C-n, Help=?): "
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1958 YaTeX-sectioning-level (YaTeX-section-overview))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1959 (select-window sw))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1960 (if (eq (selected-window) (minibuffer-window))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1961 (erase-buffer))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1962 (insert sect)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1963 (exit-minibuffer)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1964 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1965 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1966
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1967 (defvar YaTeX-read-fontsize-history nil "Holds history of font designator.")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1968 (put 'YaTeX-read-fontsize-history 'no-default t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1969 (defun YaTeX-read-fontsize (prompt &optional predicate must-match initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1970 "Read a LaTeX font changing command with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1971 (YaTeX-sync-local-table 'tmp-fontsize-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1972 (completing-read-with-history
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1973 prompt (append tmp-fontsize-table user-fontsize-table fontsize-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1974 predicate must-match initial 'YaTeX-read-fontsize-history)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1975 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1976
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1977 (defun YaTeX-change-environment ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1978 "Change the name of environment."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1979 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1980 (if (not (YaTeX-on-begin-end-p)) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1981 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1982 (let (p env (m1 (match-beginning 1)) (m2 (match-beginning 2)))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1983 (setq env (if m1 (buffer-substring m1 (match-end 1))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1984 (buffer-substring m2 (match-end 2))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1985 (goto-char (match-beginning 0))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1986 (set-mark-command nil)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1987 (YaTeX-goto-corresponding-environment)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1988 (setq newenv (YaTeX-read-environment
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1989 (format "Change environment `%s' to: " env)))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1990 (cond
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1991 ((string= newenv "") (message "Change environment cancelled."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1992 ((string= newenv env) (message "No need to change."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1993 (t
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1994 (search-forward (concat "{" env) (point-end-of-line) t)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1995 (replace-match (concat "{" newenv))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1996 (exchange-point-and-mark)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1997 (search-forward (concat "{" env) (point-end-of-line) t)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1998 (replace-match (concat "{" newenv))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1999 t)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2000 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2001
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2002 (defun YaTeX-change-section ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2003 "Change section-type command."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2004 (interactive)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2005 (let*((where (YaTeX-on-section-command-p YaTeX-command-token-regexp))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2006 (p (point)) (cmd (YaTeX-match-string 1)) beg end old new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2007 (if (null where) nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2008 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2009
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2010 ((equal where 0);;if point is on section command
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2011 (setq beg (match-beginning 1)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2012 end (match-end 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2013 (goto-char beg) ;beginning of the command
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2014 (setq new (YaTeX-read-section (format "Change `%s' to: " cmd) nil)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2015
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2016 ((= where -1);;if point is on a optional parameter
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2017 (setq beg (match-beginning 2))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2018 (skip-chars-forward "^{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2019 (setq end (point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2020 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2021 (setq new
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2022 (if (fboundp (intern-soft (concat YaTeX-addin-prefix cmd)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2023 (YaTeX-addin cmd)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2024 (concat "["
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2025 (read-string (format "Change `%s' to: "
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2026 (buffer-substring
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2027 (1+ beg) (1- end))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2028 "]"))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2029
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2030 ((> where 0);;if point is in arguments' braces
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2031 (or (looking-at "{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2032 (progn (skip-chars-backward "^{") (forward-char -1)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2033 (setq beg (1+ (point)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2034 (forward-list 1)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2035 (forward-char -1)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2036 (setq end (point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2037 old (buffer-substring beg end))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2038 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2039 (if (> (length old) 40)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2040 (setq old (concat (substring old 0 12) "..." (substring old -12))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2041 (setq new
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2042 (if (intern-soft (concat "YaTeX::" cmd))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2043 (funcall (intern-soft (concat "YaTeX::" cmd)) where)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2044 (read-string (format "Change `%s' to: " old)))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2045 );cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2046 (delete-region beg end)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2047 (goto-char beg)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2048 (insert-before-markers new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2049 ;;(goto-char (marker-position p))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2050 new))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2051 )
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2052
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2053 (defun YaTeX-change-fontsize ()
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2054 "Change large-type command."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2055 (let ((lt (append tmp-fontsize-table user-fontsize-table fontsize-table))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2056 (p (point)) large old new beg end)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2057 ;;(and (looking-at "}") (up-list -1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2058 ;;(and (looking-at "{") (forward-char 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2059 ;;Is above convenient?
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2060 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2061 (or (looking-at YaTeX-ec-regexp)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2062 (progn
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2063 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2064 (forward-char -1)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2065 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2066 ((and
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2067 (looking-at
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2068 (concat YaTeX-ec-regexp "\\(" YaTeX-TeX-token-regexp "\\)"))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2069 (< p (match-end 0))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2070 (assoc (setq old (YaTeX-match-string 1)) lt))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2071 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2072 (setq beg (match-beginning 1) end (match-end 1) ;save match position
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2073 new (completing-read
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2074 (format "Change font/size `%s' to : " old) lt))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2075 (delete-region beg end)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2076 (goto-char beg)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2077 (insert-before-markers new)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2078 new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2079 (t nil)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2080 )))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2081 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2082
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2083 (defun YaTeX-change-math-image ()
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2084 "Change with image completion."
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2085 (let (maketitle memberp beg end)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2086 (if (and (YaTeX-on-maketitle-p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2087 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2088 (setq maketitle (substring (YaTeX-match-string 0) 1))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2089 (setq memberp (YaTeX-math-member-p maketitle))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2090 (let ((last-command-char (string-to-char (car memberp))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2091 (setq beg (match-beginning 0) end (match-end 0))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2092 (delete-region beg end)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2093 (YaTeX-math-insert-sequence t (cdr memberp))))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2094
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2095 (defun YaTeX-kill-* (&optional arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2096 "Parse current line and call suitable function.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2097 Non-nil for ARG kills its contents too."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2098 (interactive "P")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2099 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2100 ((YaTeX-kill-some-pairs 'YaTeX-on-begin-end-p
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2101 'YaTeX-goto-corresponding-environment arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2102 ((YaTeX-kill-some-pairs 'YaTeX-on-BEGIN-END-p
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2103 'YaTeX-goto-corresponding-BEGIN-END arg))
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
2104 ((YaTeX-on-section-command-p YaTeX-command-token-regexp);on any command
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2105 (YaTeX-kill-section-command (match-beginning 0) arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2106 ((YaTeX-kill-paren arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2107 (t (message "I don't know what to kill.")))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2108 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2109
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2110 (defun YaTeX-change-* ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2111 "Parse current line and call suitable function."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2112 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2113 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2114 ((YaTeX-change-environment))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2115 ((YaTeX-change-section))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2116 ((YaTeX-change-fontsize))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2117 ((YaTeX-change-math-image))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2118 (t (message "I don't know what to change.")))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2119 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2120
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2121 ;;;
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2122 ;Check availability of add-in functions
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2123 ;;;
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2124 (cond
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2125 ((featurep 'yatexadd) nil) ;Already provided.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2126 ((progn (load "yatexadd" t) (featurep 'yatexadd)) nil)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2127 (t (message "YaTeX add-in functions not supplied.")))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2128
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2129 (defun YaTeX-addin (name)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2130 "Check availability of addin function and call it if exists."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2131 (if (and (not (get 'YaTeX-generate 'disabled))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2132 (intern-soft (concat YaTeX-addin-prefix name))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2133 (fboundp (intern-soft (concat YaTeX-addin-prefix name))))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2134 (let ((s (funcall (intern (concat YaTeX-addin-prefix name)))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2135 (if (stringp s) s ""))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2136 "") ;Add in function is not bound.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2137 )
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2138
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2139 (defun YaTeX-on-item-p (&optional point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2140 "Return t if POINT (default is (point)) is on \\item."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2141 (let ((p (or point (point))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2142 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2143 (goto-char p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2144 (end-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2145 (setq p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2146 (re-search-backward YaTeX-paragraph-delimiter nil t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2147 (re-search-forward YaTeX-item-regexp p t)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2148 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2149
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2150 (defun YaTeX-in-verb-p (&optional point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2151 "Check if POINT is in verb or verb*. Default of POINT is (point)."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2152 (setq point (or point (point)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2153 (save-excursion
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2154 (goto-char point)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2155 (if (not (re-search-backward
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2156 (concat YaTeX-ec-regexp
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2157 "\\(" YaTeX-verb-regexp "\\)"
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2158 "\\([^-A-Za-z_*]\\)")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2159 (point-beginning-of-line) t))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2160 nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2161 (goto-char (match-end 2))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2162 (skip-chars-forward
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2163 (concat "^" (buffer-substring (match-beginning 2) (match-end 2))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2164 (and (< (match-beginning 2) point) (< (1- point) (point)))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2165 )
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2166
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2167 (defun YaTeX-literal-p (&optional point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2168 "Check if POINT is in verb or verb* or verbatime environment family.
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2169 Default of POINT is (point)."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2170 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2171 ((equal YaTeX-ec "\\") ;maybe LaTeX
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2172 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2173 (and point (goto-char point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2174 (or (YaTeX-in-verb-p (point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2175 (YaTeX-quick-in-environment-p YaTeX-verbatim-environments)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2176 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2177
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2178 (defun YaTeX-in-environment-p (env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2179 "Return if current LaTeX environment is ENV.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2180 ENV is given in the form of environment's name or its list."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2181 (let ((md (match-data)) (nest 0) p envrx)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2182 (cond
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2183 ((atom env)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2184 (setq envrx
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2185 (concat "\\("
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2186 (regexp-quote
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2187 (YaTeX-replace-format-args
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2188 YaTeX-struct-begin env "" ""))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2189 "\\)\\|\\("
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2190 (regexp-quote
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2191 (YaTeX-replace-format-args
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2192 YaTeX-struct-end env "" ""))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2193 "\\)"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2194 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2195 (setq p (catch 'open
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2196 (while (YaTeX-re-search-active-backward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2197 envrx YaTeX-comment-prefix nil t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2198 (if (match-beginning 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2199 (setq nest (1+ nest))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2200 (setq nest (1- nest)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2201 (if (< nest 0) (throw 'open t)))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2202 ((listp env)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2203 (setq p
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2204 (or (YaTeX-in-environment-p (car env))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2205 (and (cdr env) (YaTeX-in-environment-p (cdr env)))))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2206 (store-match-data md)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2207 p;(or p (YaTeX-in-verb-p (match-beginning 0)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2208 )
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2209 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2210
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2211 (defun YaTeX-quick-in-environment-p (env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2212 "Check quickly but unsure if current environment is ENV.
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2213 ENV is given in the form of environment's name or its list.
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2214 This function returns correct result only if ENV is NOT nested."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2215 (save-excursion
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2216 (let ((md (match-data)) (p (point)) rc clfound)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2217 (cond
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2218 ((listp env)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2219 (or (YaTeX-quick-in-environment-p (car env))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2220 (and (cdr env) (YaTeX-quick-in-environment-p (cdr env)))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2221 (t
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2222 (if (YaTeX-search-active-backward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2223 (YaTeX-replace-format-args YaTeX-struct-begin env "" "")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2224 YaTeX-comment-prefix nil t)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2225 (setq rc (not (YaTeX-search-active-forward
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2226 (YaTeX-replace-format-args
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2227 YaTeX-struct-end env)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2228 YaTeX-comment-prefix p t nil))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2229 (store-match-data md)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2230 rc))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2231 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2232
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2233 ;; Filling \item
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2234 (defun YaTeX-remove-trailing-comment (start end)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2235 "Remove trailing comment from START to end."
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2236 (save-excursion
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2237 (let ((trcom (concat YaTeX-comment-prefix "+$")))
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2238 (goto-char start)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2239 (while (re-search-forward trcom end t)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
2240 (if (/= (char-after (1- (match-beginning 0))) ?\\ )
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
2241 (replace-match "")))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2242 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2243
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2244 (defun YaTeX-get-item-info (&optional recent thisenv)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2245 "Return the list of the beginning of \\item and column of its item.
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2246 If it seems to be outside of itemizing environment, just return nil.
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2247 Non-nil for optional argument RECENT refers recent \\item.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2248 Optional second argument THISENV omits calling YaTeX-inner-environment."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2249 (save-excursion
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2250 (let* ((p (point)) env e0 c
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2251 (bndry (and (setq env (or thisenv (YaTeX-inner-environment t)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2252 (get 'YaTeX-inner-environment 'point)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2253 )))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2254 (end-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2255 (if (if recent
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2256 (YaTeX-re-search-active-backward
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2257 YaTeX-item-regexp YaTeX-comment-prefix bndry t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2258 (goto-char bndry)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2259 (YaTeX-re-search-active-forward
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2260 YaTeX-item-regexp YaTeX-comment-prefix p t))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2261 (progn
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2262 (goto-char (match-end 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2263 ;(setq c (current-column))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2264 (if (string-match "desc" env)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2265 (setq c 6)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2266 (if (equal (following-char) ?\[) (forward-list 1))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2267 (setq c 0))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2268 (skip-chars-forward " \t" (point-end-of-line))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2269 (list (point-beginning-of-line) (+ c (current-column)))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2270 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2271
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2272 (defun YaTeX-fill-item ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2273 "Fill item in itemize environment."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2274 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2275 (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2276 (let* ((p (point))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2277 (item-term (concat
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2278 "\\(^[ \t]*$\\)\\|" YaTeX-item-regexp "\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2279 YaTeX-ec-regexp "\\(begin\\|end\\)\\)"))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2280 ;;This value depends on LaTeX.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2281 fill-prefix start col
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2282 (info (YaTeX-get-item-info t)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2283 (if (null info) nil ;not on \item, do nothing
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2284 (setq start (car info)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2285 col (car (cdr info)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2286 (save-excursion
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2287 (if (re-search-backward "^\\s *$" start t)
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2288 ;;if separated from \item line, isolate this block
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2289 (progn
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2290 (setq start (1+ (match-end 0)))
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2291 (goto-char start)
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2292 (skip-chars-forward " \t")
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2293 (delete-region (point) start) ;is this your favor???
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2294 (indent-to col))))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2295 (beginning-of-line)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2296 (if (<= (save-excursion
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2297 (re-search-forward
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2298 (concat "\\\\end{\\|\\\\begin{\\|^[ \t]*$") nil t)
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2299 (match-beginning 0))
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2300 p)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2301 (progn (message "Not on itemize.") nil)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2302 (end-of-line)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2303 (newline)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2304 (indent-to col)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2305 (setq fill-prefix
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2306 (buffer-substring (point-beginning-of-line)(point)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2307 (beginning-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2308 (delete-region (point) (progn (forward-line 1) (point)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2309 (re-search-forward item-term nil 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2310 (YaTeX-remove-trailing-comment start (point))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2311 (beginning-of-line)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2312 (push-mark (point) t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2313 (goto-char start)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2314 (forward-line 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2315 (while (< (point) (mark))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2316 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2317 (forward-line 1))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2318 (fill-region-as-paragraph start (mark))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2319 (if NTT-jTeX
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2320 (while (progn(forward-line -1)(end-of-line) (> (point) start))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2321 (insert ?%)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2322 (pop-mark)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2323 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2324
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2325 (defun YaTeX-fill-paragraph (arg)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2326 "YaTeX adjustment function for fill-paragraph.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2327 *Protect \\verb from unexpected broken up."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2328 (interactive "P")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2329 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2330 ((not (eq major-mode 'yatex-mode)) (fill-paragraph arg))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2331 ((YaTeX-quick-in-environment-p YaTeX-fill-inhibit-environments) nil)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2332 (t
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2333 (save-excursion
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2334 (let ((verbrex (concat YaTeX-ec-regexp
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2335 "\\(" YaTeX-verb-regexp "\\)" ;match#1
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2336 "\\(.\\).*\\(\\2\\)")) ;match #2 and #3
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2337 (p (point)) ii end poslist spacelist (fill-prefix fill-prefix))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2338 (cond
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2339 ((save-excursion (beginning-of-line) ;if point is on the first
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2340 (setq end (point)) ;non-whitespace char
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2341 (skip-chars-forward " \t")
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2342 (equal (point) p))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2343 (setq fill-prefix (buffer-substring p end)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2344 ((and ;;(not YaTeX-emacs-19)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2345 (string-match YaTeX-itemizing-env-regexp
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2346 (or (YaTeX-inner-environment t) "document"))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2347 (setq ii (YaTeX-get-item-info)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2348 (save-excursion
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2349 (beginning-of-line)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2350 (indent-to-column (car (cdr ii)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2351 (setq fill-prefix
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2352 (buffer-substring (point) (point-beginning-of-line)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2353 (delete-region (point) (progn (beginning-of-line) (point))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2354 (mark-paragraph)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2355 (save-restriction
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2356 (narrow-to-region (region-beginning) (region-end))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2357 (YaTeX-remove-trailing-comment (point-min) (point-max))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2358 (goto-char (point-min))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2359 (while (YaTeX-re-search-active-forward
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2360 verbrex YaTeX-comment-prefix (point-max) t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2361 (setq end (match-beginning 3))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2362 (goto-char (match-beginning 2))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2363 (while (re-search-forward "\\s " end t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2364 (setq poslist (cons (make-marker) poslist)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2365 spacelist (cons (preceding-char) spacelist))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2366 (replace-match "_")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2367 (set-marker (car poslist) (match-beginning 0))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2368 ;;(fill-paragraph arg)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2369 (fill-region-as-paragraph (point-min) (point-max) arg)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2370 (while spacelist
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2371 (goto-char (marker-position (car poslist)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2372 (delete-char 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2373 (insert (car spacelist))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2374 (setq spacelist (cdr spacelist) poslist (cdr poslist)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2375 (goto-char (point-min))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2376 (forward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2377 (beginning-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2378 (if (and NTT-jTeX (looking-at "[ \t]"))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2379 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2380 (goto-char (point-min))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2381 (while (not (eobp))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2382 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2383 (or (bolp)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2384 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2385 (backward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2386 (looking-at "\\sw+")) ;is not japanese string
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2387 (progn (setq p (point)) (insert ?%)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2388 (forward-line 1))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2389 (goto-char p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2390 (delete-char 1) ;remove last inserted `%'
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2391 )))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2392 )
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2393
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2394 (if (fboundp 'YaTeX-saved-indent-new-comment-line) nil
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2395 (fset 'YaTeX-saved-indent-new-comment-line
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2396 (symbol-function 'indent-new-comment-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2397 (fset 'indent-new-comment-line 'YaTeX-indent-new-comment-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2398
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2399 (defun YaTeX-indent-new-comment-line (&optional soft)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2400 "Tuned `indent-new-comment-line' function for yatex.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2401 See the documentation of `YaTeX-saved-indent-new-comment-line'."
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2402 (cond
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2403 ((or (not (eq major-mode 'yatex-mode))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2404 (string-match
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2405 "document"
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2406 (or (and (boundp 'inenv) inenv)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2407 (or (YaTeX-inner-environment t) "document"))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2408 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft))))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2409 (t (let (fill-prefix)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2410 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft)))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2411
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2412 (defun YaTeX-fill-* ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2413 "Fill paragraph according to its condition."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2414 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2415 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2416 ((YaTeX-fill-item))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2417 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2418 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2419
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2420 ;; Accent completion
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2421 (defun YaTeX-read-accent-char (x)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2422 "Read char in accent braces."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2423 (let ((c (read-char)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2424 (concat
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2425 (if (and (or (= c ?i) (= c ?j))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2426 (not (string-match (regexp-quote x) "cdb")))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2427 "\\" "")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2428 (char-to-string c)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2429 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2430
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2431 (defun YaTeX-make-accent ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2432 "Make accent usage."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2433 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2434 (message "1:` 2:' 3:^ 4:\" 5:~ 6:= 7:. u v H t c d b")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2435 (let ((c (read-char))(case-fold-search nil))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2436 (setq c (cond ((and (> c ?0) (< c ?8))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2437 (substring "`'^\"~=." (1- (- c ?0)) (- c ?0)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2438 ((= c ?h) "H")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2439 (t (char-to-string c))))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2440 (if (not (string-match c "`'^\"~=.uvHtcdb")) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2441 (insert "\\" c "{}")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2442 (backward-char 1)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2443 (insert (YaTeX-read-accent-char c))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2444 (if (string= c "t") (insert (YaTeX-read-accent-char c)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2445 (forward-char 1)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2446 )
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2447
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2448 ;; Indentation
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2449 (defun YaTeX-current-indentation ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2450 "Return the indentation of current environment."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2451 (save-excursion
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2452 ;;(beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2453 (if (YaTeX-beginning-of-environment t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2454 (goto-char (get 'YaTeX-inner-environment 'point))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2455 (forward-line -1)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2456 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2457 (skip-chars-forward " \t"))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2458 (current-column))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2459 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2460
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2461 (defun YaTeX-previous-line-indentation ()
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2462 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2463 (forward-line -1)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2464 (skip-chars-forward " \t")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2465 (current-column)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2466
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2467 (defun YaTeX-reindent (col)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2468 "Remove current indentation and reindento to COL column."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2469 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2470 (beginning-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2471 (skip-chars-forward " \t")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2472 (if (/= col (current-column))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2473 (progn
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2474 (delete-region (point) (progn (beginning-of-line) (point)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2475 (indent-to col))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2476 (skip-chars-forward " \t" (point-end-of-line)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2477
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2478 (defun YaTeX-indent-line ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2479 "Indent corrent line referrin current environment."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2480 (interactive)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2481 (let ((indent-relative
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2482 (function
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2483 (lambda (&optional additional)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2484 (YaTeX-reindent
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2485 (+ (YaTeX-current-indentation)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2486 (or additional 0)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2487 YaTeX-environment-indent)))))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2488 depth iteminfo (p (point)) pp (peol (point-end-of-line))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2489 ;;inenv below is sometimes defined in YaTeX-indent-new-comment-line
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2490 (inenv (or (and (boundp 'inenv) inenv) (YaTeX-inner-environment t))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2491 ;;(if NTT-jTeX ;;Do you need this section?
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2492 ;; (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2493 ;; (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2494 ;; (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2495 ;; (forward-line -1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2496 ;; (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2497 ;; (or (= p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2498 ;; (progn (backward-char (length YaTeX-comment-prefix))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2499 ;; (not (looking-at (regexp-quote YaTeX-comment-prefix))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2500 ;; (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2501 ;; (skip-chars-backward YaTeX-comment-prefix)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2502 ;; (kill-line))))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2503 (or inenv (setq inenv "document")) ;is the default environment
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2504 (cond
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2505 ((and (YaTeX-on-begin-end-p) (match-beginning 2)) ;if \end
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2506 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2507 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2508 (YaTeX-reindent (YaTeX-current-indentation))))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2509 ((string-match YaTeX-equation-env-regexp inenv)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2510 (YaTeX-indent-line-equation)) ;autoload-ed from yatex.env
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2511 (;(YaTeX-in-environment-p '("itemize" "enumerate" "description" "list"))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2512 (string-match YaTeX-itemizing-env-regexp inenv)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2513 ;;(YaTeX-on-item-p) ??
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2514 ;;(setq iteminfo (YaTeX-get-item-info t))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2515 (if (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2516 (beginning-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2517 (re-search-forward YaTeX-item-regexp peol t))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2518 (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2519 (goto-char (1+ (match-beginning 0)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2520 (setq depth
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2521 (* YaTeX-environment-indent
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2522 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2523 ((looking-at "subsubsub") 3)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2524 ((looking-at "subsub") 2)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2525 ((looking-at "sub") 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2526 (t 0))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2527 (funcall indent-relative depth))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2528 (YaTeX-reindent (or (car (cdr (YaTeX-get-item-info nil inenv)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2529 (+ (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2530 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2531 (YaTeX-current-indentation))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2532 YaTeX-environment-indent))))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2533 )
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2534 ((YaTeX-literal-p) ;verbatims
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2535 (tab-to-tab-stop))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2536 ((and inenv (not (equal "document" inenv)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2537 (funcall indent-relative))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2538 ((YaTeX-on-section-command-p YaTeX-sectioning-regexp)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2539 (require 'yatexsec) ;to know YaTeX-sectioning-level
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2540 (YaTeX-reindent
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2541 (* (max
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2542 (1- ;I want chapter to have indentation 0
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2543 (or (cdr (assoc (YaTeX-match-string 1) YaTeX-sectioning-level))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2544 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2545 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2546 YaTeX-environment-indent)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2547 ;;Default movement
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2548 ((and (bolp) fill-prefix) (insert fill-prefix))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2549 (t (save-excursion
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2550 (beginning-of-line)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2551 (skip-chars-forward " \t")
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2552 (indent-relative-maybe))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2553 (skip-chars-forward " \t")))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2554 ;;if current line is \begin, re-indent \end too
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2555 (if (and (YaTeX-on-begin-end-p) (match-beginning 1))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2556 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2557 ;;(beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2558 ;;(search-forward "\\begin")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2559 (goto-char (match-beginning 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2560 (setq depth (current-column))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2561 (YaTeX-goto-corresponding-environment)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2562 (YaTeX-reindent depth)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2563 (if (and NTT-jTeX
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2564 (save-excursion (beginning-of-line) (looking-at "[ \t]")))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2565 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2566 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2567 (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2568 (forward-line -1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2569 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2570 (or (= p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2571 (looking-at (regexp-quote YaTeX-comment-prefix))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2572 (bobp) (bolp)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2573 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2574 (backward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2575 (looking-at "\\sw+")) ;is not japanese string
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2576 (insert YaTeX-comment-prefix))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2577 )
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2578
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2579 (defun YaTeX-local-table-symbol (symbol)
36
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
2580 "Return the lisp symbol which keeps local completion table of SYMBOL."
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2581 (intern (concat "YaTeX$"
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2582 default-directory
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2583 (symbol-name symbol)))
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2584 )
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2585
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2586 (defun YaTeX-sync-local-table (symbol)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2587 "Synchronize local variable SYMBOL.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2588 Copy its corresponding directory dependent completion table to SYMBOL."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2589 (if (boundp (YaTeX-local-table-symbol symbol))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2590 (set symbol (symbol-value (YaTeX-local-table-symbol symbol))))
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2591 )
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2592
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2593 (defun YaTeX-read-user-completion-table (&optional forcetoread)
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2594 "Append user completion table of LaTeX macros"
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2595 (let*((user-table (expand-file-name YaTeX-user-completion-table))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2596 (local-table (expand-file-name (file-name-nondirectory user-table)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2597 var localvar localbuf (curbuf (current-buffer)) sexp)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2598 (if YaTeX-user-table-is-read nil
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2599 (message "Loading user completion table")
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2600 (if (file-exists-p user-table) (load-file user-table)
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
2601 (message "Personal completion table not found.")))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2602 (setq YaTeX-user-table-is-read t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2603 (cond
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2604 ((file-exists-p local-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2605 (set-buffer (setq localbuf (find-file-noselect local-table)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2606 (widen)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2607 (goto-char (point-min))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2608 (while (re-search-forward "(setq \\([^ ]+\\)" nil t)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2609 (setq var (intern (buffer-substring
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2610 (match-beginning 1) (match-end 1)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2611 localvar (YaTeX-local-table-symbol var))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2612 (goto-char (match-beginning 0))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2613 (setq sexp (buffer-substring (point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2614 (progn (forward-sexp) (point))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2615 (set-buffer curbuf)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2616 (or (assq var (buffer-local-variables)) (make-local-variable var))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2617 (eval (read sexp))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2618 (or (and (boundp localvar)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2619 (symbol-value localvar)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2620 (not forcetoread))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2621 (set localvar (symbol-value var)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2622 (set-buffer localbuf))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2623 (kill-buffer localbuf)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2624 (set-buffer curbuf))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2625 )
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2626
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2627 (defun YaTeX-reload-dictionary ()
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2628 "Reload local dictionary.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2629 Use this function after editing ./.yatexrc."
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2630 (interactive)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2631 (let ((YaTeX-user-table-is-read nil))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2632 (YaTeX-read-user-completion-table t))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2633 )
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2634
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2635 (defun YaTeX-lookup-table (word type)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2636 "Lookup WORD in completion table whose type is TYPE.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2637 This function refers the symbol tmp-TYPE-table, user-TYPE-table, TYPE-table.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2638 Typically, TYPE is one of 'env, 'section, 'fontsize, 'singlecmd."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2639 (if (symbolp type) (setq type (symbol-name type)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2640 (or (assoc word (symbol-value (intern (concat "tmp-" type "-table"))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2641 (assoc word (symbol-value (intern (concat "user-" type "-table"))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2642 (assoc word (symbol-value (intern (concat type "-table"))))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2643
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2644 (defun YaTeX-update-table (vallist default-table user-table local-table)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2645 "Update completion table if the car of VALLIST is not in current tables.
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2646 Second argument DEFAULT-TABLE is the quoted symbol of default completion
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2647 table, third argument USER-TABLE is user table which will be saved in
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2648 YaTeX-user-completion-table, fourth argument LOCAL-TABLE should have the
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2649 completion which is valid during current Emacs's session. If you
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2650 want to make LOCAL-TABLE valid longer span (but restrict in this directory)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2651 create the file in current directory which has the same name with
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2652 YaTeX-user-completion-table."
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2653 (let ((car-v (car vallist)) key answer
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2654 (file (file-name-nondirectory YaTeX-user-completion-table)))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2655 (cond
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2656 ((assoc car-v (symbol-value default-table))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2657 nil) ;Nothing to do
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2658 ((setq key (assoc car-v (symbol-value user-table)))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2659 (if (equal (cdr vallist) (cdr key)) nil
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2660 ;; if association hits, but contents differ.
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2661 (message
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2662 "%s's attributes turned into %s" (car vallist) (cdr vallist))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2663 (set user-table (delq key (symbol-value user-table)))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2664 (set user-table (cons vallist (symbol-value user-table)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2665 (YaTeX-update-dictionary
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2666 YaTeX-user-completion-table user-table "user")))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2667 ((setq key (assoc car-v (symbol-value local-table)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2668 (if (equal (cdr vallist) (cdr key)) nil
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2669 (message
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2670 "%s's attributes turned into %s" (car vallist) (cdr vallist))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2671 (set local-table (delq key (symbol-value local-table)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2672 (set local-table (cons vallist (symbol-value local-table)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2673 (set (YaTeX-local-table-symbol local-table) (symbol-value local-table))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2674 (YaTeX-update-dictionary file local-table)))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2675 ;; All of above cases, there are some completion in tables.
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2676 ;; Then update tables.
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2677 (t
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2678 (if (not YaTeX-nervous)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2679 (setq answer "u")
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2680 (message
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2681 "`%s' is not in table. Register into: U)serDic L)ocalDic N)one D)iscard"
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2682 (car vallist))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2683 (setq answer (char-to-string (read-char))))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2684 (cond
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2685 ((string-match answer "uy")
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2686 (set user-table (cons vallist (symbol-value user-table)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2687 (YaTeX-update-dictionary YaTeX-user-completion-table user-table "user")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2688 )
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2689 ((string-match answer "tl")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2690 (set local-table (cons vallist (symbol-value local-table)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2691 (set (YaTeX-local-table-symbol local-table) (symbol-value local-table))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2692 (YaTeX-update-dictionary file local-table))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2693 ((string-match answer "d") nil) ;discard it
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2694 (t (set default-table
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2695 (cons vallist (symbol-value default-table))))))))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2696 )
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2697
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2698 (defun YaTeX-cplread-with-learning
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2699 (prom default-table user-table local-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2700 &optional pred reqmatch init hsym)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2701 "Completing read with learning.
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2702 Do a completing read with prompt PROM. Completion table is what
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2703 DEFAULT-TABLE, USER-TABLE, LOCAL table are appended in reverse order.
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2704 Note that these tables are passed by the symbol.
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2705 Optional arguments PRED, REQMATH and INIT are passed to completing-read
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2706 as its arguments PREDICATE, REQUIRE-MATCH and INITIAL-INPUT respectively.
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2707 If optional 8th argument HSYM, history symbol, is passed, use it as
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2708 history list variable."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2709 (YaTeX-sync-local-table local-table)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2710 (let*((table (append (symbol-value local-table)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2711 (symbol-value user-table)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2712 (symbol-value default-table)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2713 (word (completing-read-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2714 prom table pred reqmatch init hsym)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2715 (if (and (string< "" word) (not (assoc word table)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2716 (YaTeX-update-table (list word) default-table user-table local-table))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2717 word)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2718 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
2719
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2720 (defun YaTeX-update-dictionary (file symbol &optional type)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2721 (let ((local-table-buf (find-file-noselect file))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2722 (name (symbol-name symbol))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2723 (value (symbol-value symbol)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2724 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2725 (message "Updating %s dictionary..." (or type "local"))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2726 (set-buffer local-table-buf)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2727 (goto-char (point-max))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2728 (search-backward (concat "(setq " name) nil t)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2729 (delete-region (point) (progn (forward-sexp) (point)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2730 (delete-blank-lines)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2731 (insert "(setq " name " '(\n")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2732 (mapcar '(lambda (s)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2733 (insert (format "%s\n" (prin1-to-string s))))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2734 value)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2735 (insert "))\n\n")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2736 (delete-blank-lines)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2737 (basic-save-buffer)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2738 (kill-buffer local-table-buf)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2739 (message "Updating %s dictionary...Done" (or type "local"))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
2740 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
2741
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2742 ;; --------------- General sub functions ---------------
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2743 (defun point-beginning-of-line ()
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2744 (save-excursion (beginning-of-line)(point))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2745 )
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2746
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2747 (defun point-end-of-line ()
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2748 (save-excursion (end-of-line)(point))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2749 )
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2750
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2751
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2752 (provide 'yatex)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2753 (defvar yatex-mode-load-hook nil
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2754 "*List of functions to be called when yatex.el is loaded.")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2755 (if (and YaTeX-emacs-19 window-system (not (featurep 'yatex19)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2756 (load "yatex19"))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2757 (load "yatexhks" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2758
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2759 ;;-------------------- Final hook jobs --------------------
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2760 (substitute-all-key-definition
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2761 'fill-paragraph 'YaTeX-fill-paragraph YaTeX-mode-map)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2762 (run-hooks 'yatex-mode-load-hook)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2763
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2764 ;; `History' was moved to ChangeLog
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
2765 ;----------------------------- End of yatex.el -----------------------------

yatex.org