annotate yatex.el @ 364:d69fd7b1ac4d dev yatex-1.78

yatex-1.78
author HIROSE Yuuji <yuuji@gentei.org>
date Fri, 26 Dec 2014 01:02:52 +0900
parents b1e6c8c03253
children 77a2fd4fd634
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
286
bf201e406e3f First line header changed.
HIROSE Yuuji <yuuji@gentei.org>
parents: 285
diff changeset
1 ;;; yatex.el --- Yet Another tex-mode for emacs //–ì’¹// -*- coding: sjis -*-
313
HIROSE Yuuji <yuuji@gentei.org>
parents: 312
diff changeset
2 ;;; (c)1991-2014 by HIROSE Yuuji.[yuuji@yatex.org]
362
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
3 ;;; Last modified Fri Dec 26 00:04:43 2014 on firestorm
364
d69fd7b1ac4d yatex-1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 362
diff changeset
4 ;;; $Id: yatex.el,v 1.78 2014/12/25 15:11:02 yuuji Rel $
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
5 ;;; The latest version of this software is always available at;
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
6 ;;; http://www.yatex.org/
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
7
286
bf201e406e3f First line header changed.
HIROSE Yuuji <yuuji@gentei.org>
parents: 285
diff changeset
8 ;;; Code:
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
9 (require 'comment)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
10 (require 'yatexlib)
362
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
11 (defconst YaTeX-revision-number "1.78"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
12 "Revision number of running yatex.el")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
13
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
14 ;---------- Local variables ----------
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
15 (defvar YaTeX-prefix "\C-c"
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
16 "*Prefix key to call YaTeX functions.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
17 You can select favorite prefix key by setq in your ~/.emacs.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
18
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
19 (defvar YaTeX-environment-indent 1
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
20 "*Indentation depth at column width in LaTeX environments.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
21
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
22 (defvar YaTeX-fill-prefix nil
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
23 "*fill-prefix used for auto-fill-mode.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
24 The default value is nil.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
25
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
26 (defvar YaTeX-fill-column 72
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
27 "*fill-column used for auto-fill-mode.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
28
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
29 (defvar YaTeX-comment-prefix "%"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
30 "TeX comment prefix.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
31
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
32 (defvar YaTeX-current-position-register ?3
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
33 "*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
34 All of YaTeX completing input store the current position into
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
35 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
36 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
37 return to the editing paragraph by calling register-to-point with argument
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
38 YaTeX-current-position-register.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
39
286
bf201e406e3f First line header changed.
HIROSE Yuuji <yuuji@gentei.org>
parents: 285
diff changeset
40 (defvar YaTeX-use-LaTeX2e t "*Use LaTeX2e or not. Nil means latex 2.09")
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
41
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
42 (defvar tex-command
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
43 (cond
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
44 (YaTeX-use-LaTeX2e "platex")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
45 (YaTeX-japan "jlatex")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
46 (t "latex"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
47 "*Default command for typesetting LaTeX text.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
48
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
49 (defvar bibtex-command (if YaTeX-japan "jbibtex" "bibtex")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
50 "*Default command of BibTeX.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
51
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
52 (defvar dvi2-command ;previewer command for your site
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
53 (if YaTeX-dos "dviout -wait=0"
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
54 "xdvi -geo +0+0 -s 4")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
55 "*Default previewer command including its option.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
56 This default value is for X window system.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
57
334
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
58 (defvar YaTeX-cmd-gimp "gimp")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
59 (defvar YaTeX-cmd-tgif "tgif")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
60 (defvar YaTeX-cmd-inkscape "inkscape")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
61 (defvar YaTeX-cmd-dia "dia")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
62 (defvar YaTeX-cmd-ooo "soffice")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
63 (defvar YaTeX-cmd-gs "gs")
362
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
64 (defvar YaTeX-cmd-dvips "dvips") ;Set "pdvips" for Vine Linux
361
41a05a44826a [pdftex] option for pdflatex
HIROSE Yuuji <yuuji@gentei.org>
parents: 360
diff changeset
65 (defvar YaTeX-cmd-displayline
41a05a44826a [pdftex] option for pdflatex
HIROSE Yuuji <yuuji@gentei.org>
parents: 360
diff changeset
66 "/Applications/Skim.app/Contents/SharedSupport/displayline")
334
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
67 (defvar YaTeX-cmd-edit-ps YaTeX-cmd-gimp)
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
68 (defvar YaTeX-cmd-edit-pdf YaTeX-cmd-ooo)
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
69 (defvar YaTeX-cmd-edit-ai YaTeX-cmd-inkscape)
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
70 (defvar YaTeX-cmd-edit-svg YaTeX-cmd-inkscape)
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
71 (defvar YaTeX-cmd-edit-images YaTeX-cmd-gimp)
362
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
72 (defvar YaTeX-cmd-view-images "display -geometry +0+0")
334
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
73
327
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
74 (defvar tex-pdfview-command ;previewer command for your site
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
75 (cond
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
76 (YaTeX-dos "acroread")
361
41a05a44826a [pdftex] option for pdflatex
HIROSE Yuuji <yuuji@gentei.org>
parents: 360
diff changeset
77 (YaTeX-macos (cond
41a05a44826a [pdftex] option for pdflatex
HIROSE Yuuji <yuuji@gentei.org>
parents: 360
diff changeset
78 ((file-executable-p YaTeX-cmd-displayline) "open -a Skim")
41a05a44826a [pdftex] option for pdflatex
HIROSE Yuuji <yuuji@gentei.org>
parents: 360
diff changeset
79 (t "open")))
327
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
80 (t "evince"))
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
81 "*Default PDF viewer command including its option.")
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
82
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
83 (defvar makeindex-command (if YaTeX-dos "makeind" "makeindex")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
84 "*Default makeindex command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
85
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
86 (defvar dviprint-command-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
87 (if YaTeX-dos "dviprt %s %f%t"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
88 "dvi2ps %f %t %s | lpr")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
89 "*Command line string to print out current file.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
90 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
91 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
92 %f and %t.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
93 See also documentation of dviprint-from-format and dviprint-to-format.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
94
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
95 (defvar dviprint-from-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
96 (if YaTeX-dos "%b-" "-f %b")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
97 "*`From' page format of dvi filter. %b will turn to beginning page number.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
98
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
99 (defvar dviprint-to-format
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
100 (if YaTeX-dos "%e" "-t %e")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
101 "*`To' page format of dvi filter. %e will turn to end page number.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
102
123
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
103 (defvar YaTeX-dvipdf-command
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
104 "dvipdfmx"
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
105 "*Command name to convert dvi file to PDF.")
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
106
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
107 (defvar YaTeX-default-document-style
347
85737ee595a2 `jsarticle' as default
HIROSE Yuuji <yuuji@gentei.org>
parents: 345
diff changeset
108 (concat (if YaTeX-japan "js") "article")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
109 "*Default LaTeX Documentstyle for YaTeX-typeset-region.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
110
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
111 (defvar YaTeX-need-nonstop nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
112 "*T for adding `\\nonstopmode{}' to text before invoking latex command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
113
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
114 (defvar latex-warning-regexp "line.* [0-9]*"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
115 "*Regular expression of line number of warning message by latex command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
116
0
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
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
120 LaTeX source text.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
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
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
131 process.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
132
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
133 (defvar NTT-jTeX nil
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
134 "*T for using NTT-jTeX for latex command.
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
135 More precisely, setting t to this variables inhibits inter-word break on
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
136 typeset document by line-break of source text. That is, YaTeX automatically
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
137 put % after each line at filling.
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
138 ‰üs+ƒCƒ“ƒfƒ“ƒg‚É‚æ‚Á‚ÄAƒ^ƒCƒvƒZƒbƒgŒã‚ÌŽšŠÔ‚ª‹ó‚¢‚Ä‚µ‚Ü‚¤‚Ì‚ð—}§‚·‚éꇂÉ
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
139 t‚É‚·‚é(ŒÃ‚¢NTT-jTeX‚ÅŒ°’˜‚ÉŒ»‚ê‚é)B‹ï‘Ì“I‚É‚ÍAfill‚·‚é‚Æ‚«‚ÉŠes‚ÌI‚í‚è‚É
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
140 %‚ð•t‰Á‚·‚éB")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
141
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
142
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
143 (defvar YaTeX-item-regexp
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
144 (concat (regexp-quote "\\") "\\(sub\\|bib\\)*item")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
145 "*Regular expression of item command.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
146
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
147 (defvar YaTeX-sectioning-regexp
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
148 "\\(part\\|chapter\\*?\\|\\(sub\\)*\\(section\\|paragraph\\)\\)\\(\\*\\|\\b\\)"
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
149 "*LaTeX sectioning commands regexp.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
150
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
151 (defvar YaTeX-paragraph-start
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
152 (concat "^[ \t]*%\\|^[ \t]*$\\|\\'\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
153 YaTeX-sectioning-regexp ;sectioning commands
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
154 "\\|[A-z]*item\\|begin{\\|end{" ;special declaration
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
155 "\\|\\[\\|\\]"
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
156 "\\|newpage\\b\\|vspace\\b"
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
157 "\\)")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
158 "*Paragraph starting regexp of common LaTeX source. Use this value
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
159 for YaTeX-uncomment-paragraph.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
160
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
161 (defvar YaTeX-paragraph-separate
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
162 (concat "^[ \t]*%\\|^[ \t]*$\\|^\C-l\\|\\\\\\\\$\\|^[ \t]*\\\\\\("
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
163 YaTeX-sectioning-regexp ;sectioning commands
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
164 "\\|begin{\\|end{" ;special declaration
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
165 "\\|\\[\\|\\]"
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
166 "\\|newpage\\b\\|vspace\\b"
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
167 "\\)")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
168 "*Paragraph delimiter regexp of common LaTeX source. Use this value
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
169 for YaTeX-uncomment-paragraph.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
170
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
171 (defvar YaTeX-verbatim-environments
177
9c5a764a871f Treat `alltt' in YaTeX-verbatim-environments.
yuuji@gentei.org
parents: 176
diff changeset
172 '("verbatim" "verbatim*" "alltt")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
173 "*Assume these environments of this variable disable LaTeX commands.")
177
9c5a764a871f Treat `alltt' in YaTeX-verbatim-environments.
yuuji@gentei.org
parents: 176
diff changeset
174 (defvar YaTeX-verb-regexp "verb\\*?\\|path"
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
175 "*Regexp of verb family. Do not contain preceding \\\\ nor \\(\\).")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
176 (defvar YaTeX-fill-inhibit-environments
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
177 (append '("tabular" "tabular*" "array" "picture" "eqnarray" "eqnarray*"
307
326bd21ad995 Add 'longtable to array like environment
HIROSE Yuuji <yuuji@gentei.org>
parents: 294
diff changeset
178 "longtable"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
179 "equation" "equation*" "math" "displaymath")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
180 YaTeX-verbatim-environments)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
181 "*In these environments, YaTeX inhibits fill-paragraph from formatting.
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
182 Define those environments as a form of list.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
183
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
184 (defvar YaTeX-itemizing-env-regexp
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
185 "itemize\\|enumerate\\|description\\|list\\|thebibliography"
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
186 "*Regexp of itemizing environments")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
187 (defvar YaTeX-equation-env-regexp
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
188 "array\\*?\\|equation\\*?"
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
189 "*Regexp of environments for equations")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
190 (defvar YaTeX-array-env-regexp
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
191 (concat
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
192 "array\\*?\\|eqnarray\\*?\\|tabbing\\|tabular\\*?\\|" ;LaTeX
307
326bd21ad995 Add 'longtable to array like environment
HIROSE Yuuji <yuuji@gentei.org>
parents: 294
diff changeset
193 "longtable\\|" ;LaTeX2e
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
194 "matrix\\|pmatrix\\|bmatrix\\|vmatrix\\|Vmatrix\\|" ;AMS-LaTeX
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
195 "align\\*?\\|split\\*?\\|aligned\\*?\\|alignat\\*?\\|" ;AMS-LaTeX
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
196 "[bpvV]?matrix\\|smallmatrix\\|cases\\|" ;AMS-LaTeX
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
197 "xalignat\\*?\\|xxalignat\\*?") ;AMS-LaTeX
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
198 "*Regexp of environments where `&' becomes field delimiter.")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
199 (defvar YaTeX-uncomment-once t
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
200 "*T for removing all continuous commenting character(%).
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
201 Nil for removing only one commenting character at the beginning-of-line.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
202
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
203 (defvar YaTeX-close-paren-always t
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
204 "*Close parenthesis always when YaTeX-modify-mode is nil.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
205
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
206 (defvar YaTeX-greek-by-maketitle-completion nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
207 "*T for greek letters completion by maketitle-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
208
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
209 (defvar YaTeX-auto-math-mode t
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
210 "*T for changing YaTeX-math mode automatically.")
316
c66a2ddb46e4 Now 'YaTeX-use-AMS-LaTeX is t.
HIROSE Yuuji <yuuji@gentei.org>
parents: 314
diff changeset
211 (defvar YaTeX-use-AMS-LaTeX t
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
212 "*T for using AMS-LaTeX")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
213
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
214 (defvar yatex-mode-hook nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
215 "*List of functions to be called at the end of yatex-mode initializations.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
216
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
217 (defvar YaTeX-search-file-from-top-directory t
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
218 "*Non-nil means to search input-files from the directory where main file exists.")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
219
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
220 (defvar YaTeX-use-font-lock (and (featurep 'font-lock)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
221 (fboundp 'x-color-values)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
222 (fboundp 'font-lock-fontify-region))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
223 "*Use font-lock to fontify buffer or not.")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
224
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
225 (defvar YaTeX-use-hilit19 (and (featurep 'hilit19) (fboundp 'x-color-values)
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
226 (fboundp 'hilit-translate)
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
227 (not YaTeX-use-font-lock))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
228 "*Use hilit19 to highlight buffer or not.")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
229
82
yuuji
parents: 79
diff changeset
230 (defvar YaTeX-tabular-indentation 4
yuuji
parents: 79
diff changeset
231 "*Indentation column-depth of continueing line in tabular environment.")
yuuji
parents: 79
diff changeset
232
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
233 ;;-- Math mode values --
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
234
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
235 (defvar YaTeX-math-key-list-default
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
236 '((";" . YaTeX-math-sign-alist)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
237 (":" . YaTeX-greek-key-alist))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
238 "Default key sequence to invoke math-mode's image completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
239
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
240 (defvar YaTeX-math-key-list-private nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
241 "*User defined alist, math-mode-prefix vs completion alist.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
242
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
243 (defvar YaTeX-math-key-list
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
244 (append YaTeX-math-key-list-private YaTeX-math-key-list-default)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
245 "Key sequence to invoke math-mode's image completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
246
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
247 (defvar YaTeX-skip-default-reader nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
248 "Non-nil skips default argument reader of section-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
249
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
250 (defvar YaTeX-simple-messages nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
251 "Non-nil makes minibuffer messages simpler.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
252
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
253 (defvar YaTeX-template-file "~/work/template.tex"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
254 "*Template TeX source file. This will be inserted to empty file.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
255
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
256 (defvar YaTeX-addin-prefix "YaTeX:")
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
257
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
258 (defvar yatex-mode-abbrev-table nil
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
259 "*Abbrev table in use in yatex-mode buffers.")
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
260 (define-abbrev-table 'yatex-mode-abbrev-table ())
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
261
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
262
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
263 ;------------ Completion table ------------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
264 ; Set tex-section-like command possible completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
265 (defvar section-table
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
266 (append
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
267 '(("part") ("chapter") ("chapter*") ("section") ("section*")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
268 ("subsection") ("subsection*")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
269 ("subsubsection") ("paragraph") ("subparagraph")
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
270 ("author") ("thanks") ("documentstyle") ("pagestyle") ("thispagestyle")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
271 ("title") ("underline") ("label") ("makebox")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
272 ("footnote") ("footnotetext") ("index")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
273 ("hspace*") ("vspace*") ("bibliography") ("bibitem") ("cite")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
274 ("input") ("include") ("includeonly") ("mbox") ("hbox") ("caption")
82
yuuji
parents: 79
diff changeset
275 ("arabic")
yuuji
parents: 79
diff changeset
276 ("newcounter")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
277 ("newlength") ("setlength" 2) ("addtolength" 2) ("settowidth" 2)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
278 ("setcounter" 2) ("addtocounter" 2) ("stepcounter" 2)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
279 ("newcommand" 2) ("renewcommand" 2)
82
yuuji
parents: 79
diff changeset
280 ("newenvironment" 3) ("newtheorem" 2)
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
281 ("cline") ("framebox") ("savebox" 2) ("sbox" 2) ("newsavebox") ("usebox")
82
yuuji
parents: 79
diff changeset
282 ("date") ("put") ("ref") ("pageref") ("tabref") ("figref") ("raisebox" 2)
yuuji
parents: 79
diff changeset
283 ("multicolumn" 3) ("shortstack") ("parbox" 2)
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
284 ;; for mathmode accent
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
285 ("tilde") ("hat") ("check") ("bar") ("dot") ("ddot") ("vec")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
286 ("widetilde") ("widehat") ("overline") ("overrightarrow")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
287 ;; section types in mathmode
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
288 ("frac" 2) ("sqrt") ("mathrm") ("mathbf") ("mathit")
314
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
289 ;;cleveref
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
290 ("cref") ("crefrange") ("cpageref") ("labelcref") ("labelcpageref")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
291 )
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
292 (if YaTeX-use-LaTeX2e
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
293 '(("documentclass") ("usepackage")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
294 ("textbf") ("textgt") ("textit") ("textmc") ("textmd") ("textnormal")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
295 ("textrm") ("textsc") ("textsf") ("textsl") ("texttt") ("textup")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
296 ("mathbf") ("mathcal") ("mathit") ("mathnormal") ("mathrm")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
297 ("mathsf") ("mathtt")
82
yuuji
parents: 79
diff changeset
298 ("textcircled")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
299 ("scalebox" 1) ;is faking of argument position
82
yuuji
parents: 79
diff changeset
300 ("rotatebox" 2) ("resizebox" 3) ("reflectbox")
yuuji
parents: 79
diff changeset
301 ("colorbox" 2) ("fcolorbox" 3) ("textcolor" 2) ("color") ("pagecolor")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
302 ("includegraphics") ("includegraphics*")
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
303 ("bou") ;defined in plext
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
304 ("url") ;defined in url
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
305 ("shadowbox") ("doublebox") ("ovalbox") ("Ovalbox")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
306 ("fancyoval") ;defined in fancybox
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
307 ("keytop") ("mask" 2) ("maskbox" 5) ;defined in ascmac
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
308 ("bm") ;deined in bm
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
309 ("verbfile") ("listing") ;defined in misc
82
yuuji
parents: 79
diff changeset
310 ("slashbox" 2) ("backslashbox" 2) ;defined in slashbox
yuuji
parents: 79
diff changeset
311 ))
yuuji
parents: 79
diff changeset
312 (if YaTeX-use-AMS-LaTeX
yuuji
parents: 79
diff changeset
313 '(("DeclareMathOperator" 2) ("boldsymbol") ("pmb") ("eqref")
yuuji
parents: 79
diff changeset
314 ("tag") ("tag*"))))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
315 "Default completion table for section-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
316
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
317 (defvar user-section-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
318 (defvar tmp-section-table nil)
82
yuuji
parents: 79
diff changeset
319 (defvar YaTeX-ams-math-begin-alist
yuuji
parents: 79
diff changeset
320 '(("align") ("align*") ("multline") ("multline*") ("gather") ("gather*")
yuuji
parents: 79
diff changeset
321 ("alignat") ("alignat*") ("xalignat") ("xalignat*")
yuuji
parents: 79
diff changeset
322 ("xxalignat") ("xxalignat*") ("flalign") ("flalign*") ("equation*")))
yuuji
parents: 79
diff changeset
323 (defvar YaTeX-ams-math-gathering-alist
yuuji
parents: 79
diff changeset
324 '(("matrix") ("pmatrix") ("bmatrix") ("Bmatrix") ("vmatrix") ("Vmatrix")
yuuji
parents: 79
diff changeset
325 ("split") ("split*") ("aligned") ("aligned*") ("alignedat") ("gathered")
yuuji
parents: 79
diff changeset
326 ("smallmatrix") ("cases") ("subequations")))
yuuji
parents: 79
diff changeset
327 ;; Prepare list(not alist) for YaTeX::ref in yatexadd.el
yuuji
parents: 79
diff changeset
328 (defvar YaTeX-math-begin-list
yuuji
parents: 79
diff changeset
329 (mapcar 'car YaTeX-ams-math-begin-alist))
yuuji
parents: 79
diff changeset
330 (defvar YaTeX-math-gathering-list ;used in yatexadd.el#yatex::ref
yuuji
parents: 79
diff changeset
331 (mapcar 'car YaTeX-ams-math-gathering-alist))
yuuji
parents: 79
diff changeset
332
yuuji
parents: 79
diff changeset
333
yuuji
parents: 79
diff changeset
334 (defvar YaTeX-ams-env-table
yuuji
parents: 79
diff changeset
335 (append YaTeX-ams-math-begin-alist YaTeX-ams-math-gathering-alist)
yuuji
parents: 79
diff changeset
336 "*Standard AMS-LaTeX(2e) environment completion table.")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
337
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
338 ; Set tex-environment possible completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
339 (defvar env-table
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
340 (append
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
341 '(("quote") ("quotation") ("center") ("verse") ("document")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
342 ("verbatim") ("itemize") ("enumerate") ("description")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
343 ("list") ("tabular") ("tabular*") ("table") ("tabbing") ("titlepage")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
344 ("sloppypar") ("picture") ("displaymath")
240
5ab3322d0f03 Intelligent newline of eqnarray(*) is same as align's.
yuuji@gentei.org
parents: 239
diff changeset
345 ("eqnarray") ("eqnarray*") ("figure") ("equation") ("equation*")
5ab3322d0f03 Intelligent newline of eqnarray(*) is same as align's.
yuuji@gentei.org
parents: 239
diff changeset
346 ("abstract") ("array")
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
347 ("thebibliography") ("theindex") ("flushleft") ("flushright")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
348 ("minipage")
82
yuuji
parents: 79
diff changeset
349 ("supertabular")
345
82ca1d4a994d Add wrap{figure,table} to default completion
HIROSE Yuuji <yuuji@gentei.org>
parents: 334
diff changeset
350 ("wrapfigure") ("wraptable")
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
351 )
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
352 (if YaTeX-use-LaTeX2e
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
353 '(("comment") ;defined in version
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
354 ("longtable") ;defined in longtable
82
yuuji
parents: 79
diff changeset
355 ("screen") ("boxnote") ("shadebox") ;; ("itembox") ;in ascmac
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
356 ("alltt") ;defined in alltt
82
yuuji
parents: 79
diff changeset
357 ("multicols") ;defined in multicol
yuuji
parents: 79
diff changeset
358 ("breakbox"))) ;defined in eclbkbox
yuuji
parents: 79
diff changeset
359 (if YaTeX-use-AMS-LaTeX YaTeX-ams-env-table))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
360 "Default completion table for begin-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
361
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
362 (defvar user-env-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
363 (defvar tmp-env-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
364
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
365 ; Set {\Large }-like completion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
366 (defvar fontsize-table
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
367 '(("rm") ("em") ("bf") ("boldmath") ("it") ("sl") ("sf") ("sc") ("tt")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
368 ("dg") ("dm")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
369 ("tiny") ("scriptsize") ("footnotesize") ("small")("normalsize")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
370 ("large") ("Large") ("LARGE") ("huge") ("Huge")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
371 ("rmfamily") ("sffamily") ("ttfamily")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
372 ("mdseries") ("bfseries") ("upshape")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
373 ("itshape") ("slshape") ("scshape")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
374 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
375 "Default completion table for large-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
376
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
377 (defvar LaTeX2e-fontstyle-alist
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
378 '(("rm" . "rmfamily")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
379 ("sf" . "sffamily")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
380 ("tt" . "ttfamily")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
381 ("md" . "mdseries")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
382 ("bf" . "bfseries")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
383 ("up" . "upshape")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
384 ("it" . "itshape")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
385 ("sl" . "slshape")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
386 ("sc" . "scshape")))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
387
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
388 (defvar user-fontsize-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
389 (defvar tmp-fontsize-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
390
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
391 (defvar singlecmd-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
392 (append
106
45b54410c794 Add 'par to default maketitle-type completion table.
yuuji@gentei.org
parents: 88
diff changeset
393 '(("maketitle") ("makeindex") ("sloppy") ("protect") ("par")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
394 ("LaTeX") ("TeX") ("item") ("item[]") ("appendix") ("hline") ("kill")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
395 ;;("rightarrow") ("Rightarrow") ("leftarrow") ("Leftarrow")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
396 ("pagebreak") ("nopagebreak") ("tableofcontents")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
397 ("newpage") ("clearpage") ("cleardoublepage")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
398 ("footnotemark") ("verb") ("verb*")
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
399 ("linebreak") ("pagebreak") ("noindent") ("indent")
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
400 ("left") ("right") ("dots") ("smallskip") ("medskip") ("bigskip")
82
yuuji
parents: 79
diff changeset
401 ("displaystyle")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
402 )
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
403 (if YaTeX-greek-by-maketitle-completion
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
404 '(("alpha") ("beta") ("gamma") ("delta") ("epsilon")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
405 ("varepsilon") ("zeta") ("eta") ("theta")("vartheta")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
406 ("iota") ("kappa") ("lambda") ("mu") ("nu") ("xi") ("pi")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
407 ("varpi") ("rho") ("varrho") ("sigma") ("varsigma") ("tau")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
408 ("upsilon") ("phi") ("varphi") ("chi") ("psi") ("omega")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
409 ("Gamma") ("Delta") ("Theta") ("Lambda")("Xi") ("Pi")
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
410 ("Sigma") ("Upsilon") ("Phi") ("Psi") ("Omega")))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
411 (if YaTeX-use-LaTeX2e
82
yuuji
parents: 79
diff changeset
412 '(("return") ("Return") ("yen"))) ;defined in ascmac
86
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
413 (if YaTeX-use-AMS-LaTeX
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
414 '(("nonumber")))
82
yuuji
parents: 79
diff changeset
415 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
416 "Default completion table for maketitle-type completion.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
417
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
418 (defvar user-singlecmd-table nil)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
419 (defvar tmp-singlecmd-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
420
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
421 ;---------- Key mode map ----------
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
422 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
423 ;; Create new key map: YaTeX-mode-map
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
424 ;; Do not change this section.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
425 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
426 (defvar YaTeX-mode-map nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
427 "Keymap used in YaTeX mode")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
428
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
429 (defvar YaTeX-prefix-map nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
430 "Keymap used when YaTeX-prefix key pushed")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
431
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
432 (defvar YaTeX-user-extensional-map (make-sparse-keymap)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
433 "*Keymap used for the user's customization")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
434 (defvar YaTeX-current-completion-type nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
435 "Has current completion type. This may be used in YaTeX addin functions.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
436
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
437 (defvar YaTeX-modify-mode nil
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
438 "*Current editing mode.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
439 When non-nil, each opening parentheses only opens,
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
440 nil enters both open/close parentheses when opening parentheses key pressed.")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
441
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
442 (defvar YaTeX-math-mode nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
443 "Holds whether current mode is math-mode.")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
444 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
445 ;; Define key table
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
446 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
447 (if YaTeX-mode-map
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
448 nil
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
449 (setq YaTeX-mode-map (make-sparse-keymap))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
450 (setq YaTeX-prefix-map (make-sparse-keymap))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
451 (define-key YaTeX-mode-map "\"" 'YaTeX-insert-quote)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
452 (define-key YaTeX-mode-map "{" 'YaTeX-insert-braces)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
453 (define-key YaTeX-mode-map "(" 'YaTeX-insert-parens)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
454 (define-key YaTeX-mode-map "$" 'YaTeX-insert-dollar)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
455 (define-key YaTeX-mode-map "|" 'YaTeX-insert-bar)
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
456 (define-key YaTeX-mode-map "&" 'YaTeX-insert-amper)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
457 (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
458 (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
459 (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
460 (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
461 (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
462 (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
463 (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
464 (YaTeX-define-key "%" 'YaTeX-%-menu)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
465 (YaTeX-define-key "t" 'YaTeX-typeset-menu)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
466 (YaTeX-define-key "w" 'YaTeX-switch-mode-menu)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
467 (YaTeX-define-key "'" 'YaTeX-prev-error)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
468 (YaTeX-define-key "^" 'YaTeX-visit-main)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
469 (YaTeX-define-key "4^" 'YaTeX-visit-main-other-window)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
470 (YaTeX-define-key "4g" 'YaTeX-goto-corresponding-*-other-window)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
471 (YaTeX-define-key "44" 'YaTeX-switch-to-window)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
472 (and YaTeX-emacs-19 window-system
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
473 (progn
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
474 (YaTeX-define-key "5^" 'YaTeX-visit-main-other-frame)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
475 (YaTeX-define-key "5g" 'YaTeX-goto-corresponding-*-other-frame)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
476 (YaTeX-define-key "55" 'YaTeX-switch-to-window)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
477 (YaTeX-define-key " " 'YaTeX-do-completion)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
478 (YaTeX-define-key "v" 'YaTeX-version)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
479
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
480 (YaTeX-define-key "}" 'YaTeX-insert-braces-region)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
481 (YaTeX-define-key "]" 'YaTeX-insert-brackets-region)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
482 (YaTeX-define-key ")" 'YaTeX-insert-parens-region)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
483 (YaTeX-define-key "$" 'YaTeX-insert-dollars-region)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
484 (YaTeX-define-key "i" 'YaTeX-fill-item)
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
485 (YaTeX-define-key "\\"
353
2a72779d9c50 Rewrite lambda notations to suppress annoying warnings from emacs24
HIROSE Yuuji <yuuji@gentei.org>
parents: 352
diff changeset
486 (function(lambda () (interactive)
2a72779d9c50 Rewrite lambda notations to suppress annoying warnings from emacs24
HIROSE Yuuji <yuuji@gentei.org>
parents: 352
diff changeset
487 (insert (if (YaTeX-in-math-mode-p) "\\backslash" "\\textbackslash")))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
488 (if YaTeX-no-begend-shortcut
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
489 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
490 (YaTeX-define-key "B" 'YaTeX-make-begin-end-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
491 (YaTeX-define-key "b" 'YaTeX-make-begin-end))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
492 (YaTeX-define-begend-key "bc" "center")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
493 (YaTeX-define-begend-key "bd" "document")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
494 (YaTeX-define-begend-key "bD" "description")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
495 (YaTeX-define-begend-key "be" "enumerate")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
496 (YaTeX-define-begend-key "bE" "equation")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
497 (YaTeX-define-begend-key "bi" "itemize")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
498 (YaTeX-define-begend-key "bl" "flushleft")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
499 (YaTeX-define-begend-key "bm" "minipage")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
500 (YaTeX-define-begend-key "bt" "tabbing")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
501 (YaTeX-define-begend-key "bT" "tabular")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
502 (YaTeX-define-begend-key "b\^t" "table")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
503 (YaTeX-define-begend-key "bp" "picture")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
504 (YaTeX-define-begend-key "bq" "quote")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
505 (YaTeX-define-begend-key "bQ" "quotation")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
506 (YaTeX-define-begend-key "br" "flushright")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
507 (YaTeX-define-begend-key "bv" "verbatim")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
508 (YaTeX-define-begend-key "bV" "verse")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
509 (YaTeX-define-key "B " 'YaTeX-make-begin-end-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
510 (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
511 (YaTeX-define-key "e" 'YaTeX-end-environment)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
512 (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
513 (YaTeX-define-key "s" 'YaTeX-make-section)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
514 (YaTeX-define-key "L" 'YaTeX-make-fontsize-region)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
515 (YaTeX-define-key "l" 'YaTeX-make-fontsize)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
516 (YaTeX-define-key "m" 'YaTeX-make-singlecmd)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
517 (YaTeX-define-key "." 'YaTeX-comment-paragraph)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
518 (YaTeX-define-key "," 'YaTeX-uncomment-paragraph)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
519 (YaTeX-define-key ">" 'YaTeX-comment-region)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
520 (YaTeX-define-key "<" 'YaTeX-uncomment-region)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
521 (YaTeX-define-key "g" 'YaTeX-goto-corresponding-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
522 (YaTeX-define-key "k" 'YaTeX-kill-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
523 (YaTeX-define-key "c" 'YaTeX-change-*)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
524 (YaTeX-define-key "a" 'YaTeX-make-accent)
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
525 (YaTeX-define-key "?" 'YaTeX-help)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
526 (YaTeX-define-key "/" 'YaTeX-apropos)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
527 (YaTeX-define-key "&" 'YaTeX-what-column)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
528 (YaTeX-define-key "d" 'YaTeX-display-hierarchy)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
529 (YaTeX-define-key "x" YaTeX-user-extensional-map)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
530 (YaTeX-define-key "n"
353
2a72779d9c50 Rewrite lambda notations to suppress annoying warnings from emacs24
HIROSE Yuuji <yuuji@gentei.org>
parents: 352
diff changeset
531 (function(lambda () (interactive)
2a72779d9c50 Rewrite lambda notations to suppress annoying warnings from emacs24
HIROSE Yuuji <yuuji@gentei.org>
parents: 352
diff changeset
532 (insert "\\" (if (YaTeX-on-section-command-p "o?oalign") "crcr" "\\")))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
533 (if YaTeX-dos
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
534 (define-key YaTeX-prefix-map "\C-r"
353
2a72779d9c50 Rewrite lambda notations to suppress annoying warnings from emacs24
HIROSE Yuuji <yuuji@gentei.org>
parents: 352
diff changeset
535 (function(lambda () (interactive)
2a72779d9c50 Rewrite lambda notations to suppress annoying warnings from emacs24
HIROSE Yuuji <yuuji@gentei.org>
parents: 352
diff changeset
536 (YaTeX-set-screen-height YaTeX-saved-screen-height) (recenter))))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
537
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
538 (defvar YaTeX-section-completion-map nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
539 "*Key map used at YaTeX completion in the minibuffer.")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
540 (if YaTeX-section-completion-map nil
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
541 (setq YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
542 (copy-keymap (or (and (boundp 'gmhist-completion-map)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
543 gmhist-completion-map)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
544 minibuffer-local-completion-map)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
545 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
546 " " 'YaTeX-minibuffer-complete)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
547 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
548 "\C-i" 'YaTeX-minibuffer-complete)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
549 (define-key YaTeX-section-completion-map
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
550 "\C-v" 'YaTeX-read-section-with-overview))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
551
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
552 (defvar YaTeX-recursive-map nil
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
553 "*Key map used at YaTeX reading arguments in the minibuffer.")
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
554 (if YaTeX-recursive-map nil
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
555 (setq YaTeX-recursive-map (copy-keymap global-map))
82
yuuji
parents: 79
diff changeset
556 (define-key YaTeX-recursive-map YaTeX-prefix YaTeX-prefix-map)
yuuji
parents: 79
diff changeset
557 (mapcar
yuuji
parents: 79
diff changeset
558 (function
yuuji
parents: 79
diff changeset
559 (lambda (key)
yuuji
parents: 79
diff changeset
560 (define-key YaTeX-mode-map (car key) 'YaTeX-math-insert-sequence)
yuuji
parents: 79
diff changeset
561 (define-key YaTeX-recursive-map (car key) 'YaTeX-math-insert-sequence)))
yuuji
parents: 79
diff changeset
562 YaTeX-math-key-list))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
563 ;---------- Define other variable ----------
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
564 (defvar YaTeX-env-name "document" "*Initial tex-environment completion")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
565 (defvar YaTeX-section-name
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
566 (if YaTeX-use-LaTeX2e "documentclass" "documentstyle")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
567 "*Initial tex-section completion")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
568 (defvar YaTeX-fontsize-name "large" "*Initial fontsize completion")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
569 (defvar YaTeX-single-command "maketitle" "*Initial LaTeX single command")
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
570 (defvar YaTeX-kanji-code (if YaTeX-dos 1 2)
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
571 "*File kanji code used by Japanese TeX.
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
572 nil: Do not care (Preserve coding-system)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
573 0: no-converion (mule)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
574 1: Shift JIS
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
575 2: JIS
86
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
576 3: EUC
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
577 4: UTF-8")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
578
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
579 (defvar YaTeX-coding-system nil "File coding system used by Japanese TeX.")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
580 (cond
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
581 (YaTeX-emacs-20
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
582 (setq YaTeX-coding-system
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
583 (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
584 ((boundp 'MULE)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
585 (setq YaTeX-coding-system
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
586 (symbol-value (cdr (assoc YaTeX-kanji-code YaTeX-kanji-code-alist))))))
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
587
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
588 (defvar YaTeX-mode-syntax-table nil
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
589 "*Syntax table for yatex-mode")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
590
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
591 (if YaTeX-mode-syntax-table nil
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
592 (setq YaTeX-mode-syntax-table (make-syntax-table (standard-syntax-table)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
593 (modify-syntax-entry ?\n " " YaTeX-mode-syntax-table)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
594 (modify-syntax-entry ?\{ "(}" YaTeX-mode-syntax-table)
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
595 (modify-syntax-entry ?\} "){" YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
596 (modify-syntax-entry ?\t " " YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
597 (modify-syntax-entry ?\f ">" YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
598 (modify-syntax-entry ?\n ">" YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
599 (modify-syntax-entry ?$ "$$" YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
600 (modify-syntax-entry ?% "<" YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
601 (modify-syntax-entry ?\\ "/" YaTeX-mode-syntax-table)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
602 (modify-syntax-entry ?~ " " YaTeX-mode-syntax-table))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
603
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
604 ;---------- Provide YaTeX-mode ----------
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
605 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
606 ;; Major mode definition
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
607 ;;;
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
608 (defun yatex-mode ()
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
609 " 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
610 -You can invoke processes concerning LaTeX typesetting by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
611 \\[YaTeX-typeset-menu]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
612 -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
613 \\[YaTeX-make-begin-end]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
614 -Enclose region into some environment by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
615 \\[universal-argument] \\[YaTeX-make-begin-end]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
616 -Complete LaTeX command which takes argument like `\\section{}' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
617 \\[YaTeX-make-section]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
618 -Put LaTeX command which takes no arguments like `\\maketitle' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
619 \\[YaTeX-make-singlecmd]
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
620 -Complete font or character size descriptor like `{\\large }' by
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
621 \\[YaTeX-make-fontsize]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
622 -Enclose region into those descriptors above by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
623 \\[universal-argument] \\[YaTeX-make-fontsize]
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
624 -Enter European accent notations by
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
625 \\[YaTeX-make-accent]
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
626 -Toggle various modes of YaTeX by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
627 \\[YaTeX-switch-mode-menu]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
628 -Change environt name (on the begin/end line) by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
629 \\[YaTeX-change-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
630 -Kill LaTeX command/environment sequences by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
631 \\[YaTeX-kill-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
632 -Kill LaTeX command/environment with its contents
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
633 \\[universal-argument] \\[YaTeX-kill-*]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
634 -Go to corresponding object (begin/end, file, labels) by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
635 \\[YaTeX-goto-corresponding-*] or
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
636 \\[YaTeX-goto-corresponding-*-other-window] (in other window)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
637 \\[YaTeX-goto-corresponding-*-other-frame] (in other frame)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
638 -Go to main LaTeX source text by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
639 \\[YaTeX-visit-main] or
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
640 \\[YaTeX-visit-main-other-window] (in other window)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
641 \\[YaTeX-visit-main-other-frame] (in other frame)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
642 -Comment out or uncomment region by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
643 \\[YaTeX-comment-region] or \\[YaTeX-uncomment-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
644 -Comment out or uncomment paragraph by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
645 \\[YaTeX-comment-paragraph] or \\[YaTeX-uncomment-paragraph]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
646 -Make an \\item entry hang-indented by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
647 \\[YaTeX-fill-item]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
648 -Enclose the region with parentheses by
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
649 \\[YaTeX-insert-parens-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
650 \\[YaTeX-insert-braces-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
651 \\[YaTeX-insert-brackets-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
652 \\[YaTeX-insert-dollars-region]
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
653 -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
654 \\[YaTeX-what-column]
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
655 -Enter a newline and an entry suitable for environment by
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
656 \\[YaTeX-intelligent-newline]
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
657 -View the structure of file inclusion by
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
658 \\[YaTeX-display-hierarchy]
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
659 -Refer the online help of popular LaTeX commands by
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
660 \\[YaTeX-help] (help)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
661 \\[YaTeX-apropos] (apropos)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
662 -Edit `%# notation' by
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
663 \\[YaTeX-%-menu]
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
664
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
665 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
666 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
667 "
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
668 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
669 (kill-all-local-variables)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
670 (setq major-mode 'yatex-mode)
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
671 (setq mode-name (if YaTeX-japan "‚â‚Ä‚Ó" "YaTeX"))
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
672 (mapcar 'make-local-variable
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
673 '(dvi2-command fill-column fill-prefix
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
674 tmp-env-table tmp-section-table tmp-fontsize-table
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
675 tmp-singlecmd-table paragraph-start paragraph-separate
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
676 YaTeX-math-mode indent-line-function comment-line-break-function
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
677 comment-start comment-start-skip
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
678 ))
354
5465428f5a68 `[prefix] t e' displays typesetting image in the next window, if possible.
HIROSE Yuuji <yuuji@gentei.org>
parents: 353
diff changeset
679 (YaTeX-set-file-coding-system YaTeX-kanji-code YaTeX-coding-system)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
680 (setq fill-column YaTeX-fill-column
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
681 fill-prefix YaTeX-fill-prefix
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
682 paragraph-start YaTeX-paragraph-start
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
683 paragraph-separate YaTeX-paragraph-separate
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
684 indent-line-function 'YaTeX-indent-line
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
685 comment-start YaTeX-comment-prefix
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
686 comment-end ""
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
687 comment-start-skip "[^\\\\]%+[ \t]*"
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
688 local-abbrev-table yatex-mode-abbrev-table)
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
689 (if (fboundp 'comment-indent-new-line) ;for Emacs21
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
690 (setq comment-line-break-function 'YaTeX-comment-line-break))
330
9cef5d10a0f1 First Drag-n-Drop support
HIROSE Yuuji <yuuji@gentei.org>
parents: 327
diff changeset
691 ;; +dnd for X11 w/ emacs23+
9cef5d10a0f1 First Drag-n-Drop support
HIROSE Yuuji <yuuji@gentei.org>
parents: 327
diff changeset
692 (and window-system (featurep 'dnd) (require 'yatex23 nil t)
9cef5d10a0f1 First Drag-n-Drop support
HIROSE Yuuji <yuuji@gentei.org>
parents: 327
diff changeset
693 (set (make-local-variable 'dnd-protocol-alist)
9cef5d10a0f1 First Drag-n-Drop support
HIROSE Yuuji <yuuji@gentei.org>
parents: 327
diff changeset
694 (cons (cons "^file:" 'YaTeX-dnd-handler) dnd-protocol-alist)))
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
695
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
696 (if (and YaTeX-use-font-lock (featurep 'font-lock))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
697 (progn
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
698 (require 'yatex19)
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
699 (YaTeX-font-lock-set-default-keywords)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
700 (or (featurep 'xemacs)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
701 (set (make-local-variable 'font-lock-defaults)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
702 (get 'yatex-mode 'font-lock-defaults)))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
703 ;;(font-lock-mode 1)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
704 ))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
705 (use-local-map YaTeX-mode-map)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
706 (set-syntax-table YaTeX-mode-syntax-table)
182
67b1e094e151 Direct call to screen-{height,width} avoided for coming emacsen.
yuuji@gentei.org
parents: 181
diff changeset
707 (if YaTeX-dos (setq YaTeX-saved-screen-height (YaTeX-screen-height)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
708 (YaTeX-read-user-completion-table)
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
709 (and (fboundp 'YaTeX-hilit-setup-alist) (YaTeX-hilit-setup-alist))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
710 (makunbound 'inenv)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
711 (turn-on-auto-fill) ;1.63
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
712 (and (= 0 (buffer-size)) (file-exists-p YaTeX-template-file)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
713 (y-or-n-p (format "Insert %s?" YaTeX-template-file))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
714 (insert-file-contents (expand-file-name YaTeX-template-file)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
715 (run-hooks 'text-mode-hook 'yatex-mode-hook))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
716
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
717 ;---------- Define YaTeX-mode functions ----------
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
718 (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
719 (defvar YaTeX-ec-regexp (regexp-quote YaTeX-ec))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
720 (defvar YaTeX-struct-begin
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
721 (concat YaTeX-ec "begin{%1}%2")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
722 "Keyword format of begin-environment.")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
723 (defvar YaTeX-struct-end
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
724 (concat YaTeX-ec "end{%1}")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
725 "Keyword format of end-environment.")
217
e59126447ee7 Recognize null environment name as \begin{} ... \end{}.
yuuji@gentei.org
parents: 216
diff changeset
726 (defvar YaTeX-struct-name-regexp "[^}]*"
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
727 "Environment name regexp.")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
728 (defvar YaTeX-TeX-token-regexp
82
yuuji
parents: 79
diff changeset
729 (cond (YaTeX-japan "[A-Za-z*‚Ÿ-‚ñˆŸ-êž]+")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
730 (t "[A-Za-z*]+"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
731 "Regexp of characters which can be a member of TeX command's name.")
82
yuuji
parents: 79
diff changeset
732 (defvar YaTeX-kanji-regexp "[‚Ÿ-‚ñˆŸ-êž]"
yuuji
parents: 79
diff changeset
733 "Generic regexp of Japanese Kanji (and symbol) characters.")
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
734 (defvar YaTeX-command-token-regexp YaTeX-TeX-token-regexp
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
735 "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
736
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
737 ;;(defvar YaTeX-struct-section
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
738 ;; (concat YaTeX-ec "%1{%2}")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
739 ;; "Keyword to make section.")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
740
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
741 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
742 ;; autoload section
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
743 ;;;
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
744
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
745 ;;autoload from yatexprc.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
746 (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
747 (autoload 'YaTeX-visit-main-other-window "yatexprc"
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
748 "Visit main other window." t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
749 (autoload 'YaTeX-main-file-p "yatexprc" "Check if the file is main." t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
750 (autoload 'YaTeX-get-builtin "yatexprc" "Get %# built-in." t)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
751 (autoload 'YaTeX-system "yatexprc" "Call system command" t)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
752 (autoload 'YaTeX-save-buffers "yatexprc" "Save buffers of same major mode" t)
350
91ba61bb536e [prefix] g calls forward-search of previewers if -src is given to typesetting.
HIROSE Yuuji <yuuji@gentei.org>
parents: 347
diff changeset
753 (autoload 'YaTeX-goto-corresponding-viewer "yatexprc" "Viewer jump line" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
754
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
755 ;;autoload from yatexmth.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
756 (autoload 'YaTeX-math-insert-sequence "yatexmth" "Image input." t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
757 (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
758 (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
759 (autoload 'YaTeX-math-member-p "yatexmth" "Check if a word is math command." t)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
760 (autoload 'YaTeX-insert-amsparens-region "yatexmth" "AMS parens region" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
761 (autoload 'YaTeX-insert-amsbraces-region "yatexmth" "AMS braces region" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
762 (autoload 'YaTeX-insert-amsbrackets-region "yatexmth" "AMS brackets region" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
763 (autoload 'YaTeX-on-parenthesis-p "yatexmth" "Check if on math-parens" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
764 (autoload 'YaTeX-goto-open-paren "yatexmth" "Goto opening paren" t)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
765 (autoload 'YaTeX-change-parentheses "yatexmth" "Change corresponding parens" t)
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
766 (autoload 'YaTeX-goto-corresponding-paren "yatexmth" "\bigl\bigr jumps" t)
130
8703f090c628 `[prefix] t e' for YaTeX-typeset-environment.
yuuji@gentei.org
parents: 129
diff changeset
767 (autoload 'YaTeX-typeset-math-region "yatexmth" "Typeset math-region" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
768
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
769 ;;autoload from yatexhlp.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
770 (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
771 (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
772
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
773 ;;autoload from yatexgen.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
774 (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
775 (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
776
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
777 ;;autoload from yatexsec.el
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
778 (autoload 'YaTeX-section-overview "yatexsec" "YaTeX sectioning(view)" t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
779 (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
780 (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
781
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
782 ;;autoload from yatexenv.el
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
783 (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
784 (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
785 (autoload 'YaTeX-indent-line-equation "yatexenv" "Indent equation lines." t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
786 (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
787
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
788 ;;autoload from yatexhie.el
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
789 (autoload 'YaTeX-display-hierarchy "yatexhie"
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
790 "YaTeX document hierarchy browser" t)
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
791 (autoload 'YaTeX-display-hierarchy-directly "yatexhie"
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
792 "Same as YaTeX-display-hierarchy. Call from mouse." t)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
793
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
794 ;;autoload from yatexpkg.el
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
795 (autoload 'YaTeX-package-auto-usepackage "yatexpkg" "Auto \\usepackage" t)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
796
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
797 ;;;
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
798 ;; YaTeX-mode functions
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
799 ;;;
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
800 (defun YaTeX-insert-begin-end (env region-mode)
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
801 "Insert \\begin{mode-name} and \\end{mode-name}.
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
802 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
803 (setq YaTeX-current-completion-type 'begin)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
804 (let*((ccol (current-column)) beg beg2 exchange
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
805 (arg region-mode) ;for old compatibility
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
806 (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
807 (if (and region-mode (> (point) (mark)))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
808 (progn (exchange-point-and-mark)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
809 (setq exchange t
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
810 ccol (current-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
811 indent-column (+ ccol YaTeX-environment-indent))))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
812 ;;VER2 (insert "\\begin{" env "}" (YaTeX-addin env))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
813 (setq beg (point))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
814 (YaTeX-insert-struc 'begin env)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
815 (setq beg2 (point))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
816 (insert "\n")
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
817 (indent-to indent-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
818 (save-excursion
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
819 ;;indent optional argument of \begin{env}, if any
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
820 (while (> (point-beginning-of-line) beg)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
821 (skip-chars-forward "\\s " (point-end-of-line))
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
822 (indent-to indent-column)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
823 (forward-line -1)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
824 (require 'yatexenv)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
825 (if region-mode
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
826 ;;if region-mode, indent all text in the region
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
827 (save-excursion
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
828 (if (fboundp (intern-soft (concat "YaTeX-enclose-" env)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
829 (funcall (intern-soft (concat "YaTeX-enclose-" env))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
830 (point) (mark))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
831 (while (< (progn (forward-line 1) (point)) (mark))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
832 (if (eolp) nil
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
833 (skip-chars-forward " \t\n")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
834 (indent-to indent-column))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
835 (if region-mode (exchange-point-and-mark))
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
836 (indent-to ccol)
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
837 ;;VER2 (insert "\\end{" env "}\n")
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
838 (YaTeX-insert-struc 'end env)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
839 (YaTeX-reindent ccol)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
840 (if region-mode
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
841 (progn
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
842 (insert "\n")
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
843 (or exchange (exchange-point-and-mark)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
844 (goto-char beg2)
215
a67236df3199 Intelligent-newline should always be called.
yuuji@gentei.org
parents: 212
diff changeset
845 (YaTeX-intelligent-newline nil)
218
58a023f16e07 Guidance of intelligent-newline shoud check fboundp.
yuuji@fusion.yk.gentei.org
parents: 217
diff changeset
846 (if (fboundp (intern-soft (concat "YaTeX-intelligent-newline-" env)))
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
847 (progn
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
848 (message
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
849 (cond
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
850 (YaTeX-japan "%s ‚ÅŽŸ‚Ìs‚Ì“ü—Í‚Éi‚Ý‚Ü‚·B")
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
851 (t "`%s' produces the next line's template."))
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
852 (key-description
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
853 (car (where-is-internal 'YaTeX-intelligent-newline))))))
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
854 (YaTeX-indent-line))
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
855 (YaTeX-package-auto-usepackage env 'env)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
856 (if YaTeX-current-position-register
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
857 (point-to-register YaTeX-current-position-register))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
858
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
859 (defun YaTeX-make-begin-end (arg)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
860 "Make LaTeX environment command of \\begin{env.} ... \\end{env.}
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
861 by completing read.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
862 If you invoke this command with universal argument,
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
863 \(key binding for universal-argument is \\[universal-argument]\)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
864 you can put REGION into that environment between \\begin and \\end."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
865 (interactive "P")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
866 (let*
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
867 ((mode (if arg " region" ""))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
868 (env
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
869 (YaTeX-read-environment
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
870 (format "Begin environment%s(default %s): " mode YaTeX-env-name))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
871 (if (string= env "")
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
872 (setq env YaTeX-env-name))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
873 (setq YaTeX-env-name env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
874 (YaTeX-update-table
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
875 (list YaTeX-env-name) 'env-table 'user-env-table 'tmp-env-table)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
876 (YaTeX-insert-begin-end YaTeX-env-name arg)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
877
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
878 (defun YaTeX-make-begin-end-region ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
879 "Call YaTeX-make-begin-end with ARG to specify region mode."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
880 (interactive)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
881 (YaTeX-make-begin-end t))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
882
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
883 (defun YaTeX-guess-section-type ()
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
884 (if (eq major-mode 'yatex-mode)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
885 (save-excursion
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
886 (cond
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
887 ((save-excursion (not (search-backward YaTeX-ec nil t)))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
888 (if YaTeX-use-LaTeX2e "documentclass" "documentstyle"))
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
889 ((progn
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
890 (if (= (char-after (1- (point))) ?~) (forward-char -1))
82
yuuji
parents: 79
diff changeset
891 (forward-char -1) (looking-at "•\\\|}\\|Ž®\\|‘æ"))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
892 "ref")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
893 ((and (looking-at "[a-z \t]")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
894 (progn (skip-chars-backward "a-z \t")
314
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
895 (looking-at "table\\|figure\\|formula\\|eq\\(\\.\\|uation\\)")))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
896 "ref")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
897 ((save-excursion
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
898 (skip-chars-backward "[^ƒA-ƒ“]")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
899 (looking-at "ƒvƒƒOƒ‰ƒ€\\|ƒŠƒXƒg"))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
900 "ref")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
901 ((YaTeX-re-search-active-backward
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
902 (concat YaTeX-ec-regexp "begin{\\([^}]+\\)}")
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
903 (regexp-quote YaTeX-comment-prefix)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
904 (save-excursion (forward-line -1) (point))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
905 t)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
906 (let ((env (YaTeX-match-string 1)))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
907 (cdr (assoc env
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
908 '(("table" . "caption"))))))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
909 ))))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
910
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
911 (defun YaTeX-make-section (arg &optional beg end cmd)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
912 "Make LaTeX \\section{} type command with completing read.
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
913 With numeric ARG, you can specify the number of arguments of
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
914 LaTeX command.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
915 For example, if you want to produce LaTeX command
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
916
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
917 \\addtolength{\\topmargin}{8mm}
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
918
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
919 which has two arguments. You can produce that sequence by typing...
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
920 ESC 2 C-c s add SPC RET \\topm SPC RET 8mm RET
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
921 \(by default\)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
922 Then yatex will automatically complete `addtolength' with two arguments
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
923 next time.
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
924 You can complete symbol at LaTeX command and the 1st argument.
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
925
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
926 If the optional 2nd and 3rd argument BEG END are specified, enclose
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
927 the region from BEG to END into the first argument of the LaTeX sequence.
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
928 Optional 4th arg CMD is LaTeX command name, for non-interactive use."
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
929 (interactive "P")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
930 (setq YaTeX-current-completion-type 'section)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
931 (if (equal arg '(4)) (setq beg (region-beginning) end (region-end)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
932 (unwind-protect
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
933 (let*
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
934 ((source-window (selected-window))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
935 guess
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
936 (section
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
937 (or cmd
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
938 (progn
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
939 (setq guess
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
940 (or (YaTeX-guess-section-type) YaTeX-section-name))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
941 (YaTeX-read-section
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
942 (if YaTeX-simple-messages
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
943 (format "Section-type (default %s): " guess)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
944 (if (> (minibuffer-depth) 0)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
945 (format "%s???{} (default %s)%s: "
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
946 YaTeX-ec guess
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
947 (format "[level:%d]" (minibuffer-depth)))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
948 (format "(C-v for view-section) %s???{%s} (default %s): "
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
949 YaTeX-ec (if beg "region" "") guess)))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
950 nil))))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
951 (section (if (string= section "") guess section))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
952 (numarg ;; The number of section-type command's argument
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
953 (or (and (numberp arg) arg)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
954 (nth 1 (YaTeX-lookup-table section 'section))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
955 1))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
956 (arg-reader (intern-soft (concat "YaTeX::" section)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
957 (addin-args (and arg-reader (fboundp arg-reader)))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
958 (title "")
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
959 (j 1)
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
960 (after-change-functions nil) ;inhibit font-locking temporarily
82
yuuji
parents: 79
diff changeset
961 (enable-recursive-minibuffers t)
yuuji
parents: 79
diff changeset
962 (mkarg-func
yuuji
parents: 79
diff changeset
963 (function
yuuji
parents: 79
diff changeset
964 (lambda (n)
yuuji
parents: 79
diff changeset
965 (while (<= j n)
216
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
966 (unwind-protect
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
967 (setq title
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
968 (cond
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
969 (addin-args (funcall arg-reader j))
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
970 (YaTeX-skip-default-reader "")
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
971 (t
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
972 (read-string
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
973 (format "Argument %d of %s: " j section)))))
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
974 (insert
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
975 (concat ;to allow nil return value
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
976 "{" title "}")))
82
yuuji
parents: 79
diff changeset
977 (setq j (1+ j))))))
yuuji
parents: 79
diff changeset
978 );;let
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
979 (setq YaTeX-section-name section)
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
980 (if beg
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
981 (let*((e (make-marker))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
982 (ar2 (intern-soft (concat "YaTeX::" section "-region")))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
983 (arp (and ar2 (fboundp ar2))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
984 (goto-char end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
985 (insert "}")
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
986 (set-marker e (point))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
987 (goto-char beg)
216
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
988 (unwind-protect
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
989 (progn
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
990 (insert YaTeX-ec YaTeX-section-name
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
991 (YaTeX-addin YaTeX-section-name))
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
992 (if (> numarg 1) (funcall mkarg-func (1- numarg))))
c1edf0fbab32 Leave `{}' after C-g at section-type completion.
yuuji@gentei.org
parents: 215
diff changeset
993 (insert "{"))
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
994 (if arp (funcall ar2 (point) e))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
995 (goto-char e)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
996 (set-marker e nil))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
997 (use-global-map YaTeX-recursive-map)
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
998 (if (= numarg 0) (YaTeX-make-singlecmd YaTeX-section-name)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
999 (progn (insert YaTeX-ec YaTeX-section-name)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1000 (insert (YaTeX-addin YaTeX-section-name))))
82
yuuji
parents: 79
diff changeset
1001 ;;read arguments with add-in
yuuji
parents: 79
diff changeset
1002 (funcall mkarg-func numarg))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1003 (YaTeX-update-table
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1004 (if (/= numarg 1) (list section numarg)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1005 (list section))
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1006 'section-table 'user-section-table 'tmp-section-table)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1007 (if YaTeX-current-position-register
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1008 (point-to-register YaTeX-current-position-register))
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1009 (if (string= (YaTeX-buffer-substring (- (point) 2) (point))
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1010 "{}")
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1011 (forward-char -1))
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1012 (while (string= (YaTeX-buffer-substring (- (point) 3) (1- (point)))
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1013 "{}")
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
1014 (forward-char -2))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
1015 (YaTeX-package-auto-usepackage section 'section))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1016 (if (<= (minibuffer-depth) 0) (use-global-map global-map))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1017 (insert ""))) ;insert dummy string to fontify(Emacs20)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1018
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1019 (defun YaTeX-make-section-region (args beg end)
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1020 "Call YaTeX-make-section with arguments to specify region mode."
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
1021 (interactive "P\nr")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1022 (YaTeX-make-section args beg end))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1023
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1024 (defun YaTeX-make-fontsize (arg &optional fontsize)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1025 "Make completion like {\\large ...} or {\\slant ...} in minibuffer.
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1026 If you invoke this command with universal argument, you can put region
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1027 into {\\xxx } braces.
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1028 \(key binding for universal-argument is \\[universal-argument]\)"
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1029 (interactive "P")
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1030 (YaTeX-sync-local-table 'tmp-fontsize-table)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1031 (let* ((mode (if arg "region" ""))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1032 (fontsize
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1033 (or fontsize
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1034 (YaTeX-read-fontsize
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1035 (if YaTeX-simple-messages
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1036 (format "Font or size (default %s): " YaTeX-fontsize-name)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1037 (format "{\\??? %s} (default %s)%s: " mode YaTeX-fontsize-name
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1038 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1039 (format "[level:%d]" (minibuffer-depth)) "")))
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1040 nil nil))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1041 (if (string= fontsize "")
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1042 (setq fontsize YaTeX-fontsize-name))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1043 (setq YaTeX-current-completion-type 'large)
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1044 (setq YaTeX-fontsize-name fontsize)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1045 (YaTeX-update-table
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1046 (list YaTeX-fontsize-name)
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1047 'fontsize-table 'user-fontsize-table 'tmp-fontsize-table)
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1048 (and YaTeX-use-LaTeX2e
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1049 (YaTeX-latex2e-p)
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1050 (setq fontsize
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1051 (cdr (assoc YaTeX-fontsize-name LaTeX2e-fontstyle-alist)))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1052 (setq YaTeX-fontsize-name fontsize))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1053 (if arg
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1054 (save-excursion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1055 (if (> (point) (mark)) (exchange-point-and-mark))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1056 (insert "{\\" YaTeX-fontsize-name " ")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1057 (exchange-point-and-mark)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1058 (insert "}"))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1059 (insert (concat "{\\" YaTeX-fontsize-name " }"))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1060 (forward-char -1)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1061 (if YaTeX-current-position-register
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1062 (point-to-register YaTeX-current-position-register))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1063 (save-excursion
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
1064 (insert (YaTeX-addin YaTeX-fontsize-name)))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
1065 (YaTeX-package-auto-usepackage YaTeX-fontsize-name 'large))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1066
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1067 (defun YaTeX-make-fontsize-region ()
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1068 "Call function:YaTeX-make-fontsize with ARG to specify region mode."
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1069 (interactive)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1070 (YaTeX-make-fontsize t))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1071
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1072 (defvar YaTeX-singlecmd-suffix "" "*Suffix for maketitle-type commands.")
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1073 (defvar YaTeX-read-singlecmd-history nil "Holds maketitle-type history.")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1074 (put 'YaTeX-read-singlecmd-history 'no-default t)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1075 (defun YaTeX-make-singlecmd (single)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1076 (interactive
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1077 (list (YaTeX-cplread-with-learning
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1078 (if YaTeX-simple-messages
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1079 (format "maketitle-type (default %s): " YaTeX-single-command)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1080 (format "%s??? (default %s)%s: " YaTeX-ec YaTeX-single-command
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1081 (if (> (minibuffer-depth) 0)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1082 (format "[level:%d]" (minibuffer-depth)) "")))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1083 'singlecmd-table 'user-singlecmd-table 'tmp-singlecmd-table
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1084 nil nil nil 'YaTeX-read-singlecmd-history)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1085 (if (string= single "")
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1086 (setq single YaTeX-single-command))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1087 (setq YaTeX-single-command single)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1088 (setq YaTeX-current-completion-type 'maketitle)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1089 (let ((dollar (and (not (YaTeX-in-math-mode-p))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1090 (YaTeX-math-member-p YaTeX-single-command)))
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1091 p q)
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1092 (if dollar (insert "$"))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1093 (insert YaTeX-ec YaTeX-single-command)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1094 (setq p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1095 (insert (YaTeX-addin single) YaTeX-singlecmd-suffix)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1096 (if dollar (insert "$"))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1097 (setq q (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1098 (goto-char p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1099 (forward-char -2)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1100 (if (looking-at "\\[\\]") (forward-char 1) (goto-char q)))
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
1101 (YaTeX-package-auto-usepackage YaTeX-single-command 'maketitle)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1102 (if YaTeX-current-position-register
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1103 (point-to-register YaTeX-current-position-register)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1104
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1105 (defvar YaTeX-completion-begin-regexp "[{\\]"
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1106 "Regular expression of limit where LaTeX command's completion begins.")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1107
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1108 (defun YaTeX-do-completion ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1109 "Try completion on LaTeX command preceding point."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1110 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1111 (if
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1112 (or (eq (preceding-char) ? )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1113 (eq (preceding-char) ?\t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1114 (eq (preceding-char) ?\n)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1115 (bobp))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1116 (message "Nothing to complete.") ;Do not complete
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1117 (let* ((end (point))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1118 (limit (point-beginning-of-line))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1119 (completion-begin
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1120 (progn (re-search-backward "[ \t\n]" limit 1) (point)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1121 (begin (progn
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1122 (goto-char end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1123 (if (re-search-backward YaTeX-completion-begin-regexp
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1124 completion-begin t)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1125 (1+ (point))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1126 nil))))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1127 (goto-char end)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1128 (cond
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1129 ((null begin)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1130 (message "I think it is not a LaTeX sequence."))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1131 (t
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1132 (mapcar 'YaTeX-sync-local-table
18
adc2f1472409 Make variables for temporary dictionary buffer-local.
yuuji
parents: 16
diff changeset
1133 '(tmp-section-table tmp-env-table tmp-singlecmd-table))
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1134 (let*((pattern (YaTeX-buffer-substring begin end))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1135 (all-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1136 (append
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1137 section-table user-section-table tmp-section-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1138 env-table user-env-table tmp-env-table
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1139 singlecmd-table user-singlecmd-table tmp-singlecmd-table))
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1140 ;; First,
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1141 ;; search completion without backslash.
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
1142 (completion (try-completion pattern all-table)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1143 (if
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1144 (eq completion nil)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1145 ;; Next,
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1146 ;; search completion with backslash
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1147 (setq completion
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1148 (try-completion
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1149 (YaTeX-buffer-substring (1- begin) end)
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1150 all-table nil)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1151 begin (1- begin)))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1152 (cond
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1153 ((null completion)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1154 (message (concat "Can't find completion for '" pattern "'"))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1155 (ding))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1156 ((eq completion t) (message "Sole completion."))
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1157 ((not (string= completion pattern))
82
yuuji
parents: 79
diff changeset
1158 (delete-region begin end)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1159 (insert completion)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1160 )
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1161 (t
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1162 (message "Making completion list...")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1163 (with-output-to-temp-buffer "*Help*"
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1164 (display-completion-list
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1165 (all-completions pattern all-table)))))))))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1166
12
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1167 (defun YaTeX-toggle-modify-mode (&optional arg)
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1168 (interactive "P")
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1169 (or (memq 'YaTeX-modify-mode mode-line-format)
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1170 (setq mode-line-format
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1171 (append (list "" 'YaTeX-modify-mode) mode-line-format)))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1172 (if (or arg (null YaTeX-modify-mode))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1173 (progn
12
a7f397790cdc Revise YaTeX-typeset faster.
yuuji
parents: 11
diff changeset
1174 (setq YaTeX-modify-mode "*m*")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1175 (message "Modify mode"))
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1176 (setq YaTeX-modify-mode nil)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1177 (message "Cancel modify mode."))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1178 (set-buffer-modified-p (buffer-modified-p))) ;redraw mode-line
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1179
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1180 (defun YaTeX-switch-mode-menu (arg &optional char)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1181 (interactive "P")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1182 (message "Toggle: (M)odify-mode ma(T)h-mode")
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1183 (let ((c (or char (read-char))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1184 (cond
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1185 ((= c ?m) (YaTeX-toggle-modify-mode arg))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1186 ((or (= c ?$) (= c ?t))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1187 (if YaTeX-auto-math-mode
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1188 (message "Makes no sense in YaTeX-auto-math-mode.")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1189 (YaTeX-toggle-math-mode arg))))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1190
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1191 (defun YaTeX-insert-quote ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1192 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1193 (insert
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1194 (cond
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1195 ((YaTeX-literal-p) ?\")
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1196 ((= (preceding-char) ?\\ ) ?\")
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1197 ;((= (preceding-char) ?\( ) ?\")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1198 ((or (= (preceding-char) 32)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1199 (= (preceding-char) 9)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1200 (= (preceding-char) ?\n)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1201 (bobp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1202 (string-match
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1203 (regexp-quote (char-to-string (preceding-char)))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1204 "ABCDHIuvwxyz()"))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1205 "``")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1206 (t "''"))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1207
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1208 (defun YaTeX-closable-p ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1209 (and (not YaTeX-modify-mode)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
1210 (not (eq YaTeX-close-paren-always 'never))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1211 (or YaTeX-close-paren-always (eolp))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1212 (not (input-pending-p))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1213 (not (YaTeX-literal-p)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1214 ;;(or YaTeX-modify-mode
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1215 ;; (and (not YaTeX-close-paren-always) (not (eolp)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1216 ;; (input-pending-p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1217 ;; (YaTeX-quick-in-environment-p "verbatim"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1218 )
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1219
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1220 (defun YaTeX-insert-braces-region (beg end &optional open close)
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1221 (interactive "r")
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1222 (save-excursion
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1223 (goto-char end)
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1224 (YaTeX-insert-inherit (or close "}"))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1225 (goto-char beg)
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1226 (YaTeX-insert-inherit (or open "{"))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1227
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1228 (defun YaTeX-get-macro-at-point (&optional p)
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1229 "Get (La)TeX macro around point P."
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1230 (interactive "d")
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1231 (save-excursion
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1232 (goto-char (setq p (or p (point))))
198
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1233 (let ((token (substring (substring YaTeX-TeX-token-regexp 1) 0 -2))
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1234 bsend)
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1235 (and (not (bobp))
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1236 (or (looking-at YaTeX-TeX-token-regexp)
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1237 (string-match
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1238 YaTeX-TeX-token-regexp (char-to-string (preceding-char))))
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1239 (progn
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1240 (skip-chars-backward token)
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1241 (equal (preceding-char) ?\\))
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1242 (save-excursion
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1243 (setq bsend (point))
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1244 (skip-chars-backward "\\\\") ;emacs18 doesn't return distance
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1245 (/= (% (- bsend (point)) 2) 0)) ;consider \\
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1246 (looking-at YaTeX-TeX-token-regexp)
768ff443ef84 More accurate check for YaTeX-get-macro-at-point.
yuuji@gentei.org
parents: 197
diff changeset
1247 (YaTeX-match-string 0)))))
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1248
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1249 (defun YaTeX-insert-braces (arg &optional open close)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1250 (interactive "p")
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1251 (let ((begend-guide
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1252 (function
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1253 (lambda ()
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1254 (if (equal (get 'YaTeX-insert-braces 'begend-guide) 2)
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1255 nil ;if triggered thrice, do nothing
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1256 (momentary-string-display
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1257 (format
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1258 (cond
196
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1259 (YaTeX-japan "begin/end“ü—Í‚É‚Í %s ‚ðŽg‚¢‚Ü‚µ‚傤")
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1260 (t "You don't understand Zen of `%s'!"))
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1261 (key-description
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1262 (car (where-is-internal 'YaTeX-make-begin-end))))
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1263 (point))
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1264 (put 'YaTeX-insert-braces 'begend-guide
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1265 (+ 1 (string-to-int ;increment counter of beg-end guidance
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1266 (prin1-to-string
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1267 (get 'YaTeX-insert-braces 'begend-guide)))))))))
196
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1268 env macro not-literal b e)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1269 (cond
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1270 ((YaTeX-jmode) (YaTeX-self-insert arg))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
1271 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1272 ((save-excursion
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1273 (and (> (- (point) (point-min)) 6)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1274 (condition-case () (forward-char -6) (error nil)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1275 (looking-at "\\\\left\\\\"))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1276 (insert "{\\right\\}")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1277 (forward-char -8))
193
e216f9f347fa Camouflage email addresses.
yuuji@gentei.org
parents: 192
diff changeset
1278 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1279 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1280 (looking-at "\\\\[bB]igl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1281 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1282 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1283 "{" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\}"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1284 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1285 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1286 (and (> (- (point) (point-min)) 7)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1287 (condition-case () (forward-char -7) (error nil)))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1288 (looking-at "\\\\[bB]iggl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1289 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1290 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1291 "{" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\}"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1292 (forward-char -8))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1293 ((= (preceding-char) ?\\ )
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1294 (insert "{\\}")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1295 (forward-char -2)) ;matsu's hack ends here
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1296 ((and (setq not-literal (not (YaTeX-literal-p)))
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1297 (equal "end" (setq macro (YaTeX-get-macro-at-point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1298 (setq env (YaTeX-inner-environment)))
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1299 (funcall begend-guide)
196
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1300 (insert "{" env "}"))
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1301 ((and not-literal (equal "begin" macro))
196
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1302 (insert "{")
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1303 (save-excursion
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1304 (indent-to (prog1 (- (current-column) 7) (insert "}\n")))
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1305 (insert "\\end{}")
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1306 (setq e (point)))
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1307 (setq env
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1308 (YaTeX-read-environment
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1309 (format "Begin environment(default %s): " YaTeX-env-name)))
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1310 (if (string= "" env) (setq env YaTeX-env-name))
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1311 (setq YaTeX-env-name env)
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1312 (funcall begend-guide)
196
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1313 (delete-region (- (point) 7) e)
194
2af7a6ba45cd Add guidance completion for `\begin{'.
yuuji@gentei.org
parents: 193
diff changeset
1314 (YaTeX-insert-begin-end env nil))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1315 (t
47
d7e7b4654058 Support special popup frame.
yuuji
parents: 46
diff changeset
1316 (insert (or open "{") (or close "}"))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1317 (forward-char -1)
196
701d87b607e0 The indentation of automatically inserted \end, fixed.
yuuji@gentei.org
parents: 195
diff changeset
1318 (if (and (eq (char-after (point)) ?\}) ;; the case `\\{}'
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1319 (eq (char-after (- (point) 2)) ?\\ ))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1320 (progn (insert "\\") (forward-char -1)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1321 ))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1322
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1323 (defun YaTeX-jmode ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1324 (or (and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1325 (and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*)
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1326 (and (boundp 'skk-mode) skk-mode (not skk-latin-mode))
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1327 (and (boundp 'default-input-method) default-input-method
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1328 current-input-method)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1329
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1330 (defun YaTeX-jmode-off ()
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1331 (if (cond
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1332 ((and (boundp 'canna:*japanese-mode*) canna:*japanese-mode*)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1333 (canna-toggle-japanese-mode) t)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1334 ((and (boundp 'egg:*mode-on*) egg:*mode-on* egg:*input-mode*)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1335 (egg:toggle-egg-mode-on-off) t)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1336 ((and (fboundp 'skk-mode) (boundp 'skk-mode) skk-mode)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1337 (cond
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1338 ((fboundp 'skk-latin-mode)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1339 (or (and (boundp 'skk-henkan-mode) skk-henkan-mode)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1340 (and (boundp 'skk-henkan-on)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1341 (or skk-henkan-mode skk-henkan-active))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1342 (and (boundp 'j-henkan-on)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1343 (or j-henkan-on j-henkan-active))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1344 ;; Deactivate jmode if henkan-mode is not running.
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1345 ;; Suggested by tt.tetsuo.tsukamoto.
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1346 (progn
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1347 (put 'YaTeX-jmode-on 'skkkata skk-katakana)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1348 (skk-latin-mode t))))
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1349 ((fboundp 'skk-mode-off) (skk-mode-off))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1350 (t (j-mode-off)))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1351 t)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1352 ((and (fboundp 'toggle-input-method) current-input-method)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1353 (toggle-input-method) t)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1354 ((and (fboundp 'fep-force-off) (fep-force-off))))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1355 (put 'YaTeX-jmode 'jmode t)))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1356
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1357 (defun YaTeX-jmode-on ()
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1358 (cond
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1359 ((boundp 'canna:*japanese-mode*)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1360 (if (not canna:*japanese-mode*) (canna-toggle-japanese-mode)))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1361 ((boundp 'egg:*mode-on*)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1362 (and (not egg:*mode-on*) (not egg:*input-mode*)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1363 (egg:toggle-egg-mode-on-off)))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1364 ((and (fboundp 'skk-mode) (boundp 'skk-mode))
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1365 (if (get 'YaTeX-jmode-on 'skkkata)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1366 (skk-j-mode-on t)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1367 (skk-mode 1))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1368 (put 'YaTeX-jmode-on 'skkkata nil))
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1369 ((fboundp 'toggle-input-method)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1370 (if (not current-input-method) (toggle-input-method)))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1371 ((and (fboundp 'fep-force-on) (fep-force-on)))))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1372
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1373 (defun YaTeX-jmode-back ()
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1374 (if (get 'YaTeX-jmode 'jmode)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1375 (YaTeX-jmode-on))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1376 (setplist 'YaTeX-jmode nil))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1377
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1378 (defun YaTeX-self-insert (arg)
290
1a4332ecc58b For emacs-24.3+ and NEmacs(last-command-{char,event} handling)
HIROSE Yuuji <yuuji@gentei.org>
parents: 288
diff changeset
1379 (call-interactively (global-key-binding (char-to-string (YaTeX-last-key)))))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1380 (defun YaTeX-insert-inherit (&rest args)
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1381 (apply (if (fboundp 'insert-and-inherit) 'insert-and-inherit 'insert)
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1382 args))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
1383
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1384 (defun YaTeX-insert-brackets (arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1385 "Insert Kagi-kakko or \\ [ \\] pair or simply \[."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1386 (interactive "p")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1387 (let ((col (1- (current-column))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1388 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1389 ((YaTeX-jmode) (YaTeX-self-insert arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1390 ((not (YaTeX-closable-p))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1391 (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1392 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1393 (and (> (- (point) (point-min)) 5) (forward-char -5))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1394 (looking-at "\\\\left"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1395 (YaTeX-insert-inherit "[\\right]")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1396 (forward-char -7))
193
e216f9f347fa Camouflage email addresses.
yuuji@gentei.org
parents: 192
diff changeset
1397 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1398 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1399 (looking-at "\\\\[bB]igl"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1400 (YaTeX-insert-inherit
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1401 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1402 "[" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r]"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1403 (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1404 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1405 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1406 (looking-at "\\\\[bB]iggl"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1407 (YaTeX-insert-inherit
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1408 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1409 "[" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r]"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1410 (forward-char -7)) ;matsu's hack ends here
36
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1411 ((and (= (preceding-char) ?\\ )
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1412 (/= (char-after (- (point) 2)) ?\\ )
47659405d1af Added `verb' and `verb*'.
yuuji
parents: 34
diff changeset
1413 (not (YaTeX-in-math-mode-p)))
290
1a4332ecc58b For emacs-24.3+ and NEmacs(last-command-{char,event} handling)
HIROSE Yuuji <yuuji@gentei.org>
parents: 288
diff changeset
1414 (YaTeX-insert-inherit (YaTeX-last-key) "\n")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1415 (indent-to (max 0 col))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1416 (YaTeX-insert-inherit "\\]")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1417 (beginning-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1418 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1419 (delete-region (point) (progn (beginning-of-line) (point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1420 (indent-to (+ YaTeX-environment-indent (max 0 col)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1421 (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
1422 ((YaTeX-closable-p)
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1423 (YaTeX-insert-inherit "[]")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1424 (backward-char 1))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1425 (t (YaTeX-self-insert arg)))))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1426
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1427 (defun YaTeX-insert-brackets-region (beg end)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1428 (interactive "r")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1429 (YaTeX-insert-braces-region beg end "[" "]"))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1430
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1431 (defun YaTeX-insert-parens (arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1432 "Insert parenthesis pair."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1433 (interactive "p")
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1434 (cond
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1435 ((YaTeX-jmode) (YaTeX-self-insert arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1436 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1437 ((save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1438 (and (> (- (point) (point-min)) 5) (forward-char -5))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1439 (looking-at "\\\\left"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1440 (YaTeX-insert-inherit "(\\right)")
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1441 (forward-char -7))
193
e216f9f347fa Camouflage email addresses.
yuuji@gentei.org
parents: 192
diff changeset
1442 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1443 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1444 (looking-at "\\\\[bB]igl"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1445 (YaTeX-insert-inherit
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1446 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1447 "(" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r)"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1448 (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1449 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1450 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1451 (looking-at "\\\\[bB]iggl"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1452 (YaTeX-insert-inherit
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1453 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1454 "(" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r)"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1455 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1456 ((= (preceding-char) ?\\ ) ;matsu's hack ends here
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1457 (YaTeX-insert-inherit "(\\)")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1458 (backward-char 2))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1459 ((YaTeX-closable-p)
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1460 (YaTeX-insert-inherit "()")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1461 (backward-char 1))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1462 (t (YaTeX-self-insert arg))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1463
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1464 (defun YaTeX-insert-parens-region (beg end)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1465 (interactive "r")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1466 (YaTeX-insert-braces-region beg end "(" ")"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1467
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1468 (defun YaTeX-insert-bar (arg)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1469 "Insert bar pair."
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1470 (interactive "p")
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1471 (cond
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1472 ((YaTeX-jmode) (YaTeX-self-insert arg))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1473 ((not (YaTeX-closable-p)) (YaTeX-self-insert arg))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1474 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1475 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1476 (looking-at "\\\\left"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1477 (YaTeX-insert-inherit "|\\right|")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1478 (forward-char -7))
193
e216f9f347fa Camouflage email addresses.
yuuji@gentei.org
parents: 192
diff changeset
1479 ((save-excursion ;from matsu<at>math.s.chiba-u.ac.jp
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1480 (and (> (- (point) (point-min)) 5) (forward-char -5))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1481 (looking-at "\\\\[bB]igl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1482 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1483 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1484 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1485 (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1486 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1487 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1488 (looking-at "\\\\[bB]iggl"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1489 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1490 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1491 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 1)) "r|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1492 (forward-char -7))
193
e216f9f347fa Camouflage email addresses.
yuuji@gentei.org
parents: 192
diff changeset
1493 ((save-excursion ; added by Jin <MAF01011<at>nifty.ne.jp>
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1494 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1495 (looking-at "\\\\left\\\\"))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1496 (YaTeX-insert-inherit "|\\right\\|")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1497 (forward-char -8))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1498 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1499 (and (> (- (point) (point-min)) 6) (forward-char -6))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1500 (looking-at "\\\\[bB]igl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1501 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1502 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1503 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1504 (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1505 ((save-excursion
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1506 (and (> (- (point) (point-min)) 7) (forward-char -7))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1507 (looking-at "\\\\[bB]iggl\\\\"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1508 (insert
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1509 (concat
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1510 "|" (buffer-substring (match-beginning 0) (- (match-end 0) 2)) "r\\|"))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1511 (forward-char -8)) ; added by Jin up to here.
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1512 ((= (preceding-char) ?\\ )
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1513 (YaTeX-insert-inherit "|\\|")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1514 (backward-char 2))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1515 ; ((and (YaTeX-closable-p)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1516 ; (/= (preceding-char) ?|)
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1517 ; (/= (following-char) ?|))
184
bdc00b25045d The text-property for math-mode should be front-sticky and rear-nonsticky.
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 181
diff changeset
1518 ; (YaTeX-insert-inherit "||")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1519 ; (backward-char 1))
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1520 (t (YaTeX-self-insert arg))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1521
285
032d08cdcca2 Activate YaTeX-use-jmode-hook only if using canna.
HIROSE Yuuji <yuuji@gentei.org>
parents: 282
diff changeset
1522 (defvar YaTeX-use-jmode-hook
032d08cdcca2 Activate YaTeX-use-jmode-hook only if using canna.
HIROSE Yuuji <yuuji@gentei.org>
parents: 282
diff changeset
1523 (and (featurep 'canna) (boundp 'canna:*initialized*) canna:*initialized*)
032d08cdcca2 Activate YaTeX-use-jmode-hook only if using canna.
HIROSE Yuuji <yuuji@gentei.org>
parents: 282
diff changeset
1524 ;; (not (and (fboundp 'skk-mode) (boundp 'skk-mode)))
197
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1525 "*Non-nil means activate automatic jmode switcher within/out math mode.
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1526 Hopefully, change default to t in the next version of 1.75.")
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1527 (defun YaTeX-jmode-hook (old new)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1528 "A hook controling jmode on/off."
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1529 ;; This function is called via point-entered/leave hook, so that
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1530 ;; codes in it is evaluated on such emacsen as having text-properties.
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1531 (let ((inhibit-point-motion-hooks t)
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1532 (oldp (plist-get (text-properties-at old) 'point-left))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1533 (newp (plist-get (text-properties-at new) 'point-left))
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1534 (lnew (plist-get (text-properties-at new) 'last-new))
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1535 (mjmode (plist-get (text-properties-at new) 'mjmode))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1536 (bmp (buffer-modified-p))
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1537 (jm (YaTeX-jmode)) b e)
181
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1538 (unwind-protect
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1539 (cond
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1540 ((eq lnew new) nil) ;Do nothing if continuous entry
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1541 ((and (not (eq newp 'YaTeX-jmode-hook))
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1542 (eq oldp 'YaTeX-jmode-hook)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1543 (plist-get (text-properties-at old) 'entered))
181
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1544 ;; leave
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1545 (remove-text-properties
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1546 (setq b (1+ (or (previous-single-property-change old 'point-left)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1547 (1- (point)))))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1548 (setq e (1- (or (next-single-property-change old 'point-left)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1549 (1+ (point)))))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1550 (list 'last-new nil 'entered nil))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1551 (add-text-properties b e (list 'mjmode jm))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1552 (if (boundp 'skk-katakana)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1553 (put 'YaTeX-jmode-on 'skkkata skk-katakana))
181
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1554 (if (plist-get (text-properties-at old) 'jmode)
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1555 (YaTeX-jmode-on)))
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1556 ((and (not (eq oldp 'YaTeX-jmode-hook))
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1557 (eq newp 'YaTeX-jmode-hook)
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1558 (not (plist-get (text-properties-at new) 'entered)))
181
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1559 ;; enter
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1560 (add-text-properties
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1561 (1+ (or (previous-single-property-change new 'point-left)
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1562 (1- (point))))
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1563 (1- (or (next-single-property-change new 'point-left)
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1564 (1+ (point))))
186
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1565 (list 'jmode jm 'last-new new 'entered t))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1566 (if (boundp 'skk-katakana) ;care for skk katakana mode
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1567 (put 'YaTeX-jmode-on 'skkkata skk-katakana))
61996cd55816 Ensure point-entered/point-left hook should not run continuously.
yuuji@gentei.org
parents: 185
diff changeset
1568 (if mjmode (YaTeX-jmode-on) (YaTeX-jmode-off))))
181
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1569 ;;unwind job
ab7cd5129797 Keep buffer-modified-p in YaTeX-jmode-hook().
yuuji@gentei.org
parents: 179
diff changeset
1570 (set-buffer-modified-p bmp))))
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
1571
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1572 (defun YaTeX-insert-dollar ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1573 (interactive)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1574 (if (or (not (YaTeX-closable-p))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1575 (= (preceding-char) 92)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1576 (and (YaTeX-in-math-mode-p)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1577 (or (/= (preceding-char) ?$) (/= (following-char) ?$))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1578 (insert "$")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1579 (insert "$$")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
1580 (forward-char -1)
197
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1581 (and YaTeX-use-jmode-hook
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1582 (fboundp 'add-text-properties)
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1583 (add-text-properties
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1584 (1- (point)) (1+ (point))
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1585 (list 'point-left 'YaTeX-jmode-hook
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1586 'point-entered 'YaTeX-jmode-hook
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1587 'front-sticky t
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1588 'rear-nonsticky t
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1589 'mjmode nil
3842e55025aa Note on { after \begin.
yuuji@gentei.org
parents: 196
diff changeset
1590 'jmode (YaTeX-jmode))))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1591 (YaTeX-jmode-off)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1592 (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
1593
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1594 (defun YaTeX-insert-dollars-region (beg end)
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1595 (interactive "r")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1596 (YaTeX-insert-braces-region beg end "$" "$"))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
1597
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1598 (defun YaTeX-insert-amper ()
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1599 (interactive)
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1600 (if (or (string-match YaTeX-array-env-regexp
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1601 (or (YaTeX-inner-environment t) "document"))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1602 (= (preceding-char) 92)
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
1603 (YaTeX-literal-p)
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
1604 (YaTeX-in-math-mode-p))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1605 (insert "&")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1606 (insert "\\&")))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
1607
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1608 (defun YaTeX-version ()
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1609 "Return string of the version of running YaTeX."
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1610 (interactive)
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1611 (message
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1612 (concat "Yet Another tex-mode "
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
1613 (if YaTeX-japan "u–ì’¹v" "`Wild Bird'")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1614 " Revision "
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1615 YaTeX-revision-number)))
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
1616
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1617 (defun YaTeX-typeset-menu (arg &optional char)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1618 "Typeset, preview, visit error and miscellaneous convenient menu.
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1619 Optional second argument CHAR is for non-interactive call from menu."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1620 (interactive "P")
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1621 (message
130
8703f090c628 `[prefix] t e' for YaTeX-typeset-environment.
yuuji@gentei.org
parents: 129
diff changeset
1622 (concat "J)latex R)egion E)nv B)ibtex mk(I)dx "
123
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
1623 "latex+p(D)f "
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
1624 (if (fboundp 'start-process) "K)ill ")
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1625 "P)review "
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
1626 (and (boundp 'window-system) window-system "S)earch ")
123
590fc51462c7 New typeset menu `latex+p(D)f' added.
yuuji@gentei.org
parents: 119
diff changeset
1627 "V)iewErr L)pr"))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1628 (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
1629 (require 'yatexprc) ;for Nemacs's bug
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
1630 (select-window sw)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1631 (cond
327
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
1632 ((memq c '(?j ?\C-j)) (YaTeX-typeset-buffer) ; memq for usability test
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
1633 (put 'dvi2-command 'format 'dvi))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1634 ((= c ?r) (YaTeX-typeset-region))
130
8703f090c628 `[prefix] t e' for YaTeX-typeset-environment.
yuuji@gentei.org
parents: 129
diff changeset
1635 ((= c ?e) (YaTeX-typeset-environment))
224
9705855793ca YaTeX-typeset-auto-rerun for labels and bibitems reference resolution.
yuuji@gentei.org
parents: 218
diff changeset
1636 ((= c ?b) (YaTeX-call-builtin-on-file
227
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1637 "BIBTEX" bibtex-command arg))
224
9705855793ca YaTeX-typeset-auto-rerun for labels and bibitems reference resolution.
yuuji@gentei.org
parents: 218
diff changeset
1638 ((= c ?i) (YaTeX-call-builtin-on-file
227
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1639 "MAKEINDEX" makeindex-command arg))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1640 ((= 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
1641 ((= c ?p) (call-interactively 'YaTeX-preview))
351
0fc7ea5baa5f YaTeX-system takes two more args for utilization from YaTeX-preview-jump-file.
HIROSE Yuuji <yuuji@gentei.org>
parents: 350
diff changeset
1642 ((= c ?q) (YaTeX-system "lpq" "Printer queue"))
288
dffc0d979ae0 Use %#DVIPDF on `[prefix] t d'.
HIROSE Yuuji <yuuji@gentei.org>
parents: 286
diff changeset
1643 ((= c ?d) (YaTeX-typeset-buffer
327
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
1644 (or (YaTeX-get-builtin "DVIPDF") YaTeX-dvipdf-command))
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
1645 (put 'dvi2-command 'format 'pdf))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1646 ((= c ?v) (YaTeX-view-error))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1647 ((= c ?l) (YaTeX-lpr arg))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1648 ((= c ?m) (YaTeX-switch-mode-menu arg))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1649 ((= c ?s) (YaTeX-xdvi-remote-search arg)))))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
1650
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1651 (if (fboundp 'wrap-function-to-control-ime)
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1652 (wrap-function-to-control-ime 'YaTeX-typeset-menu t "P"))
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1653
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
1654
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1655 (defun YaTeX-%-menu (&optional beg end char)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1656 "Operate %# notation."
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1657 ;;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
1658 (interactive)
231
d329bbed72cd MAKEINDEX's short-cut should be `i'.
yuuji@gentei.org
parents: 228
diff changeset
1659 (message "!)Edit-%%#! B)EGIN-END-region P)review L)Edit-%%#LPR make(I)ndex B)ibtex")
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
1660 (let ((c (or char (read-char))) (string "") key
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1661 (b (make-marker)) (e (make-marker)))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1662 (save-excursion
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1663 (cond
231
d329bbed72cd MAKEINDEX's short-cut should be `i'.
yuuji@gentei.org
parents: 228
diff changeset
1664 ((rindex "!plib" c) ;Edit %#xxx
227
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1665 (setq key (cdr (assq c '((?! . "!")
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1666 (?p . "PREVIEW")
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1667 (?l . "LPR")
231
d329bbed72cd MAKEINDEX's short-cut should be `i'.
yuuji@gentei.org
parents: 228
diff changeset
1668 (?i . "MAKEINDEX")
227
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1669 (?b . "BIBTEX")))))
3b2ac4652810 Handling of built-in is changed to use YaTeX-getset-builtin.
yuuji@gentei.org
parents: 224
diff changeset
1670 (YaTeX-getset-builtin key t))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1671
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1672 ((= c ?b) ;%#BEGIN %#END region
16
cb9afa9c1213 Auto-indentation at begin-type completion works correctly.
yuuji
parents: 15
diff changeset
1673 (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
1674 (set-marker b beg)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1675 (set-marker e end)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1676 (goto-char (point-min))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1677 (while (re-search-forward "^%#\\(BEGIN\\)\\|\\(END\\)$" nil t)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1678 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1679 (delete-region (point) (progn (forward-line 1) (point))))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1680 (goto-char b)
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1681 (open-line 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
1682 (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
1683 (insert "%#BEGIN")
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1684 (goto-char e)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1685 (insert "%#END\n")
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1686 (set-marker b nil)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1687 (set-marker e nil))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1688 ))))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1689
168
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1690 (defvar YaTeX-refcommand-def-regexp-default
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1691 "label\\|bibitem")
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1692 (defvar YaTeX-refcommand-def-regexp-private nil
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1693 "*Regexp of defining label commands")
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1694 (defvar YaTeX-refcommand-def-regexp
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1695 (concat (if YaTeX-refcommand-def-regexp-private
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1696 (concat YaTeX-refcommand-def-regexp-private "\\|"))
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1697 YaTeX-refcommand-def-regexp-default))
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1698
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1699 (defvar YaTeX-refcommand-ref-regexp-default
314
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
1700 "\\(page\\|eq\\|fig\\)?ref\\|cite"
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
1701 "Regexp of LaTeX's label-referring macros.
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
1702 Searching for this will be done without `\\\\'.
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
1703 So you need not add patterns if new referring macro ends with \"ref\".")
168
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1704 (defvar YaTeX-refcommand-ref-regexp-private nil
314
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
1705 "*Regexp of referring label commands.
fae84a98372c ("crefrange") ("cpageref") ("labelcref") ("labelcpageref") for cleveref
HIROSE Yuuji <yuuji@gentei.org>
parents: 313
diff changeset
1706 See documentation of `YaTeX-refcommand-ref-regexp-default'.")
168
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1707 (defvar YaTeX-refcommand-ref-regexp
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1708 (concat (if YaTeX-refcommand-ref-regexp-private
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1709 (concat YaTeX-refcommand-ref-regexp-private "\\|"))
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1710 YaTeX-refcommand-ref-regexp-default))
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1711
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1712 (defvar YaTeX-refcommand-regexp
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1713 (concat YaTeX-refcommand-def-regexp
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1714 "\\|" YaTeX-refcommand-ref-regexp)
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1715 "Regexp of label defining/referring command name.")
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1716
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1717 (defun YaTeX-goto-corresponding-label (reverse &optional otherwin)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1718 "Jump to corresponding \\label{} and \\ref{} or \\cite and \\bibitem.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1719 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
1720 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
1721 corresponding \\label(\\bibitem) backward,
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1722 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
1723 on \\label(\\bibitem), YaTeX will search the corresponding \\ref(\\cite)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1724 forward at first and secondary backward.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1725 Argument REVERSE non-nil makes the default
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1726 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
1727 search-last-string, you can repeat search the same label/ref by typing
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1728 \\[isearch-forward] or \\[isearch-backward].
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1729 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
1730
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1731 (let ((scmd "") label direc string blist (p (point)) (cb (current-buffer))
168
191cffccc912 Replace all \ref{LABEL} when changing \label{LABEL}.
yuuji@gentei.org
parents: 166
diff changeset
1732 (refcommands YaTeX-refcommand-regexp)
82
yuuji
parents: 79
diff changeset
1733 (foundmsg (format "Type %s %c to return to original position."
yuuji
parents: 79
diff changeset
1734 (key-description
yuuji
parents: 79
diff changeset
1735 (car
yuuji
parents: 79
diff changeset
1736 (or (where-is-internal 'register-to-point)
yuuji
parents: 79
diff changeset
1737 (where-is-internal 'jump-to-register))))
yuuji
parents: 79
diff changeset
1738 YaTeX-current-position-register))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1739 (func (function (lambda (string sfunc)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1740 (or
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1741 (funcall sfunc string nil t)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1742 (funcall (if (eq sfunc 're-search-forward)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1743 're-search-backward 're-search-forward)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1744 string nil t))))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1745 (cond
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1746 ((YaTeX-on-section-command-p refcommands)
82
yuuji
parents: 79
diff changeset
1747 (setq scmd
yuuji
parents: 79
diff changeset
1748 (cdr
yuuji
parents: 79
diff changeset
1749 (assoc
yuuji
parents: 79
diff changeset
1750 (YaTeX-match-string 1)
yuuji
parents: 79
diff changeset
1751 '(("label" . "\\\\\\(page\\|eq\\)?ref{%k}")
yuuji
parents: 79
diff changeset
1752 ("ref" . "\\\\label{%k}")
yuuji
parents: 79
diff changeset
1753 ("eqref" . "\\\\label{%k}")
yuuji
parents: 79
diff changeset
1754 ("pageref" . "\\\\label{%k}")
yuuji
parents: 79
diff changeset
1755 ("cite" .
yuuji
parents: 79
diff changeset
1756 "\\\\bibitem\\(\\[[^]]+\\]\\)?{%k}\\|^\\s *@[a-z]+{%k,")
yuuji
parents: 79
diff changeset
1757 ("bibitem" . "\\\\cite\\(\\[[^]]+\\]\\)?")))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1758 (goto-char (match-end 0))
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1759 (let ((label (YaTeX-buffer-substring
82
yuuji
parents: 79
diff changeset
1760 (1- (point)) (progn (backward-list 1) (1+ (point)))))
yuuji
parents: 79
diff changeset
1761 (fp (make-marker))fl fn
yuuji
parents: 79
diff changeset
1762 (goother (function (lambda (buffer point)
yuuji
parents: 79
diff changeset
1763 (goto-char point)
yuuji
parents: 79
diff changeset
1764 (if (one-window-p)
yuuji
parents: 79
diff changeset
1765 (split-window-calculate-height
yuuji
parents: 79
diff changeset
1766 YaTeX-default-pop-window-height))
yuuji
parents: 79
diff changeset
1767 (select-window (get-lru-window))
yuuji
parents: 79
diff changeset
1768 (switch-to-buffer buffer)))))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1769 ;(setq string (concat "\\" scmd "{" label "}"))
82
yuuji
parents: 79
diff changeset
1770 ;(setq string (concat "\\\\" scmd "{" (regexp-quote label) "}"))
yuuji
parents: 79
diff changeset
1771 (setq string (YaTeX-replace-format scmd "k" (regexp-quote label)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1772 (setq direc (if (string-match "ref\\|cite" scmd)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1773 're-search-forward 're-search-backward))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1774 (if YaTeX-current-position-register
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1775 (point-to-register YaTeX-current-position-register))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1776 (if reverse (setq direc (if (eq direc 're-search-forward)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1777 're-search-backward 're-search-forward)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1778 (if (funcall func string direc) ;label/ref found!
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1779 (progn
82
yuuji
parents: 79
diff changeset
1780 (if otherwin (funcall goother cb p))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
1781 (goto-char (match-beginning 0))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1782 (push-mark p))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1783 ;;if label/ref not found, search through all yatex buffers.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
1784 (goto-char p) ;resume position of current buffer
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1785 (catch 'found
82
yuuji
parents: 79
diff changeset
1786 (setq blist (YaTeX-yatex-buffer-list))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1787 (while blist
82
yuuji
parents: 79
diff changeset
1788 ;; search for corresponding keyword
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1789 (set-buffer (car blist))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1790 (if (YaTeX-on-section-command-p refcommands)
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1791 (goto-char (match-beginning 0)))
82
yuuji
parents: 79
diff changeset
1792 (cond
yuuji
parents: 79
diff changeset
1793 ; cond1
yuuji
parents: 79
diff changeset
1794 ((funcall func string direc)
yuuji
parents: 79
diff changeset
1795 (cond
yuuji
parents: 79
diff changeset
1796 (otherwin
yuuji
parents: 79
diff changeset
1797 (set-buffer cb)
yuuji
parents: 79
diff changeset
1798 (funcall goother (car blist) p))
yuuji
parents: 79
diff changeset
1799 ((or (get-buffer-window (car blist))
yuuji
parents: 79
diff changeset
1800 (and YaTeX-emacs-19
yuuji
parents: 79
diff changeset
1801 (get-buffer-window (car blist) t)))
yuuji
parents: 79
diff changeset
1802 (goto-buffer-window (car blist)))
yuuji
parents: 79
diff changeset
1803 (t
yuuji
parents: 79
diff changeset
1804 (switch-to-buffer (car blist))
yuuji
parents: 79
diff changeset
1805 (message foundmsg)))
yuuji
parents: 79
diff changeset
1806 (goto-char (match-beginning 0))
yuuji
parents: 79
diff changeset
1807 (throw 'found t))
yuuji
parents: 79
diff changeset
1808 ; cond2
yuuji
parents: 79
diff changeset
1809 ((and
yuuji
parents: 79
diff changeset
1810 (string-match "bibitem" scmd)
yuuji
parents: 79
diff changeset
1811 (catch 'found2
yuuji
parents: 79
diff changeset
1812 (save-excursion
yuuji
parents: 79
diff changeset
1813 (goto-char (point-min))
yuuji
parents: 79
diff changeset
1814 (while (YaTeX-re-search-active-forward
yuuji
parents: 79
diff changeset
1815 "\\\\bibliography{\\([^}]*\\)}" "%" nil t)
yuuji
parents: 79
diff changeset
1816 (setq fl (YaTeX-split-string (YaTeX-match-string 1) ","))
yuuji
parents: 79
diff changeset
1817 (while fl
yuuji
parents: 79
diff changeset
1818 (if (or (file-exists-p (setq fn (car fl)))
yuuji
parents: 79
diff changeset
1819 (file-exists-p (setq fn (concat fn ".bib"))))
yuuji
parents: 79
diff changeset
1820 (progn
yuuji
parents: 79
diff changeset
1821 (set-buffer (find-file-noselect fn))
yuuji
parents: 79
diff changeset
1822 (save-excursion
yuuji
parents: 79
diff changeset
1823 (goto-char (point-min))
yuuji
parents: 79
diff changeset
1824 (if (YaTeX-re-search-active-forward
yuuji
parents: 79
diff changeset
1825 string "%" nil t)
yuuji
parents: 79
diff changeset
1826 (throw 'found2
yuuji
parents: 79
diff changeset
1827 (set-marker fp (point)))))))
yuuji
parents: 79
diff changeset
1828 (setq fl (cdr fl)))))))
yuuji
parents: 79
diff changeset
1829 (if otherwin
yuuji
parents: 79
diff changeset
1830 (funcall goother (marker-buffer fp) fp)
yuuji
parents: 79
diff changeset
1831 (switch-to-buffer (marker-buffer fp))
yuuji
parents: 79
diff changeset
1832 (goto-char fp))
yuuji
parents: 79
diff changeset
1833 (set-marker fp nil)
yuuji
parents: 79
diff changeset
1834 (message foundmsg)
yuuji
parents: 79
diff changeset
1835 (throw 'found t)))
yuuji
parents: 79
diff changeset
1836 (setq blist (cdr blist)))
yuuji
parents: 79
diff changeset
1837 ;; search for bibliography
yuuji
parents: 79
diff changeset
1838 )))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
1839 (if YaTeX-emacs-19
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1840 (setq regexp-search-ring
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1841 (cons string (delete string regexp-search-ring)))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1842 (setq search-last-regexp string)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1843 (t nil))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1844
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
1845 ;;YaTeX-goto-corresponding-environment was moved to yatexlib
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1846
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1847 (defun YaTeX-goto-corresponding-file (&optional other)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1848 "Visit or switch buffer of corresponding file,
176
ad313119ba15 Add `alltt' to YaTeX-verb-regexp.
yuuji@gentei.org
parents: 169
diff changeset
1849 looking at \\input or \\include or \\includeonly on current line."
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1850 (if (not (YaTeX-on-includes-p)) nil
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1851 (let ((parent buffer-file-name) input-file b)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1852 (save-excursion
86
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
1853 (if (and (re-search-forward "[{%]" (point-end-of-line) t)
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
1854 (= ?{ (char-after (match-beginning 0))))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1855 nil
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1856 (skip-chars-backward "^,{"))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1857 (setq input-file
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
1858 (YaTeX-buffer-substring
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1859 (point) (progn (skip-chars-forward "^ ,}") (point))))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1860 (if (not (string-match "\\.\\(tex\\|sty\\)$" input-file))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1861 (setq input-file (concat input-file ".tex"))))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1862 (cond
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1863 (other (YaTeX-switch-to-buffer-other-window input-file))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1864 ((setq b (YaTeX-get-file-buffer input-file))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1865 (goto-buffer-window b))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1866 (t (YaTeX-switch-to-buffer input-file)))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1867 (or (YaTeX-get-builtin "!")
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1868 YaTeX-parent-file
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1869 (setq YaTeX-parent-file parent)))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1870
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1871 (defun YaTeX-goto-corresponding-BEGIN-END ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1872 (if (not (YaTeX-on-BEGIN-END-p)) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1873 (if (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1874 ((equal (match-beginning 0) (match-beginning 1)) ;if on %#BEGIN
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1875 (not (search-forward "%#END" nil t)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1876 (t ; if on %#END
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1877 (not (search-backward "%#BEGIN" nil t))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
1878 (error "Corresponding %%#BEGIN/END not found."))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1879 (beginning-of-line)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1880 t))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
1881
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1882 (defvar YaTeX-processed-file-regexp-alist nil
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1883 "Alist of regexp of processed file regexp vs. its file name part;
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1884 For example, if you include image file with `\\epsfile{file=FILE}' where
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1885 `FILE' is processed file. You might want to view FILE with other previewer
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1886 such as ghostview, or want to preview its source which was drawn with
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1887 other drawing tool, tgif for example. Then you should set entire regexp
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1888 of including expression and enclose its file name part with \\\\( and \\\\).
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1889
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1890 Ex. (\"\\\\\\\\epsfile{[^}]*file=\\\\([^,} ]+\\\\)\\\\(\\\\.e?ps\\\\)?[^}]*}\" 1)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1891
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1892 Where the first group surrounded by \\\\( and \\\\) is the file name part
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1893 of expression. So you should set 1 to second element. And the first
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1894 matching group is sent to (image) processor defined by the variable
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1895 YaTeX-file-processor-alist. See also the documentation of
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1896 YaTeX-file-processor-alist.
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1897
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1898 ª‚¶‚á—Ç‚­‚í‚©‚ñ‚È‚¢‚·‚ËB—Ⴆ‚Î tgif hoge.obj ‚µ‚Ä hoge.eps ‚ð
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1899 \\epsfile{file=hoge.eps} ‚ŃCƒ“ƒNƒ‹[ƒh‚µ‚Ä‚¢‚é‚Æ‚µ‚悤B‚»‚Ìs‚Å
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1900 \[prefix\] g ‚ð‰Ÿ‚µ‚½Žž‚É tgif ‚ð‹N“®‚µ‚Ä—~‚µ‚©‚Á‚½‚çA‚Ü‚¸ã‚̂悤‚È
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1901 ³‹K•\Œ»‚ðÝ’è‚·‚éB\\\\(‚Æ\\\\)‚ň͂ñ‚¾‚Æ‚±‚낪ƒtƒ@ƒCƒ‹–¼‚É‚È‚é‚悤‚É
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1902 ’ˆÓ‚·‚éB‚Ńtƒ@ƒCƒ‹–¼•”•ª‚ª‰½”Ô–Ú‚Ì\\\\(\\\\)‚É‚È‚é‚©‚ðƒŠƒXƒg‚Ì2”Ô–Ú‚É‘‚­B
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1903 ‚·‚é‚ÆA‚»‚Ì•”•ª‚ª•Ï” YaTeX-file-processor-alist ‚Å’è‹`‚³‚ꂽ
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1904 ˆ—ƒvƒƒOƒ‰ƒ€‚É“n‚³‚ê‚éB‚Æ‚¢‚¤‚킯B
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1905 ‚ñ`‚â‚Á‚Ï‚è‚Þ‚¸‚©‚µ‚¢‚ËB•ª‚©‚ç‚È‚¢Žž‚Í—×‚Ì Lisper ‚É•·‚­‚©A
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1906 fj–ì’¹‚̉ï‚Å•·‚±‚¤!
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1907 ")
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1908
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1909 (defvar YaTeX-processed-file-regexp-alist-default
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
1910 '(("\\\\epsfile\\(\\[[^]]+\\]\\)?{[^},]*file=\\(\\([^,} ]*/\\)?[^,}. ]+\\)\\(\\.e?ps\\)?[^}]*}" 2)
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1911 ("\\\\epsfig{[^},]*fi\\(le\\|gure\\)=\\(\\([^,} ]*/\\)?[^,}. ]+\\)\\(\\.e?ps\\)?[^}]*}" 2)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1912 ("\\\\postscriptbox{[^}]*}{[^}]*}{\\(\\([^,} ]*/\\)?[^}. ]+\\)\\(\\.e?ps\\)?}" 1)
274
27aaf7d5e513 Candidate: change default file processor.
HIROSE Yuuji <yuuji@gentei.org>
parents: 271
diff changeset
1913 ("\\\\\\(epsfbox\\|epsfig\\)\\*?{\\(\\([^,} ]*/\\)?[^}. ]+\\)\\(\\.e?ps\\)?}" 2) ;\epsfbox{hoge.ps}
275
45350f20793d Fix regexp for \includegraphics
HIROSE Yuuji <yuuji@koeki-u.ac.jp>
parents: 274
diff changeset
1914 ("\\\\includegraphics\\*?\\(.*\\]\\|\\s \\)?{\\(.*\\)\\(\\.ai\\|\\.pdf\\|\\.svg\\|\\.png\\|\\.jpe?g\\|\\.e?ps\\)}" 2) ;\includegraphics[options...]{hoge.eps}
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1915 ("\\\\\\(psbox\\)\\(\\[[^]]+\\]\\)?{\\(\\([^,} ]*/\\)?[^} ]+\\)\\(\\.e?ps\\)}" 3) ;\psbox[options...]{hoge.eps} (97/1/11)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
1916 ("\\\\input{\\([^} ]+\\)\\(\\.tps\\)}" 1) ;tgif2tex (1998/9/16)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1917 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1918 "See the documentation of YaTeX-processed-file-regexp-alist.")
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1919
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1920 (defvar YaTeX-file-processor-alist nil
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1921 "*Alist of files' processor vs. its extension;
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1922 See also the documentation of YaTeX-processed-file-regexp-alist.")
274
27aaf7d5e513 Candidate: change default file processor.
HIROSE Yuuji <yuuji@gentei.org>
parents: 271
diff changeset
1923
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1924 (defvar YaTeX-file-processor-alist-default
334
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1925 (list (cons YaTeX-cmd-tgif ".obj")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1926 (cons YaTeX-cmd-gimp ".xcf")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1927 (cons YaTeX-cmd-gimp ".xcf.gz")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1928 (cons YaTeX-cmd-gimp ".xcf.bz2")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1929 (cons YaTeX-cmd-edit-svg ".svg")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1930 (cons YaTeX-cmd-edit-svg ".svgz")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1931 (cons YaTeX-cmd-edit-ai ".ai")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1932 '("dia" . ".dia")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1933 (cons YaTeX-cmd-ooo ".odg")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1934 (cons YaTeX-cmd-edit-images ".jpeg")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1935 (cons YaTeX-cmd-edit-images ".jpg")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1936 (cons YaTeX-cmd-edit-images ".png")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1937 (cons YaTeX-cmd-edit-ps ".ps")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1938 (cons YaTeX-cmd-edit-ps ".eps")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1939 (cons YaTeX-cmd-edit-pdf ".pdf")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1940 '(t . ".tex")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1941 '(t . ".sty")
914b56a1386a Parameterize external commands
HIROSE Yuuji <yuuji@gentei.org>
parents: 330
diff changeset
1942 '(t . ""))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
1943 "See the documentation of YaTeX-file-processor-alist.")
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1944
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1945 (defun YaTeX-goto-corresponding-file-processor (&optional other)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1946 "Execute corresponding file processor."
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1947 (save-excursion
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1948 (or (looking-at YaTeX-ec-regexp)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1949 (skip-chars-backward (concat "^" YaTeX-ec) (point-beginning-of-line)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1950 (let ((list (append YaTeX-processed-file-regexp-alist
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1951 YaTeX-processed-file-regexp-alist-default))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1952 (p (point)) flist file
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1953 (peol (point-end-of-line))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1954 (basedir
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1955 (if YaTeX-search-file-from-top-directory
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1956 (save-excursion (YaTeX-visit-main t) default-directory)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1957 ".")))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1958 (setq flist (catch 'found
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1959 (while list
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1960 (goto-char p)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1961 (if (re-search-forward (car (car list)) peol t)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1962 (progn
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1963 (setq file (YaTeX-match-string
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1964 (car (cdr (car list)))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1965 (throw 'found (cdr (car list)))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1966 (setq list (cdr list)))))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1967 (if flist ;if pattern and file name found
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1968 (let*((plist (append YaTeX-file-processor-alist
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1969 YaTeX-file-processor-alist-default))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1970 (plist0 plist)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1971 ext cmd src buf (alt (car (cdr flist))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1972 (if (and (re-search-forward
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1973 (concat YaTeX-comment-prefix "\\s *\\(.*\\)$") peol t)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1974 (assoc (setq cmd (YaTeX-match-string 1))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1975 YaTeX-file-processor-alist))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1976 (setq src ;if processor is specified
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1977 (concat file
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1978 (cdr (assoc cmd YaTeX-file-processor-alist))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1979 (while plist ;if processor is not specified
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1980 (setq ext (cdr (car plist)))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
1981 (if (and (string< "" (concat file ext))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1982 (file-exists-p
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1983 (expand-file-name (concat file ext) basedir)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1984 (setq cmd (car (car plist))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1985 src (concat file ext) plist nil))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1986 (setq plist (cdr plist)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1987 (if (and (null src) alt YaTeX-create-file-prefix-g)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1988 (setq cmd alt
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1989 src (concat file (cdr (assoc alt plist0))))))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1990 (if src ;if processor and src file found
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1991 (let ((default-directory basedir))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
1992 (cond
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1993 ((stringp cmd)
351
0fc7ea5baa5f YaTeX-system takes two more args for utilization from YaTeX-preview-jump-file.
HIROSE Yuuji <yuuji@gentei.org>
parents: 350
diff changeset
1994 (YaTeX-system (concat cmd " " src) cmd)
0fc7ea5baa5f YaTeX-system takes two more args for utilization from YaTeX-preview-jump-file.
HIROSE Yuuji <yuuji@gentei.org>
parents: 350
diff changeset
1995 t)
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1996 ((eq t cmd)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1997 (let ((parent buffer-file-name))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1998 (funcall
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
1999 (cond
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2000 (other 'YaTeX-switch-to-buffer-other-window)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2001 ((get-file-buffer src) 'goto-buffer-window)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2002 (t 'YaTeX-switch-to-buffer))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2003 src)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2004 (or (YaTeX-get-builtin "!")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2005 YaTeX-parent-file
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2006 (setq YaTeX-parent-file parent))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2007 t))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2008 ((symbolp cmd)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2009 (cond
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2010 ((symbol-function cmd)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2011 (funcall cmd src other)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2012 t)))))))))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2013
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
2014 (defun YaTeX-on-section-command-p (command)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2015 "Check if point is on the LaTeX command: COMMAND(regexp).
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2016 Return nil if point is not on it. Otherwise return the
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2017 number of argument position.
82
yuuji
parents: 79
diff changeset
2018 Section command name is stored in match-data #1.
yuuji
parents: 79
diff changeset
2019 Parsing information is stored to plist.
yuuji
parents: 79
diff changeset
2020 Macros name stored to propname 'command.
yuuji
parents: 79
diff changeset
2021 Macro's argument number stored to propname 'argc."
yuuji
parents: 79
diff changeset
2022 (let ((p (point)) md (parg 0) (argc 1) word (grouping 0) (i 0)
yuuji
parents: 79
diff changeset
2023 (ec+command (concat YaTeX-ec-regexp "\\(" command "\\)")))
yuuji
parents: 79
diff changeset
2024 (setplist 'YaTeX-on-section-command-p nil)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2025 (while (setq i (string-match "\\\\(" command i))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2026 (setq grouping (1+ grouping) i (+ i 2)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2027 (save-excursion
82
yuuji
parents: 79
diff changeset
2028 (if (looking-at ec+command) nil
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2029 (catch 'found ;caught value has no meaning
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2030 ;;(1) looking at current position
82
yuuji
parents: 79
diff changeset
2031 (and (looking-at command)
yuuji
parents: 79
diff changeset
2032 (save-excursion
yuuji
parents: 79
diff changeset
2033 (while (and (not (bobp)) (looking-at command))
yuuji
parents: 79
diff changeset
2034 (forward-char -1))
yuuji
parents: 79
diff changeset
2035 (looking-at ec+command))
yuuji
parents: 79
diff changeset
2036 (goto-char (match-beginning 0))
yuuji
parents: 79
diff changeset
2037 (throw 'found t))
245
8ad85ce1ee98 YaTeX-on-section-command-p tries to escape parentheses.
yuuji@gentei.org
parents: 240
diff changeset
2038 ;;If inside of parentheses, try to escape.
327
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
2039 (while (and (not (= (preceding-char) ?\])) ;skip optional arg
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
2040 (condition-case err
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
2041 (progn (up-list -1) t)
2bc5b59840d5 Change default previewer after [prefix]td
HIROSE Yuuji <yuuji@gentei.org>
parents: 323
diff changeset
2042 (error nil))))
245
8ad85ce1ee98 YaTeX-on-section-command-p tries to escape parentheses.
yuuji@gentei.org
parents: 240
diff changeset
2043 (while (equal (preceding-char) ?\]) (backward-list))
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2044 ;;(2) search command directly
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2045 (skip-chars-forward "^{}[]")
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2046 (and (YaTeX-re-search-active-backward
82
yuuji
parents: 79
diff changeset
2047 ec+command
yuuji
parents: 79
diff changeset
2048 YaTeX-comment-prefix nil t)
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2049 (>= p (match-beginning 0))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2050 (throw 'found (goto-char (match-beginning 0))))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2051 ;;(3) search token
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2052 (goto-char p)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2053 (while t
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2054 (if (bobp) (throw 'found nil))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2055 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2056 ((looking-at YaTeX-ec-regexp) (throw 'found t))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2057 ((looking-at "[[{]") nil)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2058 ((looking-at "[]}]")(condition-case nil (up-list -1) (error nil)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2059 (t (skip-chars-backward " \t\r\n")))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2060 (skip-chars-backward (concat "^ \t\r\n{}[]" YaTeX-ec-regexp))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2061 (or (bobp) (forward-char -1)))))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2062 (if (and
82
yuuji
parents: 79
diff changeset
2063 (looking-at (concat ec+command
yuuji
parents: 79
diff changeset
2064 "\\(\\(\\[[^]]+\\]\\|([0-9,]+)\\)*\\)" ;optional arg
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2065 ;"[ \t\n\r]*{[^}]+}")) ;arg braces
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2066 "[ \t\n\r]*{[^}]*}")) ;arg braces
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2067 (not (YaTeX-lookup-table
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2068 (setq word (YaTeX-match-string 1)) 'singlecmd)))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2069 (progn
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2070 (setq md (match-data))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2071 (skip-chars-forward "^{")
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2072 (if (<= (point) p) (setq parg (1+ parg)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2073 (setq argc
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2074 (or (car (cdr (YaTeX-lookup-table word 'section)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2075 argc))
82
yuuji
parents: 79
diff changeset
2076 (put 'YaTeX-on-section-command-p 'argc argc)
yuuji
parents: 79
diff changeset
2077 (put 'YaTeX-on-section-command-p 'command argc)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2078 (while (and (>= (setq argc (1- argc)) 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2079 (progn (skip-chars-forward " \t\n\r")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2080 (looking-at "{")))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2081 (forward-list 1)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2082 (if (<= (point) p) (setq parg (1+ parg))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2083 (store-match-data md)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2084 (setq i (+ 2 grouping))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2085 (if (and (match-beginning i)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2086 (>= p (match-beginning i)) (< p (match-end i)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2087 -1 ;return -1 if point is on optional arg
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2088 (if (< p (point)) parg))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2089 )))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2090
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2091 (defun YaTeX-on-maketitle-p ()
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2092 "Check if point is on maketitle type commands.
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2093 Call this function after YaTeX-on-section-command-p."
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2094 (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2095 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2096 (or (= (char-after (point)) ?\\ )
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2097 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2098 (skip-chars-backward
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2099 (concat "^" YaTeX-ec-regexp) (point-beginning-of-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2100 (or (bobp) (bolp) (backward-char 1))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2101 (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
2102 (<= (match-beginning 0) p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2103 (> (match-end 0) p)))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2104
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2105 (defun YaTeX-on-begin-end-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2106 (save-excursion
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2107 (if (and (boundp 'in-leftright-p) in-leftright-p)
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2108 ;; Dirty workaround for YaTeX-goto-corresponding-leftright 2003/3/28
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2109 (let ((md (match-data))) ; for safety
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2110 (if (looking-at YaTeX-ec-regexp)
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2111 nil ; stay here
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2112 (cond
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2113 ((looking-at "\\w") (skip-chars-backward "A-Za-z"))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2114 ((looking-at "\\.()\\[\\]|") (forward-char -1)))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2115 (if (equal (char-after (1- (point)))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2116 (string-to-char YaTeX-ec))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2117 (forward-char -1))))
82
yuuji
parents: 79
diff changeset
2118 ;(beginning-of-line)
yuuji
parents: 79
diff changeset
2119 (if (equal (char-after (point)) ?\\) nil ;stay here
yuuji
parents: 79
diff changeset
2120 (skip-chars-backward "^\n\\\\")
yuuji
parents: 79
diff changeset
2121 (or (bolp) (forward-char -1))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2122 (re-search-forward
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2123 ;;"\\\\begin{\\([^}]+\\)}\\|\\\\end{\\([^}]+\\)}"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2124 (concat
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2125 (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2126 (regexp-quote YaTeX-struct-begin)
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2127 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" "")
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2128 "\\|"
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2129 (YaTeX-replace-format-args
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2130 (regexp-quote YaTeX-struct-end)
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2131 (concat "\\(" YaTeX-struct-name-regexp "\\)") "" "" "")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2132 "\\|\\("
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2133 YaTeX-ec-regexp ;;"[][()]\\)"
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2134 "[][]\\)"
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2135 )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2136 (point-end-of-line) t)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2137
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2138 (defun YaTeX-on-includes-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2139 (save-excursion
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2140 (beginning-of-line)
86
f14ec50103d0 as of 2009/9/28
yuuji@gentei.org
parents: 82
diff changeset
2141 (re-search-forward "\\(\\(include[^}]*\\)\\|\\(input\\)\\){[^}]*}"
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2142 (point-end-of-line) t)))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2143
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2144 (defun YaTeX-on-comment-p (&optional sw)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2145 "Return t if current line is commented out.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2146 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
2147 even if on `%#' notation."
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2148 (save-excursion
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2149 (beginning-of-line)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2150 (skip-chars-forward "\\s ")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2151 (looking-at (if sw "%" "%[^#]"))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2152
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2153 (defun YaTeX-on-BEGIN-END-p ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2154 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2155 (let ((case-fold-search nil))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2156 (beginning-of-line)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2157 (re-search-forward
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2158 "\\(%#BEGIN\\)\\|\\(%#END\\)" (point-end-of-line) t))))
6
49be9ccb0b65 Temporary dictionary.
yuuji
parents: 5
diff changeset
2159
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2160 (defun YaTeX-goto-corresponding-* (arg)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2161 "Parse current line and call suitable function."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2162 (interactive "P")
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2163 (let (mm)
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2164 (cond
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2165 ((YaTeX-goto-corresponding-label arg))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2166 ((YaTeX-goto-corresponding-environment))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2167 ((YaTeX-goto-corresponding-file-processor arg))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2168 ((YaTeX-goto-corresponding-file arg))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2169 ((YaTeX-goto-corresponding-BEGIN-END))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2170 ((and (setq mm (YaTeX-in-math-mode-p))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2171 (YaTeX-goto-corresponding-leftright)))
82
yuuji
parents: 79
diff changeset
2172 ((and ;;mm YaTeX-use-AMS-LaTeX
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2173 (YaTeX-goto-corresponding-paren)))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2174 ;;((and (string-match
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2175 ;; YaTeX-equation-env-regexp ;to delay loading
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2176 ;; (or (YaTeX-inner-environment t) "document"))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2177 ;; (YaTeX-goto-corresponding-leftright)))
350
91ba61bb536e [prefix] g calls forward-search of previewers if -src is given to typesetting.
HIROSE Yuuji <yuuji@gentei.org>
parents: 347
diff changeset
2178 ((YaTeX-goto-corresponding-viewer))
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2179 (t (message "I don't know where to go.")))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2180
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2181 (defun YaTeX-goto-corresponding-*-other-window (arg)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2182 "Parse current line and call suitable function."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2183 (interactive "P")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2184 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2185 ((YaTeX-goto-corresponding-label arg t))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2186 ;;((YaTeX-goto-corresponding-environment))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2187 ((YaTeX-goto-corresponding-file t))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2188 ;;((YaTeX-goto-corresponding-BEGIN-END))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2189 (t (message "I don't know where to go."))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2190
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2191 (defun YaTeX-comment-region (alt-prefix)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2192 "Comment out region by '%'.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2193 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
2194 it comments out whole environment"
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2195 (interactive "P")
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2196 (if (not (YaTeX-on-begin-end-p))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2197 (comment-out-region
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2198 (if alt-prefix
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2199 (read-string "Insert prefix: ")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2200 YaTeX-comment-prefix))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2201 (YaTeX-comment-uncomment-env 'comment-out-region)))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2202
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2203 (defun YaTeX-uncomment-region (alt-prefix)
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2204 "Uncomment out region by '%'."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2205 (interactive "P")
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2206 (if (not (YaTeX-on-begin-end-p))
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2207 (uncomment-out-region
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2208 (if alt-prefix (read-string "Remove prefix: ")
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
2209 YaTeX-comment-prefix)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2210 (region-beginning) (region-end) YaTeX-uncomment-once)
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2211 (YaTeX-comment-uncomment-env 'uncomment-out-region)))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2212
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2213 (defun YaTeX-comment-uncomment-env (func)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2214 "Comment or uncomment out one LaTeX environment switching function by FUNC."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2215 (let (beg (p (point)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2216 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2217 (beginning-of-line)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2218 (setq beg (point))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2219 (YaTeX-goto-corresponding-environment)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2220 (beginning-of-line)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2221 (if (> p (point)) (setq beg (1+ beg)) (forward-char 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2222 (funcall func YaTeX-comment-prefix beg (point) YaTeX-uncomment-once)))
45
b0fc9c2950cd Prepare for supporting Emacs-19.
yuuji
parents: 36
diff changeset
2223 (message "%sommented out current environment."
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2224 (if (eq func 'comment-out-region) "C" "Un-c")))
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2225
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2226 (defun YaTeX-comment-paragraph ()
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2227 "Comment out current paragraph."
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2228 (interactive)
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2229 (save-excursion
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2230 (cond
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2231 ((YaTeX-on-begin-end-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2232 (beginning-of-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2233 (insert YaTeX-comment-prefix)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2234 (YaTeX-goto-corresponding-environment)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2235 (beginning-of-line)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2236 (insert YaTeX-comment-prefix))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2237 ((YaTeX-on-comment-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2238 (message "Already commented out."))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2239 (t
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2240 (mark-paragraph)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2241 (if (looking-at paragraph-separate) (forward-line 1))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2242 (comment-out-region "%")))))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2243
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2244 (defun YaTeX-uncomment-paragraph ()
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2245 "Uncomment current paragraph."
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2246 (interactive)
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2247 (save-excursion
4
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2248 (if (YaTeX-on-begin-end-p)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2249 (let ((p (point-marker)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2250 (YaTeX-goto-corresponding-environment)
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
2251 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2252 (goto-char p)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2253 (YaTeX-remove-prefix YaTeX-comment-prefix YaTeX-uncomment-once)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2254 (set-marker p nil))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2255 (if (YaTeX-on-comment-p)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2256 (let*((fill-prefix "")
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2257 ;;append `^%' to head of paragraph delimiter.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2258 (paragraph-start
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2259 (concat
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2260 "^$\\|^%\\(" YaTeX-paragraph-separate "\\)"))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2261 (paragraph-separate paragraph-start))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2262 (mark-paragraph)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2263 (if (not (bobp)) (forward-line 1))
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
2264 (uncomment-out-region "%" nil nil YaTeX-uncomment-once))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2265 (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
2266
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2267 (defun YaTeX-remove-prefix (prefix &optional once)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2268 "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
2269 optional argument ONCE makes deletion once."
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2270 (interactive "sPrefix:")
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2271 (beginning-of-line)
78dfe28b6a35 Provide service function to define begin/end insert key-bind.
yuuji
parents: 3
diff changeset
2272 (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
2273 (replace-match "")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2274 (if once (end-of-line))))
3
191610912c8b Add comment out region/paragraph.
yuuji
parents: 1
diff changeset
2275
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2276 (defun YaTeX-kill-some-pairs (predicate gofunc kill-contents)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2277 "Kill some matching pair.
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2278 This function assumes that pairs occupy whole of each line where they resid."
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2279 (if (not (funcall predicate)) nil
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2280 (let ((b1 (match-beginning 0)) (e1 (match-end 0))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2281 b2 e2)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2282 (save-excursion
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2283 (funcall gofunc)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2284 (funcall predicate) ;get match data
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2285 (if (< (point) e1) ;if currently on begin-line
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2286 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2287 (setq b2 b1 e2 e1
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2288 b1 (match-beginning 0) e1 (match-end 0))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2289 (goto-char e2)) ;goto end-line's end
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2290 (setq b2 (match-beginning 0)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2291 e2 (match-end 0))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2292 (goto-char e2)) ;now e2 has surely end-line's end
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2293 (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2294 (and (eolp)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2295 (not (eobp))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2296 (setq e2 (1+ (point))))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2297 (if (not kill-contents)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2298 (kill-region
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2299 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2300 (goto-char b2)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2301 (skip-chars-backward " \t%")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2302 (if (bolp) (point) b2))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2303 e2))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2304 (goto-char b1)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2305 (skip-chars-backward " \t%")
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2306 (if (not kill-contents)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2307 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2308 (kill-append
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2309 (buffer-substring
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2310 (setq b1 (if (bolp) (point) b1))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2311 (setq e1
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2312 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2313 (goto-char e1)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2314 (while (looking-at "{\\| \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2315 (forward-list 1))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2316 (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2317 (if (and (eolp) (not (eobp)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2318 (1+ (point))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2319 (point)))))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2320 t)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2321 (delete-region b1 e1))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2322 (kill-region
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2323 (if (bolp) (point) b1)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2324 e2)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2325 t)))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2326
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2327 (defun YaTeX-kill-section-command (point kill-all)
82
yuuji
parents: 79
diff changeset
2328 "Kill section-type command at POINT leaving its last argument.
yuuji
parents: 79
diff changeset
2329 Non-nil for the second argument kill its last argument too."
yuuji
parents: 79
diff changeset
2330 (let ((cmd (get 'YaTeX-on-section-command-p 'command))
yuuji
parents: 79
diff changeset
2331 (argc (get 'YaTeX-on-section-command-p 'argc))
yuuji
parents: 79
diff changeset
2332 beg (end (make-marker)))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
2333 (save-excursion
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2334 (goto-char point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2335 (or (looking-at YaTeX-ec-regexp)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2336 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2337 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2338 (forward-char -1)))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2339 (setq beg (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2340 (skip-chars-forward "^{")
82
yuuji
parents: 79
diff changeset
2341 (while (> (setq argc (1- argc)) 0)
yuuji
parents: 79
diff changeset
2342 (skip-chars-forward "^{")
yuuji
parents: 79
diff changeset
2343 (forward-list 1))
yuuji
parents: 79
diff changeset
2344 (kill-region beg (point))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2345 (forward-list 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2346 (set-marker end (point))
82
yuuji
parents: 79
diff changeset
2347 (if kill-all
yuuji
parents: 79
diff changeset
2348 (progn
yuuji
parents: 79
diff changeset
2349 (kill-append (buffer-substring beg end) nil)
yuuji
parents: 79
diff changeset
2350 (delete-region beg end))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2351 (goto-char beg)
82
yuuji
parents: 79
diff changeset
2352 (kill-append
yuuji
parents: 79
diff changeset
2353 (buffer-substring
yuuji
parents: 79
diff changeset
2354 (point) (progn (skip-chars-forward "^{" end) (1+ (point))))
yuuji
parents: 79
diff changeset
2355 nil)
yuuji
parents: 79
diff changeset
2356 (delete-region beg (1+ (point)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2357 (goto-char end)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2358 (set-marker end nil)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2359 (kill-append (buffer-substring (point) (1- (point))) nil)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2360 (delete-backward-char 1)))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
2361
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2362 (defun YaTeX-kill-paren (kill-contents)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2363 "Kill parentheses leaving its contents.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2364 But kill its contents if the argument KILL-CONTENTS is non-nil."
79
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2365 (interactive "P")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2366 (let (p bsl (backslash-syntax (char-to-string (char-syntax ?\\)))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2367 (md (match-data)))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2368 (unwind-protect
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2369 (save-excursion
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2370 (modify-syntax-entry ?\\ " ")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2371 (if (looking-at "\\s(\\|\\(\\s)\\)")
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2372 (progn
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2373 (if (match-beginning 1)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2374 (up-list -1))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2375 (if (and (> (point) (point-min))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2376 (= (char-after (1- (point))) ?\\ ))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2377 (setq p (1- (point)) bsl t)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2378 (setq p (point)))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2379 (forward-list 1)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2380 ;(YaTeX-goto-open-paren t)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2381 (if kill-contents (delete-region p (point))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2382 (backward-delete-char 1)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2383 (cond
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2384 ((save-excursion
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2385 (forward-char -2)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2386 (looking-at (concat YaTeX-ec-regexp "/")))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2387 (backward-delete-char 2))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2388 ((= (char-after (1- (point))) ?\\)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2389 (backward-delete-char 1)))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2390 (goto-char p)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2391 (if (looking-at
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2392 (concat "{" YaTeX-ec-regexp
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2393 YaTeX-command-token-regexp "+"
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2394 "\\s +"))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2395 (delete-region (point) (match-end 0))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2396 (delete-char 1)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2397 (if bsl (delete-char 1))))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2398 t)))
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2399 (modify-syntax-entry ?\\ backslash-syntax)
0734be649cb8 Do not care file-coding-system when YaTeX-kanji-code is nil.
yuuji
parents: 77
diff changeset
2400 (store-match-data md))))
14
b7b023a74293 Region-based section-type completion.
yuuji
parents: 13
diff changeset
2401
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2402 (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
2403 (put 'YaTeX-read-environment-history 'no-default t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2404 (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
2405 "Read a LaTeX environment name with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2406 (YaTeX-sync-local-table 'tmp-env-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2407 (completing-read-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2408 prompt
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2409 (append tmp-env-table user-env-table env-table)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2410 predicate must-match initial
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2411 'YaTeX-read-environment-history))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2412
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2413 (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
2414 (put 'YaTeX-read-section-history 'no-default t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2415 (defun YaTeX-read-section (prompt &optional predicate initial)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2416 "Read a LaTeX section-type command with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2417 (YaTeX-sync-local-table 'tmp-section-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2418 (let ((minibuffer-completion-table
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2419 (append tmp-section-table user-section-table section-table)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2420 (read-from-minibuffer-with-history
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2421 prompt initial YaTeX-section-completion-map nil
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2422 'YaTeX-read-section-history)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2423
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2424 (defun YaTeX-read-section-with-overview ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2425 "Read sectioning command with overview.
119
34096706b634 Bind local variable source-window for YaTeX-read-section-with-overview
yuuji@gentei.org
parents: 107
diff changeset
2426 This function refers a local variable `source-window' in YaTeX-make-section,
34096706b634 Bind local variable source-window for YaTeX-read-section-with-overview
yuuji@gentei.org
parents: 107
diff changeset
2427 because this function is called with no argument."
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2428 (interactive)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2429 (require 'yatexsec) ;some case needs this
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2430 (if (> (minibuffer-depth) 1)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2431 (error "Too many minibuffer levels for overview."))
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2432 (let ((sw (selected-window))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2433 (minibuffer-max-depth nil) ; for XEmacs20
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
2434 (enable-recursive-minibuffers t) sect)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2435 (unwind-protect
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2436 (progn
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2437 (select-window source-window)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2438 (setq sect (YaTeX-read-section-in-minibuffer
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2439 "Sectioning(Up=C-p, Down=C-n, Help=?): "
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2440 YaTeX-sectioning-level (YaTeX-section-overview))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2441 (select-window sw))
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
2442 (YaTeX-minibuffer-erase)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2443 (insert sect)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2444 (exit-minibuffer)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2445
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2446 (defvar YaTeX-read-fontsize-history nil "Holds history of font designator.")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2447 (put 'YaTeX-read-fontsize-history 'no-default t)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2448 (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
2449 "Read a LaTeX font changing command with completion."
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2450 (YaTeX-sync-local-table 'tmp-fontsize-table)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2451 (completing-read-with-history
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2452 prompt (append tmp-fontsize-table user-fontsize-table fontsize-table)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2453 predicate must-match initial 'YaTeX-read-fontsize-history))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2454
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2455 (defun YaTeX-change-environment ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2456 "Change the name of environment."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2457 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2458 (if (not (YaTeX-on-begin-end-p)) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2459 (save-excursion
179
a925cf5222f3 mew, skk
yuuji@gentei.org
parents: 177
diff changeset
2460 (let (p env newenv (m1 (match-beginning 1)) (m2 (match-beginning 2)))
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2461 (setq env (if m1 (YaTeX-buffer-substring m1 (match-end 1))
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2462 (YaTeX-buffer-substring m2 (match-end 2))))
11
390df0e505da Label completion works.
yuuji
parents: 7
diff changeset
2463 (goto-char (match-beginning 0))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2464 (set-mark-command nil)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2465 (YaTeX-goto-corresponding-environment)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2466 (setq newenv (YaTeX-read-environment
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2467 (format "Change environment `%s' to: " env)))
13
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2468 (cond
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2469 ((string= newenv "") (message "Change environment cancelled."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2470 ((string= newenv env) (message "No need to change."))
eafae54794a0 Show message at comment-region on begin/end mode.
yuuji
parents: 12
diff changeset
2471 (t
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2472 (search-forward (concat "{" env) (point-end-of-line) t)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2473 (replace-match (concat "{" newenv) t)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2474 (exchange-point-and-mark)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2475 (search-forward (concat "{" env) (point-end-of-line) t)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2476 (replace-match (concat "{" newenv) t)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2477 t))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2478
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2479 (defun YaTeX-change-section ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2480 "Change section-type command."
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2481 (interactive)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2482 (let*((where (YaTeX-on-section-command-p YaTeX-command-token-regexp))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2483 (p (point)) (cmd (YaTeX-match-string 1))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2484 (beg (make-marker)) (end (make-marker)) old new)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2485 (if (null where) nil
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2486 (unwind-protect
119
34096706b634 Bind local variable source-window for YaTeX-read-section-with-overview
yuuji@gentei.org
parents: 107
diff changeset
2487 (let ((source-window (selected-window)))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2488 (cond
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2489 ((equal where 0);;if point is on section command
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2490 (set-marker beg (match-beginning 1))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2491 (set-marker end (match-end 1))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2492 (goto-char beg) ;beginning of the command
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2493 (setq new (YaTeX-read-section
169
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2494 (format "Change `%s' to: " cmd) nil)
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2495 old cmd))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2496
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2497 ((= where -1);;if point is on a optional parameter
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2498 (set-marker beg (match-beginning 2))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2499 (skip-chars-forward "^{")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2500 (set-marker end (point))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2501 (goto-char p)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2502 (setq new
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2503 (if (fboundp (intern-soft (concat YaTeX-addin-prefix cmd)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2504 (YaTeX-addin cmd)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2505 (concat "["
169
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2506 (read-string
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2507 (format "Change `%s' to: "
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2508 (setq old (YaTeX-buffer-substring
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2509 (1+ beg) (1- end)))))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2510 "]"))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2511
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2512 ((> where 0);;if point is in arguments' braces
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2513 (or (looking-at "{")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2514 (progn (skip-chars-backward "^{") (forward-char -1)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2515 (set-marker beg (1+ (point)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2516 (forward-list 1)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2517 (forward-char -1)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2518 (set-marker end (point))
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2519 (setq old (YaTeX-buffer-substring beg end))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2520 (goto-char p)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2521 (if (> (length old) 40)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2522 (setq old (concat (substring old 0 12) "..."
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2523 (substring old -12))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2524 (setq new
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2525 (if (intern-soft (concat "YaTeX::" cmd))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2526 (funcall (intern-soft (concat "YaTeX::" cmd)) where)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2527 (read-string (format "Change `%s' to: " old)))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2528 ) ;cond
169
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2529 (if (string= old new)
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2530 nil ;do not replace
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2531 (delete-region beg end)
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2532 (goto-char beg)
0cb6c6a78e9e YaTeX-change-section: If new string equals to old one, do not change text.
yuuji@gentei.org
parents: 168
diff changeset
2533 (insert-before-markers new)))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2534 (set-marker beg nil)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2535 (set-marker end nil))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2536 ;;(goto-char (marker-position p))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2537 new)))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2538
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2539 (defun YaTeX-change-fontsize ()
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2540 "Change large-type command."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2541 (let ((lt (append tmp-fontsize-table user-fontsize-table fontsize-table))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2542 (p (point)) large old new beg end)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2543 ;;(and (looking-at "}") (up-list -1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2544 ;;(and (looking-at "{") (forward-char 1))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2545 ;;Is above convenient?
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2546 (save-excursion
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2547 (or (looking-at YaTeX-ec-regexp)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2548 (progn
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2549 (skip-chars-backward (concat "^" YaTeX-ec-regexp))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2550 (forward-char -1)))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2551 (cond
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2552 ((and
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2553 (looking-at
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2554 (concat YaTeX-ec-regexp "\\(" YaTeX-TeX-token-regexp "\\)"))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2555 (< p (match-end 0))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2556 (assoc (setq old (YaTeX-match-string 1)) lt))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2557 (goto-char p)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2558 (setq beg (match-beginning 1) end (match-end 1) ;save match position
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2559 new (completing-read
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2560 (format "Change font/size `%s' to : " old) lt))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2561 (delete-region beg end)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2562 (goto-char beg)
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2563 (insert-before-markers new)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2564 new)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2565 (t nil)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2566 ))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2567
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2568 (defun YaTeX-change-math-image ()
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2569 "Change with image completion."
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2570 (let (maketitle memberp beg end)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2571 (if (and (YaTeX-on-maketitle-p)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2572 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2573 (setq maketitle (substring (YaTeX-match-string 0) 1))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2574 (setq memberp (YaTeX-math-member-p maketitle))))
291
027c4e8d98ce Set last-command-event locally too.
HIROSE Yuuji <yuuji@gentei.org>
parents: 290
diff changeset
2575 (let*((last-command-char (string-to-char (car memberp)))
027c4e8d98ce Set last-command-event locally too.
HIROSE Yuuji <yuuji@gentei.org>
parents: 290
diff changeset
2576 (last-command-event last-command-char))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2577 (setq beg (match-beginning 0) end (match-end 0))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2578 (delete-region beg end)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2579 (YaTeX-math-insert-sequence t (cdr memberp))))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2580
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2581 (defun YaTeX-kill-* (&optional arg)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2582 "Parse current line and call suitable function.
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2583 Non-nil for ARG kills its contents too."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2584 (interactive "P")
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2585 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2586 ((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
2587 'YaTeX-goto-corresponding-environment arg))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2588 ((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
2589 'YaTeX-goto-corresponding-BEGIN-END arg))
32
546c4baad92f The first typesetting splits window into 3 on Nemacs. Fixed.
yuuji
parents: 22
diff changeset
2590 ((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
2591 (YaTeX-kill-section-command (match-beginning 0) arg))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2592 ((YaTeX-kill-paren arg))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2593 (t (message "I don't know what to kill."))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2594
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2595 (defun YaTeX-change-* ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2596 "Parse current line and call suitable function."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2597 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2598 (cond
82
yuuji
parents: 79
diff changeset
2599 ((YaTeX-change-parentheses))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2600 ((YaTeX-change-environment))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2601 ((YaTeX-change-section))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2602 ((YaTeX-change-fontsize))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2603 ((YaTeX-change-math-image))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2604 (t (message "I don't know what to change."))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2605
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2606 ;;;
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2607 ;Check availability of add-in functions
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2608 ;;;
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2609 (cond
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2610 ((featurep 'yatexadd) nil) ;Already provided.
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
2611 ((progn (load "yatexadd" t) (featurep 'yatexadd)) nil)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2612 (t (message "YaTeX add-in functions not supplied.")))
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2613
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2614 (defun YaTeX-addin (name)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2615 "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
2616 (if (and (not (get 'YaTeX-generate 'disabled))
57
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2617 (intern-soft (concat YaTeX-addin-prefix name))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2618 (fboundp (intern-soft (concat YaTeX-addin-prefix name))))
18f4939986e6 (j)LaTeX2e supported
yuuji
parents: 56
diff changeset
2619 (let ((s (funcall (intern (concat YaTeX-addin-prefix name)))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2620 (if (stringp s) s ""))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2621 "")) ;Add in function is not bound.
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2622
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2623
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2624 (defun YaTeX-on-item-p (&optional point)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2625 "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
2626 (let ((p (or point (point))))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2627 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2628 (goto-char p)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2629 (end-of-line)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2630 (setq p (point))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2631 (re-search-backward YaTeX-paragraph-delimiter nil t)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2632 (re-search-forward YaTeX-item-regexp p t))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2633
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2634 (defun YaTeX-in-verb-p (&optional point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2635 "Check if POINT is in verb or verb*. Default of POINT is (point)."
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2636 (setq point (or point (point)))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2637 (save-excursion
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2638 (let ((md (match-data)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2639 (goto-char point)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2640 (unwind-protect
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2641 (if (not (re-search-backward
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2642 (concat YaTeX-ec-regexp
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2643 "\\(" YaTeX-verb-regexp "\\)"
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2644 "\\([^-A-Za-z_*]\\)")
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2645 (point-beginning-of-line) t))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2646 nil
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2647 (goto-char (match-end 2))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2648 (skip-chars-forward
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2649 (concat "^" (YaTeX-buffer-substring
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2650 (match-beginning 2) (match-end 2))))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2651 (and (< (match-beginning 2) point) (< (1- point) (point))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2652 (store-match-data md)))))
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2653
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2654 (defun YaTeX-literal-p (&optional point)
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2655 "Check if POINT is in verb or verb* or verbatime environment family.
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2656 Default of POINT is (point)."
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2657 (let ((md (match-data)))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2658 (unwind-protect
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2659 (cond
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2660 ((equal YaTeX-ec "\\") ;maybe LaTeX
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2661 (save-excursion
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2662 (and point (goto-char point))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2663 (or (YaTeX-in-verb-p (point))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2664 (and (not (looking-at "\\\\end{verb"))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2665 (YaTeX-quick-in-environment-p
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2666 YaTeX-verbatim-environments))))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
2667 (store-match-data md))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2668
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2669 (defun YaTeX-in-environment-p (env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2670 "Return if current LaTeX environment is ENV.
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2671 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
2672 (let ((md (match-data)) (nest 0) p envrx)
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2673 (cond
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2674 ((atom env)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2675 (setq envrx
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2676 (concat "\\("
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2677 (regexp-quote
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2678 (YaTeX-replace-format-args
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2679 YaTeX-struct-begin env "" ""))
359
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
2680 "\\>\\)\\|\\("
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2681 (regexp-quote
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2682 (YaTeX-replace-format-args
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2683 YaTeX-struct-end env "" ""))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2684 "\\)"))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2685 (save-excursion
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2686 (setq p (catch 'open
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2687 (while (YaTeX-re-search-active-backward
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2688 envrx YaTeX-comment-prefix nil t)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2689 (if (match-beginning 2)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2690 (setq nest (1+ nest))
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2691 (setq nest (1- nest)))
129
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2692 (if (< nest 0)
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2693 (throw 'open (cons env (match-beginning 0)))))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2694 ((listp env)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2695 (setq p
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2696 (or (YaTeX-in-environment-p (car env))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2697 (and (cdr env) (YaTeX-in-environment-p (cdr env)))))))
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2698 (store-match-data md)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2699 p;(or p (YaTeX-in-verb-p (match-beginning 0)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2700 ))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2701
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2702 (defun YaTeX-quick-in-environment-p (env)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2703 "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
2704 ENV is given in the form of environment's name or its list.
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2705 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
2706 (save-excursion
129
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2707 (let ((md (match-data)) m0 (p (point)) rc clfound)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2708 (cond
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
2709 ((listp env)
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2710 (or (YaTeX-quick-in-environment-p (car env))
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
2711 (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
2712 (t
129
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2713 (unwind-protect
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2714 (if (prog1
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2715 (YaTeX-search-active-backward
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2716 (YaTeX-replace-format-args YaTeX-struct-begin env "" "")
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2717 YaTeX-comment-prefix nil t)
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2718 (setq m0 (match-beginning 0)))
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2719 (if (YaTeX-search-active-forward
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2720 (YaTeX-replace-format-args
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2721 YaTeX-struct-end env)
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2722 YaTeX-comment-prefix p t nil)
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2723 nil ;if \end{env} found, return nil
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2724 (cons env m0))) ;else, return meaningful values
b11d6271207e YaTeX-{quick-,}in-environment-p return cons of envname and the begpoint
yuuji@gentei.org
parents: 123
diff changeset
2725 (store-match-data md)))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2726
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2727 ;; Filling \item
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2728 (defun YaTeX-remove-trailing-comment (start end)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2729 "Remove trailing comment from START to end."
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2730 (save-excursion
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2731 (let ((trcom (concat YaTeX-comment-prefix "$")))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2732 (goto-char start)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2733 (while (re-search-forward trcom end t)
54
2d45e43fb35f Full support of English documents
yuuji
parents: 53
diff changeset
2734 (if (/= (char-after (1- (match-beginning 0))) ?\\ )
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2735 (replace-match "\\1"))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2736
82
yuuji
parents: 79
diff changeset
2737 (defvar YaTeX-itemize-withlabel-max-indent-depth 8)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2738 (defun YaTeX-get-item-info (&optional recent thisenv)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2739 "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
2740 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
2741 Non-nil for optional argument RECENT refers recent \\item.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2742 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
2743 (save-excursion
82
yuuji
parents: 79
diff changeset
2744 (let* ((p (point)) env e0 c cc md
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2745 (bndry (and (setq env (or thisenv (YaTeX-inner-environment t)))
82
yuuji
parents: 79
diff changeset
2746 (get 'YaTeX-inner-environment 'point))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2747 (end-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2748 (if (if recent
82
yuuji
parents: 79
diff changeset
2749 (catch 'found
yuuji
parents: 79
diff changeset
2750 (while (YaTeX-re-search-active-backward
yuuji
parents: 79
diff changeset
2751 YaTeX-item-regexp YaTeX-comment-prefix bndry t)
yuuji
parents: 79
diff changeset
2752 (setq md (match-data))
yuuji
parents: 79
diff changeset
2753 (YaTeX-inner-environment t)
yuuji
parents: 79
diff changeset
2754 (store-match-data md)
yuuji
parents: 79
diff changeset
2755 (if (= bndry (get 'YaTeX-inner-environment 'point))
yuuji
parents: 79
diff changeset
2756 (throw 'found t))))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2757 (goto-char bndry)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2758 (YaTeX-re-search-active-forward
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2759 YaTeX-item-regexp YaTeX-comment-prefix p t))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2760 (progn
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2761 (goto-char (match-end 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2762 ;(setq c (current-column))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2763 (if (string-match "desc" env)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2764 (setq c 6)
82
yuuji
parents: 79
diff changeset
2765 (setq cc (current-column))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2766 (if (equal (following-char) ?\[) (forward-list 1))
82
yuuji
parents: 79
diff changeset
2767 (if (< (- (current-column) cc)
yuuji
parents: 79
diff changeset
2768 YaTeX-itemize-withlabel-max-indent-depth)
yuuji
parents: 79
diff changeset
2769 (setq c 0)
yuuji
parents: 79
diff changeset
2770 (move-to-column cc)
yuuji
parents: 79
diff changeset
2771 (setq c YaTeX-itemize-withlabel-max-indent-depth)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2772 (skip-chars-forward " \t" (point-end-of-line))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2773 (list (point-beginning-of-line) (+ c (current-column))))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2774
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2775 (defun YaTeX-fill-item ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2776 "Fill item in itemize environment."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2777 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2778 (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2779 (let* ((p (point))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2780 (item-term (concat
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2781 "\\(^[ \t]*$\\)\\|" YaTeX-item-regexp "\\|\\("
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2782 YaTeX-ec-regexp "\\(begin\\|end\\)\\)"))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2783 ;;This value depends on LaTeX.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2784 fill-prefix start col
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2785 (info (YaTeX-get-item-info t)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2786 (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
2787 (setq start (car info)
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2788 col (car (cdr info)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2789 (save-excursion
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2790 (if (re-search-backward "^\\s *$" start t)
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2791 ;;if separated from \item line, isolate this block
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2792 (progn
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2793 (setq start (1+ (match-end 0)))
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2794 (goto-char start)
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2795 (skip-chars-forward " \t")
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2796 (delete-region (point) start) ;is this your favor???
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
2797 (indent-to col))))
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2798 (beginning-of-line)
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2799 (if (<= (save-excursion
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2800 (re-search-forward
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2801 (concat "\\\\end{\\|\\\\begin{\\|^[ \t]*$") nil t)
46
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2802 (match-beginning 0))
cd1b63102eed Support Mule2
yuuji
parents: 45
diff changeset
2803 p)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2804 (progn (message "Not on itemize.") nil)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2805 (end-of-line)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2806 (newline)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2807 (indent-to col)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2808 (setq fill-prefix
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2809 (YaTeX-buffer-substring (point-beginning-of-line)(point)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2810 (beginning-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2811 (delete-region (point) (progn (forward-line 1) (point)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2812 (re-search-forward item-term nil 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2813 (YaTeX-remove-trailing-comment start (point))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2814 (beginning-of-line)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2815 (push-mark (point) t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2816 (goto-char start)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2817 (forward-line 1)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2818 (while (< (point) (mark))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2819 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2820 (forward-line 1))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2821 (fill-region-as-paragraph start (mark))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2822 (if NTT-jTeX
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2823 (while (progn(forward-line -1)(end-of-line) (> (point) start))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2824 (insert ?%)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2825 (pop-mark))))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2826
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2827 (defun YaTeX-fill-paragraph (arg)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2828 "YaTeX adjustment function for fill-paragraph.
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2829 *Protect \\verb from unexpected broken up."
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2830 (interactive "P")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2831 (cond
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2832 ((not (eq major-mode 'yatex-mode)) (fill-paragraph arg))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2833 ((YaTeX-quick-in-environment-p YaTeX-fill-inhibit-environments) nil)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2834 ((YaTeX-in-math-mode-p) nil)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2835 (t
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2836 (save-excursion
82
yuuji
parents: 79
diff changeset
2837 (let*((verbrex (concat YaTeX-ec-regexp
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2838 "\\(" YaTeX-verb-regexp "\\)" ;match#1
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2839 "\\(.\\).*\\(\\2\\)")) ;match #2 and #3
82
yuuji
parents: 79
diff changeset
2840 (tilderex (concat "\\("
yuuji
parents: 79
diff changeset
2841 YaTeX-kanji-regexp "~"
yuuji
parents: 79
diff changeset
2842 "\\)" YaTeX-ec-regexp
yuuji
parents: 79
diff changeset
2843 "\\|\\("
yuuji
parents: 79
diff changeset
2844 "~" YaTeX-kanji-regexp
yuuji
parents: 79
diff changeset
2845 "\\)"))
yuuji
parents: 79
diff changeset
2846 (p (point)) ii end poslist spacelist lenlist b e n
yuuji
parents: 79
diff changeset
2847 (fill-prefix fill-prefix)
yuuji
parents: 79
diff changeset
2848 (inenv (or (YaTeX-inner-environment t) "document"))
yuuji
parents: 79
diff changeset
2849 (border (get 'YaTeX-inner-environment 'point)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2850 (cond
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2851 ((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
2852 (setq end (point)) ;non-whitespace char
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2853 (skip-chars-forward " \t")
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2854 (equal (point) p))
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2855 (setq fill-prefix (YaTeX-buffer-substring p end)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2856 ((and ;;(not YaTeX-emacs-19)
82
yuuji
parents: 79
diff changeset
2857 (string-match YaTeX-itemizing-env-regexp inenv)
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2858 (setq ii (YaTeX-get-item-info)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2859 (save-excursion
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2860 (beginning-of-line)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2861 (indent-to-column (car (cdr ii)))
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2862 (setq fill-prefix
165
b9f0c694f30e Two fixes;
yuuji@gentei.org
parents: 130
diff changeset
2863 (YaTeX-buffer-substring (point) (point-beginning-of-line)))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2864 (delete-region (point) (progn (beginning-of-line) (point))))))
82
yuuji
parents: 79
diff changeset
2865 (cond
yuuji
parents: 79
diff changeset
2866 ((string-match "tabular" inenv)
yuuji
parents: 79
diff changeset
2867 (let ((b (point-beginning-of-line))
yuuji
parents: 79
diff changeset
2868 (e (point-end-of-line)))
yuuji
parents: 79
diff changeset
2869 (if (re-search-backward
yuuji
parents: 79
diff changeset
2870 "&\\|\\\\\\\\\\|\\\\\\(begin\\|end\\){" border t)
yuuji
parents: 79
diff changeset
2871 (setq b (if (match-beginning 1)
yuuji
parents: 79
diff changeset
2872 (progn (forward-line 1) (point))
yuuji
parents: 79
diff changeset
2873 (point-beginning-of-line))))
yuuji
parents: 79
diff changeset
2874 (goto-char p)
yuuji
parents: 79
diff changeset
2875 (if (re-search-forward
yuuji
parents: 79
diff changeset
2876 "&\\|\\\\\\\\\\|\\\\\\(end\\|begin\\){" nil t)
yuuji
parents: 79
diff changeset
2877 (setq e (if (match-beginning 1)
yuuji
parents: 79
diff changeset
2878 (progn (forward-line -1)
yuuji
parents: 79
diff changeset
2879 (point-end-of-line))
yuuji
parents: 79
diff changeset
2880 (match-beginning 0))))
yuuji
parents: 79
diff changeset
2881 (set-mark e)
yuuji
parents: 79
diff changeset
2882 (goto-char b)))
yuuji
parents: 79
diff changeset
2883 (t
yuuji
parents: 79
diff changeset
2884 (mark-paragraph)))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2885 (save-restriction
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2886 (narrow-to-region (region-beginning) (region-end))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2887 (YaTeX-remove-trailing-comment (point-min) (point-max))
82
yuuji
parents: 79
diff changeset
2888 ;; First, replace spaces in verb to _ temporarily.
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2889 (goto-char (point-min))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2890 (while (YaTeX-re-search-active-forward
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2891 verbrex YaTeX-comment-prefix (point-max) t)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2892 (setq end (match-beginning 3))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2893 (goto-char (match-beginning 2))
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2894 (while (re-search-forward "\\s " end t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2895 (setq poslist (cons (make-marker) poslist)
82
yuuji
parents: 79
diff changeset
2896 spacelist (cons (preceding-char) spacelist)
yuuji
parents: 79
diff changeset
2897 lenlist (cons 1 lenlist))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2898 (replace-match "_")
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2899 (set-marker (car poslist) (match-beginning 0))))
82
yuuji
parents: 79
diff changeset
2900 ;; Second, replace "•\~\ref{...}" to "\\\ref{...}"
yuuji
parents: 79
diff changeset
2901 (goto-char (point-min))
yuuji
parents: 79
diff changeset
2902 (while (YaTeX-re-search-active-forward
yuuji
parents: 79
diff changeset
2903 tilderex YaTeX-comment-prefix (point-max) t)
yuuji
parents: 79
diff changeset
2904 (if (match-beginning 1)
yuuji
parents: 79
diff changeset
2905 (setq b (match-beginning 1) e (match-end 1) n 1)
yuuji
parents: 79
diff changeset
2906 (setq b (match-beginning 2) e (match-end 2) n 2))
yuuji
parents: 79
diff changeset
2907 (setq poslist (cons (make-marker) poslist)
yuuji
parents: 79
diff changeset
2908 spacelist (cons (YaTeX-match-string n) spacelist)
yuuji
parents: 79
diff changeset
2909 lenlist (cons 2 lenlist))
yuuji
parents: 79
diff changeset
2910 (goto-char (match-beginning 0))
yuuji
parents: 79
diff changeset
2911 (delete-region (point) e)
yuuji
parents: 79
diff changeset
2912 (insert YaTeX-ec YaTeX-ec) ;set-marker should be here
yuuji
parents: 79
diff changeset
2913 (set-marker (car poslist) b))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2914 ;;(fill-paragraph arg)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2915 (fill-region-as-paragraph (point-min) (point-max) arg)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2916 (while spacelist
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2917 (goto-char (car poslist))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
2918 (set-marker (car poslist) nil)
82
yuuji
parents: 79
diff changeset
2919 (and (eolp) (skip-chars-forward "\n\t "))
yuuji
parents: 79
diff changeset
2920 (delete-char (car lenlist))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2921 (insert (car spacelist))
82
yuuji
parents: 79
diff changeset
2922 (setq spacelist (cdr spacelist)
yuuji
parents: 79
diff changeset
2923 poslist (cdr poslist)
yuuji
parents: 79
diff changeset
2924 lenlist (cdr lenlist)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2925 (goto-char (point-min))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2926 (forward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2927 (beginning-of-line)
82
yuuji
parents: 79
diff changeset
2928 (while (re-search-forward "\\\\\\([a-z]*ref\\|cite\\){" nil t)
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2929 (if (< (point-end-of-line)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2930 (save-excursion (forward-char -1) (forward-list 1) (point)))
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2931 (progn (end-of-line)
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2932 (if (save-excursion
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2933 (backward-word 1)
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2934 (looking-at "[^0-9A-z!-)]"))
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2935 (insert YaTeX-comment-prefix)))))
82
yuuji
parents: 79
diff changeset
2936 ;; Nonbreak space `~'
yuuji
parents: 79
diff changeset
2937 (goto-char (point-min))
yuuji
parents: 79
diff changeset
2938 (while (YaTeX-re-search-active-forward
yuuji
parents: 79
diff changeset
2939 "~\\(\\s *\\)$" YaTeX-comment-prefix (point-max) t)
yuuji
parents: 79
diff changeset
2940 (delete-region (match-beginning 1) (match-end 1))
yuuji
parents: 79
diff changeset
2941 (insert YaTeX-comment-prefix))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2942 (goto-char (point-min))
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2943 (if (and NTT-jTeX (looking-at "[ \t]\\|^$"))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2944 (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2945 (goto-char (point-min))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2946 (while (not (eobp))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2947 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2948 (or (bolp)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2949 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2950 (backward-word 1)
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
2951 (looking-at "[0-9A-z!-)]")) ;is not japanese string
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
2952 (progn (setq p (point)) (insert YaTeX-comment-prefix)))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2953 (forward-line 1))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2954 (goto-char p)
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2955 (if (looking-at "%") (delete-char 1)) ;remove last inserted `%'
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2956 ))))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2957
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2958 (if (fboundp 'YaTeX-saved-indent-new-comment-line) nil
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2959 (fset 'YaTeX-saved-indent-new-comment-line
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2960 (symbol-function 'indent-new-comment-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2961 (fset 'indent-new-comment-line 'YaTeX-indent-new-comment-line))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2962
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2963 (defun YaTeX-indent-new-comment-line (&optional soft)
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2964 "Tuned `indent-new-comment-line' function for yatex.
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2965 See the documentation of `YaTeX-saved-indent-new-comment-line'."
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2966 (interactive)
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
2967 (cond
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2968 ((or (not (memq major-mode '(yatex-mode yahtml-mode)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2969 (string-match
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2970 "document"
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2971 (or (and (boundp 'inenv) inenv)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
2972 (or (YaTeX-inner-environment t) "document"))))
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2973 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft))))
60
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2974 ; ((and (eq major-mode 'yahtml-mode)
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2975 ; (string-match
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2976 ; "^[Pp][Rr][Ee]" (yahtml-inner-environment-but "^[Aa]\\b" t)))
9e08ed569d80 yahtml: change keystroke of calling browser to [prefix] t p
yuuji
parents: 59
diff changeset
2977 ; (yahtml-indent-new-commnet-line))
61
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2978 ((and (eq major-mode 'yatex-mode) ;1997/2/4
b9f753846b6b Bug fix release
yuuji
parents: 60
diff changeset
2979 (YaTeX-in-math-mode-p)) nil) ;1996/12/30
58
3a7c0c2bf16d Official support for AMS-LaTeX, HTML, xdvi -remote, Netscape
yuuji
parents: 57
diff changeset
2980 (t (let (fill-prefix)
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2981 (apply 'YaTeX-saved-indent-new-comment-line (if soft (list soft)))))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
2982
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2983 (defun YaTeX-fill-* ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2984 "Fill paragraph according to its condition."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2985 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2986 (cond
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2987 ((YaTeX-fill-item))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2988 ))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2989
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
2990 ;; Accent completion
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2991 (defun YaTeX-read-accent-char (x)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2992 "Read char in accent braces."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2993 (let ((c (read-char)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2994 (concat
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2995 (if (and (or (= c ?i) (= c ?j))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2996 (not (string-match (regexp-quote x) "cdb")))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2997 "\\" "")
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
2998 (char-to-string c))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
2999
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3000 (defun YaTeX-make-accent ()
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3001 "Make accent usage."
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3002 (interactive)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3003 (message "1:` 2:' 3:^ 4:\" 5:~ 6:= 7:. u v H t c d b")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3004 (let ((c (read-char))(case-fold-search nil))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3005 (setq c (cond ((and (> c ?0) (< c ?8))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3006 (substring "`'^\"~=." (1- (- c ?0)) (- c ?0)))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3007 ((= c ?h) "H")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3008 (t (char-to-string c))))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3009 (if (not (string-match c "`'^\"~=.uvHtcdb")) nil
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3010 (insert "\\" c "{}")
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3011 (backward-char 1)
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3012 (insert (YaTeX-read-accent-char c))
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3013 (if (string= c "t") (insert (YaTeX-read-accent-char c)))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
3014 (forward-char 1))))
5
370a391533fd Post fj.sources.
yuuji
parents: 4
diff changeset
3015
359
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3016 ;; Field skip in tabular
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3017 (defun YaTeX-forward-field (arg)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3018 "Move forward to the ARGth next column field of table."
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3019 (interactive "p")
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3020 (if (< arg 0)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3021 (YaTeX-backward-field (- arg))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3022 (let ((ep (save-excursion (YaTeX-end-of-environment) (point)))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3023 (wc (car (YaTeX-array-what-column-internal))))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3024 (while (>= (setq arg (1- arg)) 0)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3025 (skip-chars-forward "^&\\\\")
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3026 (while (and (not (eobp))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3027 (> ep (point))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3028 (looking-at "\\&\\|\\\\")
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3029 (= wc (car (YaTeX-array-what-column-internal))))
362
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
3030 (skip-chars-forward "&" ep)
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
3031 (while (looking-at "[\n\t ]+\\|\\\\\\\\\\|\\\\.line\\>")
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
3032 (goto-char (match-end 0))
b1e6c8c03253 Preparing for 1.78
HIROSE Yuuji <yuuji@gentei.org>
parents: 361
diff changeset
3033 ))))))
359
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3034
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3035 (defun YaTeX-backward-field (arg)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3036 "Move backward to the ARGth next column field of table."
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3037 (interactive "p")
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3038 (if (< arg 0)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3039 (YaTeX-forward-field (- arg))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3040 (let ((bp (save-excursion
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3041 (YaTeX-beginning-of-environment)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3042 (point-end-of-line)))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3043 (wc (car (YaTeX-array-what-column-internal))))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3044 (while (>= (setq arg (1- arg)) 0)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3045 (skip-chars-backward "^&\\\\" bp)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3046 (while (and (not (bobp))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3047 (< bp (point))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3048 (memq (preceding-char) '(?& ?\\))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3049 (= wc (car (YaTeX-array-what-column-internal))))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3050 (skip-chars-backward "&\\\\" bp)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3051 (skip-chars-backward "\n\t " bp))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3052 (if (eolp) (skip-chars-forward "^&\\\\"))))))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3053
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3054 ;; Indentation
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3055 (defun YaTeX-current-indentation ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3056 "Return the indentation of current environment."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3057 (save-excursion
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3058 ;;(beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3059 (if (YaTeX-beginning-of-environment t)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3060 (goto-char (get 'YaTeX-inner-environment 'point))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3061 (forward-line -1)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3062 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3063 (skip-chars-forward " \t"))
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
3064 (current-column)))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3065
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3066 (defun YaTeX-previous-line-indentation ()
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3067 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3068 (forward-line -1)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3069 (skip-chars-forward " \t")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3070 (current-column)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3071
82
yuuji
parents: 79
diff changeset
3072 (defvar YaTeX-noindent-env-regexp "verbatim\\*?\\|alltt"
yuuji
parents: 79
diff changeset
3073 "*Regexp of environment names that should begin with no indentation.
yuuji
parents: 79
diff changeset
3074 All verbatime-like environment name should match with.")
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3075 (defun YaTeX-indent-line ()
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3076 "Indent corrent line referrin current environment."
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3077 (interactive)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3078 (let ((indent-relative
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3079 (function
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3080 (lambda (&optional additional)
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3081 (YaTeX-reindent
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3082 (+ (YaTeX-current-indentation)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3083 (or additional 0)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3084 YaTeX-environment-indent)))))
82
yuuji
parents: 79
diff changeset
3085 sect depth iteminfo (p (point)) pp (peol (point-end-of-line)) begend
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3086 ;;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
3087 (inenv (or (and (boundp 'inenv) inenv) (YaTeX-inner-environment t))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3088 ;;(if NTT-jTeX ;;Do you need this section?
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3089 ;; (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3090 ;; (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3091 ;; (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3092 ;; (forward-line -1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3093 ;; (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3094 ;; (or (= p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3095 ;; (progn (backward-char (length YaTeX-comment-prefix))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3096 ;; (not (looking-at (regexp-quote YaTeX-comment-prefix))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3097 ;; (progn
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3098 ;; (skip-chars-backward YaTeX-comment-prefix)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3099 ;; (kill-line))))))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3100 (or inenv (setq inenv "document")) ;is the default environment
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3101 (cond
82
yuuji
parents: 79
diff changeset
3102 ((and
yuuji
parents: 79
diff changeset
3103 (prog1 (YaTeX-on-begin-end-p)
yuuji
parents: 79
diff changeset
3104 (setq begend (match-beginning 0)))
yuuji
parents: 79
diff changeset
3105 (or (match-beginning 2) ;if \end
yuuji
parents: 79
diff changeset
3106 (and (match-beginning 3) ;if \) \]
yuuji
parents: 79
diff changeset
3107 (= (char-syntax (char-after (1+ (match-beginning 3)))) ?\)))))
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3108 (YaTeX-reindent
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3109 (save-excursion
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3110 (YaTeX-goto-corresponding-environment)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3111 (current-column))))
82
yuuji
parents: 79
diff changeset
3112 ;; on the begining of verbatime line, remove all indentation
yuuji
parents: 79
diff changeset
3113 ((and begend ;; match-beginning 0 of \begin
yuuji
parents: 79
diff changeset
3114 YaTeX-noindent-env-regexp
yuuji
parents: 79
diff changeset
3115 (stringp YaTeX-noindent-env-regexp)
yuuji
parents: 79
diff changeset
3116 (save-excursion
yuuji
parents: 79
diff changeset
3117 (and ;; if the \begin is the first declaration of this line
yuuji
parents: 79
diff changeset
3118 (progn (beginning-of-line) (skip-chars-forward " \t")
yuuji
parents: 79
diff changeset
3119 (= begend (point)))
yuuji
parents: 79
diff changeset
3120 (progn
yuuji
parents: 79
diff changeset
3121 (goto-char begend)
yuuji
parents: 79
diff changeset
3122 (looking-at
yuuji
parents: 79
diff changeset
3123 (concat YaTeX-ec-regexp
yuuji
parents: 79
diff changeset
3124 "begin{\\(" YaTeX-noindent-env-regexp "\\)}"))))))
yuuji
parents: 79
diff changeset
3125 (save-excursion
yuuji
parents: 79
diff changeset
3126 (goto-char begend)
yuuji
parents: 79
diff changeset
3127 (delete-region (point) (point-beginning-of-line))))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3128 ((string-match YaTeX-equation-env-regexp inenv)
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3129 (YaTeX-indent-line-equation)) ;autoload-ed from yatexenv
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3130 (;(YaTeX-in-environment-p '("itemize" "enumerate" "description" "list"))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3131 (string-match YaTeX-itemizing-env-regexp inenv)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3132 ;;(YaTeX-on-item-p) ??
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3133 ;;(setq iteminfo (YaTeX-get-item-info t))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3134 (if (save-excursion
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3135 (beginning-of-line)
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3136 (re-search-forward YaTeX-item-regexp peol t))
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3137 (progn
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3138 (save-excursion
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3139 (goto-char (1+ (match-beginning 0)))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3140 (setq depth
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3141 (* YaTeX-environment-indent
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3142 (cond
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3143 ((looking-at "subsubsub") 3)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3144 ((looking-at "subsub") 2)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3145 ((looking-at "sub") 1)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3146 (t 0)))))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3147 (funcall indent-relative depth))
82
yuuji
parents: 79
diff changeset
3148 (YaTeX-reindent (or (car (cdr (YaTeX-get-item-info t inenv)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3149 (+ (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3150 (beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3151 (YaTeX-current-indentation))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3152 YaTeX-environment-indent))))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3153 )
49
eb0512bfcb7f Abolish user-article table.
yuuji
parents: 48
diff changeset
3154 ((YaTeX-literal-p) ;verbatims
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3155 (tab-to-tab-stop))
82
yuuji
parents: 79
diff changeset
3156 ((string-match "\\(tabular\\|array\\)" inenv) ;1.73
359
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3157 (let ((n 1) (cc (current-column)) (p (point)))
82
yuuji
parents: 79
diff changeset
3158 (condition-case err
yuuji
parents: 79
diff changeset
3159 (save-excursion
yuuji
parents: 79
diff changeset
3160 (beginning-of-line)
yuuji
parents: 79
diff changeset
3161 (skip-chars-forward "[ \t]")
yuuji
parents: 79
diff changeset
3162 ;;(if (looking-at "&") (forward-char 1))
yuuji
parents: 79
diff changeset
3163 (require 'yatexenv)
yuuji
parents: 79
diff changeset
3164 (setq n (car (YaTeX-array-what-column-internal))))
yuuji
parents: 79
diff changeset
3165 (error nil))
yuuji
parents: 79
diff changeset
3166 (YaTeX-reindent
yuuji
parents: 79
diff changeset
3167 (+ (YaTeX-current-indentation)
yuuji
parents: 79
diff changeset
3168 YaTeX-environment-indent
359
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3169 (* (1- n) YaTeX-tabular-indentation)))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3170 (and (= cc (current-column))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3171 (= p (point))
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3172 (equal last-command 'YaTeX-indent-line)
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3173 ;; if NO indent action occured, move to the next column
dbef6cf84f98 Two or more consecutive [Tab] in column of table jump to the next column.
HIROSE Yuuji <yuuji@gentei.org>
parents: 354
diff changeset
3174 (YaTeX-forward-field 1))))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3175 ((and inenv (not (equal "document" inenv)))
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3176 (funcall indent-relative))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3177 ((YaTeX-on-section-command-p YaTeX-sectioning-regexp)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3178 (require 'yatexsec) ;to know YaTeX-sectioning-level
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3179 (setq sect (YaTeX-match-string 1))
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3180 (if (string-match "\\*$" sect)
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3181 (setq sect (substring sect 0 -1)))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3182 (YaTeX-reindent
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3183 (* (max
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3184 (1- ;I want chapter to have indentation 0
68
0eb6997bee16 More adjustment for Emacs20 and XEmacs
yuuji
parents: 64
diff changeset
3185 (or (cdr (assoc sect YaTeX-sectioning-level))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3186 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3187 0)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3188 YaTeX-environment-indent)))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3189 ;;Default movement
48
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3190 ((and (bolp) fill-prefix) (insert fill-prefix))
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3191 (t (save-excursion
a0640ff3f72f Inter-file ref/label, cite/bibitem jump.
yuuji
parents: 47
diff changeset
3192 (beginning-of-line)
64
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3193 (if fill-prefix
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3194 (progn
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3195 (delete-region (point)
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3196 (progn (skip-chars-forward " \t")
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3197 (point)))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3198 (insert fill-prefix))
36a48185b95a Changes are listed in yatex.new.
yuuji
parents: 61
diff changeset
3199 (skip-chars-forward " \t")
82
yuuji
parents: 79
diff changeset
3200 (if (bobp)
yuuji
parents: 79
diff changeset
3201 nil
yuuji
parents: 79
diff changeset
3202 (indent-relative-maybe))))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3203 (skip-chars-forward " \t")))
53
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3204 ;;if current line is \begin, re-indent \end too
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3205 (if (and (YaTeX-on-begin-end-p) (match-beginning 1))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3206 (save-excursion
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3207 ;;(beginning-of-line)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3208 ;;(search-forward "\\begin")
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3209 (goto-char (match-beginning 0))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3210 (setq depth (current-column))
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3211 (YaTeX-goto-corresponding-environment)
5f4b18da14b3 Fix functions relating YaTeX-beginning-of-environment or
yuuji
parents: 52
diff changeset
3212 (YaTeX-reindent depth)))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3213 (if (or
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3214 (and NTT-jTeX
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3215 (save-excursion (beginning-of-line) (looking-at "[ \t]")))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3216 (save-excursion
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3217 (beginning-of-line)
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3218 (and
82
yuuji
parents: 79
diff changeset
3219 (not (bobp))
yuuji
parents: 79
diff changeset
3220 (progn
yuuji
parents: 79
diff changeset
3221 (backward-char 1)
yuuji
parents: 79
diff changeset
3222 (re-search-backward
yuuji
parents: 79
diff changeset
3223 "\\\\\\(\\(page\\)?ref\\|cite\\){" (point-beginning-of-line) t))
59
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3224 (goto-char (1- (match-end 0)))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3225 (> (save-excursion
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3226 (condition-case ()
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3227 (progn (forward-list 1) (point))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3228 (error (point-max))))
48ac97a6b6ce Call drawing tools
yuuji
parents: 58
diff changeset
3229 (point-end-of-line)))))
52
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3230 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3231 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3232 (let ((p (point)))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3233 (forward-line -1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3234 (end-of-line)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3235 (or (= p (point))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3236 (looking-at (regexp-quote YaTeX-comment-prefix))
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3237 (bobp) (bolp)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3238 (save-excursion
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3239 (backward-word 1)
5d94deabb9f9 Set YaTeX-indent-line to 'indent-line-function.
yuuji
parents: 51
diff changeset
3240 (looking-at "\\sw+")) ;is not japanese string
69
807c1e7e68b7 yahtml-escape-chars-region
yuuji
parents: 68
diff changeset
3241 (insert YaTeX-comment-prefix)))))))
22
9d2387100375 Change the YaTeX-math-mode's prefix from `,' to `;'.
yuuji
parents: 18
diff changeset
3242
77
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
3243 (defun YaTeX-comment-line-break (&optional soft)
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
3244 "Call comment-indent-new-line and YaTeX-indent-line"
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
3245 (comment-indent-new-line soft)
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
3246 (YaTeX-indent-line))
1b172d26b55e Fix auto-fill movement on Emacs21.
yuuji
parents: 73
diff changeset
3247
70
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3248 (defun YaTeX-latex2e-p ()
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3249 (let ((b (current-buffer))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3250 (ptn (concat YaTeX-ec "documentclass")))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3251 (unwind-protect
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3252 (or (save-excursion (search-backward ptn nil t))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3253 (progn
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3254 (YaTeX-visit-main t)
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3255 (save-excursion (search-backward ptn nil t))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3256 (set-buffer b))))
44e3a5e1e883 Fix makefile for Windows
yuuji
parents: 69
diff changeset
3257
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
3258 (provide 'yatex)
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
3259 (defvar yatex-mode-load-hook nil
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
3260 "*List of functions to be called when yatex.el is loaded.")
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
3261 (if (and YaTeX-emacs-19 YaTeX-display-color-p (not (featurep 'yatex19)))
55
790d0be0d0f8 Bug fix version
yuuji
parents: 54
diff changeset
3262 (load "yatex19"))
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3263 (load "yatexhks" t)
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3264
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3265 ;;-------------------- Final hook jobs --------------------
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3266 (substitute-all-key-definition
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3267 'fill-paragraph 'YaTeX-fill-paragraph YaTeX-mode-map)
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
3268 (substitute-all-key-definition
73
f41b01fef5d6 Stable version(hope to be)
yuuji
parents: 72
diff changeset
3269 'kill-buffer 'YaTeX-kill-buffer YaTeX-mode-map)
7
9a56acb6c287 Fill-paragraph and (un)comment-paragraph work fine.
yuuji
parents: 6
diff changeset
3270 (run-hooks 'yatex-mode-load-hook)
51
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3271
b0371b6ed799 Created `ChangeLog'.
yuuji
parents: 49
diff changeset
3272 ;; `History' was moved to ChangeLog
0
9c72144baf95 First releas version (at ftp.ae).
yuuji
parents:
diff changeset
3273 ;----------------------------- End of yatex.el -----------------------------
72
0aaebd07dad0 Support font-lock on XEmacs-21, Emacs-20, Emacs-21.
yuuji
parents: 70
diff changeset
3274
82
yuuji
parents: 79
diff changeset
3275 ; Local variables:
yuuji
parents: 79
diff changeset
3276 ; coding: sjis
yuuji
parents: 79
diff changeset
3277 ; End:

yatex.org