-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoikkoindex-mode.el
177 lines (141 loc) · 5.13 KB
/
voikkoindex-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
;;; voikkoindex-mode.el --- Emacs-liittymä voikkoindex.sty -pakettiin.
;; Copyright (C) 2022-2023 Hannu Väisänen
;; Author: Hannu Väisänen
;; Maintainer: Hannu Väisänen
;; Created: 2022-10-21
;; URL: https://github.com/ahomansikka/voikkoindex
;; Keywords: text Finnish Voikko index
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or (at
;; your option) any later version.
;;
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; The license text: <http://www.gnu.org/licenses/gpl-3.0.html>
;; Esimerkkiä on katsottu Teemu Likosen ohjelmasta wcheck-mode.el
;; (https://github.com/tlikonen/wcheck-mode).
(eval-when-compile
;; Silence compiler.
(declare-function show-entry "outline"))
;;;###autoload
(defgroup voikkoindex nil
"Emacsin näppäimet voikkoindex.sty -pakettiin."
:group 'applications)
(defvar voikkoindex-mode nil)
(defvar voikkoindex-mode-map (make-sparse-keymap)
"Keymap for `voikkoindex-mode'.")
;;;###autoload
(define-minor-mode voikkoindex-mode
"Liittymä voikkoindex.sty -pakettiin.
Käyttöohjeet ovat tiedostossa ohje.tex"
:init-value nil
:lighter (" VX")
:keymap voikkoindex-mode-map
(message "Pantiin voikkoindex-mode päälle tai otettiin pois päältä.")
)
;;; Lisätään (viimeisen) sanan jälkeen "}" tai,
;;; jos sanan jälkeen tulee jokin merkeistä .;:;
;;; poistetaan välimerkki ja lisätään "}[.]" tai
;;; samalla tavalla muu välimerkki.
;;;
(defun voikkoindex--end (n)
(interactive)
(right-word n)
(insert "}")
(cond ((= (following-char) ?.) (goto-char (point)) (delete-char 1) (insert "[.]"))
((= (following-char) ?,) (goto-char (point)) (delete-char 1) (insert "[,]"))
((= (following-char) ?:) (goto-char (point)) (delete-char 1) (insert "[:]"))
((= (following-char) ?;) (goto-char (point)) (delete-char 1) (insert "[;]"))
)
)
;;; Siirry sanan alkuun, paitsi jos ollaan jo sanan tai rivin alussa.
;;;
(defun voikkoindex--go-to-start-of-word()
(if (not (looking-back "\\b")) (backward-word))
;; (message "Huuhaa %s" (looking-back "\\b"))
)
(defun voikkoindex--f (s)
(interactive)
(voikkoindex--go-to-start-of-word)
(insert s)
(voikkoindex--end 1)
)
;;; Johannes Angelokselle => \VXN{Johannes}{Angelokselle}
;;;
(defun voikkoindex--vxn()
(interactive)
(voikkoindex--go-to-start-of-word)
(insert "\\VXN{")
(re-search-forward " +")
(replace-match "}{")
(voikkoindex--end 1)
)
;;; Johannes \emph{Angelokselle} => \VXN{Johannes}{\emph{Angelokselle}}
;;;
(defun voikkoindex--vxn-emph()
(interactive)
(voikkoindex--go-to-start-of-word)
(insert "\\VXN{")
(re-search-forward " +[\\]emph{")
(replace-match "}{\\\\emph{")
(right-word 1)
(if (looking-at "[.,:;]") (forward-char))
(forward-char)
(insert "}")
)
(defun voikkoindex--vxl()
(interactive)
(voikkoindex--go-to-start-of-word)
(insert "\\VXL{")
(voikkoindex--end 2)
)
(defun voikkoindex--vxf()
(interactive)
(voikkoindex--go-to-start-of-word)
(insert "\\VXF{")
)
(defun voikkoindex--vxvon()
(interactive)
(voikkoindex--go-to-start-of-word)
(insert "\\VXVON{")
(re-search-forward " +")
(replace-match "}{")
(re-search-forward " +")
(replace-match "}{")
(voikkoindex--end 1)
)
;;; Johannes Angelokselle => \VXN{Johannes}{\emph{Angelokselle}}
;;; Johannes Angelokselle. => \VXN{Johannes}{\emph{Angelokselle.}}
;;; Johannes Angelokselle, => \VXN{Johannes}{\emph{Angelokselle,}}
;;; Johannes Angelokselle: => \VXN{Johannes}{\emph{Angelokselle:}}
;;;
(defun voikkoindex--emph()
(interactive)
(voikkoindex--go-to-start-of-word)
(insert "\\VXN{")
(re-search-forward " +")
(replace-match "}{\\\\emph{")
(right-word 1)
(if (looking-at "[.,:;]") (forward-char))
(insert "}}")
)
(defun voikkoindex--vxp() (interactive) (voikkoindex--f (setq VXP "\\VXP{")))
(defun voikkoindex--vxs() (interactive) (voikkoindex--f (setq VXS "\\VXS{")))
(defun voikkoindex--vxa() (interactive) (voikkoindex--f (setq VXA "\\VXA{")))
(defun voikkoindex--vxi() (interactive) (voikkoindex--f (setq VXI "\\VXI{")))
(defun voikkoindex--vxy() (interactive) (voikkoindex--f (setq VXY "\\VXY{")))
(define-key voikkoindex-mode-map (kbd "ESC M-n") 'voikkoindex--vxn)
(define-key voikkoindex-mode-map (kbd "ESC M-p") 'voikkoindex--vxp)
(define-key voikkoindex-mode-map (kbd "ESC M-s") 'voikkoindex--vxs)
(define-key voikkoindex-mode-map (kbd "ESC M-a") 'voikkoindex--vxa)
(define-key voikkoindex-mode-map (kbd "ESC M-i") 'voikkoindex--vxi)
(define-key voikkoindex-mode-map (kbd "ESC M-y") 'voikkoindex--vxy)
(define-key voikkoindex-mode-map (kbd "ESC M-l") 'voikkoindex--vxl)
(define-key voikkoindex-mode-map (kbd "ESC M-f") 'voikkoindex--vxf)
(define-key voikkoindex-mode-map (kbd "ESC M-v") 'voikkoindex--vxvon)
(define-key voikkoindex-mode-map (kbd "ESC M-e") 'voikkoindex--emph)
(define-key voikkoindex-mode-map (kbd "ESC M-z") 'voikkoindex--vxn-emph)