forked from erlyaws/yaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
two-mode-mode.el
134 lines (112 loc) · 4.67 KB
/
two-mode-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
;; two-mode-mode.el -- switches between tcl and sgml(html) modes
;; $Id$
;; Copyright 1999-2004 The Apache Software Foundation
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;; http://www.apache.org/licenses/LICENSE-2.0
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
;; These same concepts could be used to do a number of neat 2-mode
;; modes, for things like PHP, or anything else where you have a
;; couple of modes you'd like to use.
;; Use of 'psgml-mode' is highly recommended. It is, of course, a
;; part of Debian GNU/Linux.
;; Author: David N. Welton <[email protected]>
;; Modified by Marco Pantaleoni <[email protected]>
;; to allow execution of an hook on mode switching.
;; Also added a standard mode hook and some documentation strings.
;; Janko Heilgeist <[email protected]> and Stefan Schimanski
;; <[email protected]> submitted modifications that enable the use of
;; multiple modes, so I suppose that 'two-mode-mode' isn't strictly
;; accurate anymore.
;; Modified May 2010 by Steve Vinoski to work with emacs 23.
;; configure these:
(defvar default-mode (list "SGML" 'sgml-mode))
(defvar second-modes (list
(list "Erlang" "<erl>" "</erl>" 'erlang-mode)
(list "Erlang" "<?erl" "?>" 'erlang-mode)
(list "C++" "<?php" "?>" 'c++-mode)
(list "Python" "<?python" "?>" 'python-mode)
(list "Tcl" "<?" "?>" 'tcl-mode)
))
;; ----------------
(defvar two-mode-update nil)
(defvar two-mode-mode-idle-timer nil)
(defvar two-mode-bool nil)
(defvar two-mode-mode-delay (/ (float 1) (float 8)))
;; Two mode hook
(defvar two-mode-hook nil
"*Hook called by `two-mode'.")
(setq two-mode-hook nil)
;; Mode switching hook
(defvar two-mode-switch-hook nil
"*Hook called upon mode switching.")
(setq two-mode-switch-hook nil)
(defun two-mode-mode-setup ()
(add-hook 'post-command-hook 'two-mode-mode-need-update nil t)
(make-local-variable 'two-mode-bool)
(setq two-mode-bool t)
(make-local-variable 'two-mode-mode-idle-timer)
(if two-mode-mode-idle-timer
(cancel-timer two-mode-mode-idle-timer))
(setq two-mode-mode-idle-timer
(run-with-idle-timer two-mode-mode-delay t 'two-mode-mode-update-mode))
(make-local-variable 'minor-mode-alist)
(or (assq 'two-mode-bool minor-mode-alist)
(setq minor-mode-alist
(cons '(two-mode-bool " two-mode") minor-mode-alist))))
(defun two-mode-mode-need-update ()
(setq two-mode-update t))
(defun two-mode-change-mode (to-mode func)
(let ((mode (if (listp mode-name) (car (last mode-name)) mode-name)))
(if (string= to-mode mode)
t
(funcall func)
;; After the mode was set, we reread the "Local Variables" section.
;; We do need this for example in SGML-mode if "sgml-parent-document"
;; was set, or otherwise it will be reset to nil when sgml-mode is left.
(hack-local-variables)
(two-mode-mode-setup)
(if two-mode-switch-hook
(run-hooks 'two-mode-switch-hook))
(if (eq font-lock-mode t)
(font-lock-fontify-buffer))
(if (fboundp 'turn-on-font-lock-if-enabled)
(turn-on-font-lock-if-enabled)
(turn-on-font-lock-if-desired)))))
(defun two-mode-mode-update-mode ()
(when (and two-mode-bool two-mode-update)
(setq two-mode-update 0)
(let ((mode-list second-modes)
(to-mode (car default-mode))
(func (cadr default-mode)))
(while mode-list
(let ((mode (car mode-list))
(lm -1)
(rm -1))
(save-excursion
(if (search-backward (cadr mode) nil t)
(setq lm (point))))
(save-excursion
(if (search-backward (car (cddr mode)) nil t)
(setq rm (point))))
(if (and (not (and (= lm -1) (= rm -1))) (>= lm rm))
(progn
(setq mode-list nil)
(setq to-mode (car mode))
(setq func (car (cdr (cddr mode)))))
(setq mode-list (cdr mode-list)))))
(two-mode-change-mode to-mode func))))
(defun two-mode-mode ()
"Turn on two-mode-mode"
(interactive)
(setq two-mode-update t)
(two-mode-mode-setup)
(two-mode-mode-update-mode)
(if two-mode-hook
(run-hooks 'two-mode-hook)))
(provide 'two-mode-mode)