Mercurial > emacs
annotate lisp/emulation/ws-mode.el @ 111102:9fbc584102c2
Support R2L rows. Continued lines still don't work correctly.
xdisp.c (mouse_face_from_buffer_pos): Fix code using bug#1220 as
test case. Implement highlight for R2L rows.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 28 Aug 2010 14:09:02 +0300 |
parents | 1479a3d1e0f3 |
children | cc035ccb9275 |
rev | line source |
---|---|
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
309
diff
changeset
|
1 ;;; ws-mode.el --- WordStar emulation mode for GNU Emacs |
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
309
diff
changeset
|
2 |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
3 ;; Copyright (C) 1991, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
106815 | 4 ;; 2009, 2010 Free Software Foundation, Inc. |
841 | 5 |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
6 ;; Author: Juergen Nickelsen <nickel@cs.tu-berlin.de> |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
7 ;; Version: 0.7 |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
773
diff
changeset
|
8 ;; Keywords: emulations |
309 | 9 |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
11 |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
309 | 16 |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
20 ;; GNU General Public License for more details. |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
21 |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
4935
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
94658
eb7b2376cae5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
309 | 24 |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
25 ;;; Commentary: |
309 | 26 |
1222
3db6f2ac8539
Delete obsolete comments.
Richard M. Stallman <rms@gnu.org>
parents:
841
diff
changeset
|
27 ;; This emulates WordStar, with a major mode. |
309 | 28 |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
29 ;;; Code: |
309 | 30 |
31 (defvar wordstar-mode-map nil "") | |
32 (defvar wordstar-C-j-map nil "") | |
33 (defvar wordstar-C-k-map nil "") | |
34 (defvar wordstar-C-o-map nil "") | |
35 (defvar wordstar-C-q-map nil "") | |
36 | |
37 (if wordstar-mode-map | |
38 () | |
39 (setq wordstar-mode-map (make-keymap)) | |
40 ;; (setq wordstar-C-j-map (make-keymap)) ; later, perhaps | |
41 (setq wordstar-C-k-map (make-keymap)) | |
42 (setq wordstar-C-o-map (make-keymap)) | |
43 (setq wordstar-C-q-map (make-keymap)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
44 |
309 | 45 (define-key wordstar-mode-map "\C-a" 'backward-word) |
46 (define-key wordstar-mode-map "\C-b" 'fill-paragraph) | |
47 (define-key wordstar-mode-map "\C-c" 'scroll-up) | |
48 (define-key wordstar-mode-map "\C-d" 'forward-char) | |
49 (define-key wordstar-mode-map "\C-e" 'previous-line) | |
50 (define-key wordstar-mode-map "\C-f" 'forward-word) | |
51 (define-key wordstar-mode-map "\C-g" 'delete-char) | |
52 (define-key wordstar-mode-map "\C-h" 'backward-char) | |
53 (define-key wordstar-mode-map "\C-i" 'indent-for-tab-command) | |
54 (define-key wordstar-mode-map "\C-j" 'help-for-help) | |
55 (define-key wordstar-mode-map "\C-k" wordstar-C-k-map) | |
56 (define-key wordstar-mode-map "\C-l" 'ws-repeat-search) | |
57 (define-key wordstar-mode-map "\C-n" 'open-line) | |
58 (define-key wordstar-mode-map "\C-o" wordstar-C-o-map) | |
59 (define-key wordstar-mode-map "\C-p" 'quoted-insert) | |
60 (define-key wordstar-mode-map "\C-q" wordstar-C-q-map) | |
61 (define-key wordstar-mode-map "\C-r" 'scroll-down) | |
62 (define-key wordstar-mode-map "\C-s" 'backward-char) | |
63 (define-key wordstar-mode-map "\C-t" 'kill-word) | |
64 (define-key wordstar-mode-map "\C-u" 'keyboard-quit) | |
65 (define-key wordstar-mode-map "\C-v" 'overwrite-mode) | |
66 (define-key wordstar-mode-map "\C-w" 'scroll-down-line) | |
67 (define-key wordstar-mode-map "\C-x" 'next-line) | |
68 (define-key wordstar-mode-map "\C-y" 'kill-complete-line) | |
69 (define-key wordstar-mode-map "\C-z" 'scroll-up-line) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
70 |
309 | 71 ;; wordstar-C-k-map |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
72 |
309 | 73 (define-key wordstar-C-k-map " " ()) |
74 (define-key wordstar-C-k-map "0" 'ws-set-marker-0) | |
75 (define-key wordstar-C-k-map "1" 'ws-set-marker-1) | |
76 (define-key wordstar-C-k-map "2" 'ws-set-marker-2) | |
77 (define-key wordstar-C-k-map "3" 'ws-set-marker-3) | |
78 (define-key wordstar-C-k-map "4" 'ws-set-marker-4) | |
79 (define-key wordstar-C-k-map "5" 'ws-set-marker-5) | |
80 (define-key wordstar-C-k-map "6" 'ws-set-marker-6) | |
81 (define-key wordstar-C-k-map "7" 'ws-set-marker-7) | |
82 (define-key wordstar-C-k-map "8" 'ws-set-marker-8) | |
83 (define-key wordstar-C-k-map "9" 'ws-set-marker-9) | |
84 (define-key wordstar-C-k-map "b" 'ws-begin-block) | |
85 (define-key wordstar-C-k-map "\C-b" 'ws-begin-block) | |
86 (define-key wordstar-C-k-map "c" 'ws-copy-block) | |
87 (define-key wordstar-C-k-map "\C-c" 'ws-copy-block) | |
88 (define-key wordstar-C-k-map "d" 'save-buffers-kill-emacs) | |
89 (define-key wordstar-C-k-map "\C-d" 'save-buffers-kill-emacs) | |
90 (define-key wordstar-C-k-map "f" 'find-file) | |
91 (define-key wordstar-C-k-map "\C-f" 'find-file) | |
92 (define-key wordstar-C-k-map "h" 'ws-show-markers) | |
93 (define-key wordstar-C-k-map "\C-h" 'ws-show-markers) | |
94 (define-key wordstar-C-k-map "i" 'ws-indent-block) | |
95 (define-key wordstar-C-k-map "\C-i" 'ws-indent-block) | |
96 (define-key wordstar-C-k-map "k" 'ws-end-block) | |
97 (define-key wordstar-C-k-map "\C-k" 'ws-end-block) | |
98 (define-key wordstar-C-k-map "p" 'ws-print-block) | |
99 (define-key wordstar-C-k-map "\C-p" 'ws-print-block) | |
100 (define-key wordstar-C-k-map "q" 'kill-emacs) | |
101 (define-key wordstar-C-k-map "\C-q" 'kill-emacs) | |
102 (define-key wordstar-C-k-map "r" 'insert-file) | |
103 (define-key wordstar-C-k-map "\C-r" 'insert-file) | |
104 (define-key wordstar-C-k-map "s" 'save-some-buffers) | |
105 (define-key wordstar-C-k-map "\C-s" 'save-some-buffers) | |
106 (define-key wordstar-C-k-map "t" 'ws-mark-word) | |
107 (define-key wordstar-C-k-map "\C-t" 'ws-mark-word) | |
108 (define-key wordstar-C-k-map "u" 'ws-exdent-block) | |
109 (define-key wordstar-C-k-map "\C-u" 'keyboard-quit) | |
110 (define-key wordstar-C-k-map "v" 'ws-move-block) | |
111 (define-key wordstar-C-k-map "\C-v" 'ws-move-block) | |
112 (define-key wordstar-C-k-map "w" 'ws-write-block) | |
113 (define-key wordstar-C-k-map "\C-w" 'ws-write-block) | |
114 (define-key wordstar-C-k-map "x" 'save-buffers-kill-emacs) | |
115 (define-key wordstar-C-k-map "\C-x" 'save-buffers-kill-emacs) | |
116 (define-key wordstar-C-k-map "y" 'ws-delete-block) | |
117 (define-key wordstar-C-k-map "\C-y" 'ws-delete-block) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
118 |
309 | 119 ;; wordstar-C-j-map not yet implemented |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
120 |
309 | 121 ;; wordstar-C-o-map |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
122 |
309 | 123 (define-key wordstar-C-o-map " " ()) |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
124 (define-key wordstar-C-o-map "c" 'wordstar-center-line) |
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
125 (define-key wordstar-C-o-map "\C-c" 'wordstar-center-line) |
309 | 126 (define-key wordstar-C-o-map "b" 'switch-to-buffer) |
127 (define-key wordstar-C-o-map "\C-b" 'switch-to-buffer) | |
128 (define-key wordstar-C-o-map "j" 'justify-current-line) | |
129 (define-key wordstar-C-o-map "\C-j" 'justify-current-line) | |
130 (define-key wordstar-C-o-map "k" 'kill-buffer) | |
131 (define-key wordstar-C-o-map "\C-k" 'kill-buffer) | |
132 (define-key wordstar-C-o-map "l" 'list-buffers) | |
133 (define-key wordstar-C-o-map "\C-l" 'list-buffers) | |
134 (define-key wordstar-C-o-map "m" 'auto-fill-mode) | |
135 (define-key wordstar-C-o-map "\C-m" 'auto-fill-mode) | |
136 (define-key wordstar-C-o-map "r" 'set-fill-column) | |
137 (define-key wordstar-C-o-map "\C-r" 'set-fill-column) | |
138 (define-key wordstar-C-o-map "\C-u" 'keyboard-quit) | |
139 (define-key wordstar-C-o-map "wd" 'delete-other-windows) | |
140 (define-key wordstar-C-o-map "wh" 'split-window-horizontally) | |
141 (define-key wordstar-C-o-map "wo" 'other-window) | |
142 (define-key wordstar-C-o-map "wv" 'split-window-vertically) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
143 |
309 | 144 ;; wordstar-C-q-map |
145 (define-key wordstar-C-q-map " " ()) | |
146 (define-key wordstar-C-q-map "0" 'ws-find-marker-0) | |
147 (define-key wordstar-C-q-map "1" 'ws-find-marker-1) | |
148 (define-key wordstar-C-q-map "2" 'ws-find-marker-2) | |
149 (define-key wordstar-C-q-map "3" 'ws-find-marker-3) | |
150 (define-key wordstar-C-q-map "4" 'ws-find-marker-4) | |
151 (define-key wordstar-C-q-map "5" 'ws-find-marker-5) | |
152 (define-key wordstar-C-q-map "6" 'ws-find-marker-6) | |
153 (define-key wordstar-C-q-map "7" 'ws-find-marker-7) | |
154 (define-key wordstar-C-q-map "8" 'ws-find-marker-8) | |
155 (define-key wordstar-C-q-map "9" 'ws-find-marker-9) | |
156 (define-key wordstar-C-q-map "a" 'ws-query-replace) | |
157 (define-key wordstar-C-q-map "\C-a" 'ws-query-replace) | |
158 (define-key wordstar-C-q-map "b" 'ws-goto-block-begin) | |
159 (define-key wordstar-C-q-map "\C-b" 'ws-goto-block-begin) | |
160 (define-key wordstar-C-q-map "c" 'end-of-buffer) | |
161 (define-key wordstar-C-q-map "\C-c" 'end-of-buffer) | |
162 (define-key wordstar-C-q-map "d" 'end-of-line) | |
163 (define-key wordstar-C-q-map "\C-d" 'end-of-line) | |
164 (define-key wordstar-C-q-map "f" 'ws-search) | |
165 (define-key wordstar-C-q-map "\C-f" 'ws-search) | |
166 (define-key wordstar-C-q-map "k" 'ws-goto-block-end) | |
167 (define-key wordstar-C-q-map "\C-k" 'ws-goto-block-end) | |
168 (define-key wordstar-C-q-map "l" 'ws-undo) | |
169 (define-key wordstar-C-q-map "\C-l" 'ws-undo) | |
170 (define-key wordstar-C-q-map "p" 'ws-last-cursorp) | |
171 (define-key wordstar-C-q-map "\C-p" 'ws-last-cursorp) | |
172 (define-key wordstar-C-q-map "r" 'beginning-of-buffer) | |
173 (define-key wordstar-C-q-map "\C-r" 'beginning-of-buffer) | |
174 (define-key wordstar-C-q-map "s" 'beginning-of-line) | |
175 (define-key wordstar-C-q-map "\C-s" 'beginning-of-line) | |
176 (define-key wordstar-C-q-map "\C-u" 'keyboard-quit) | |
177 (define-key wordstar-C-q-map "w" 'ws-last-error) | |
178 (define-key wordstar-C-q-map "\C-w" 'ws-last-error) | |
179 (define-key wordstar-C-q-map "y" 'ws-kill-eol) | |
180 (define-key wordstar-C-q-map "\C-y" 'ws-kill-eol) | |
181 (define-key wordstar-C-q-map "\177" 'ws-kill-bol)) | |
182 | |
17657
8116c68d8a77
(wordstar-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
183 (put 'wordstar-mode 'mode-class 'special) |
8116c68d8a77
(wordstar-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
184 |
4935
1f5c25761f2f
(wordstar-mode): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
185 ;;;###autoload |
1244
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
186 (defun wordstar-mode () |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
187 "Major mode with WordStar-like key bindings. |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
188 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
189 BUGS: |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
190 - Help menus with WordStar commands (C-j just calls help-for-help) |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
191 are not implemented |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
192 - Options for search and replace |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
193 - Show markers (C-k h) is somewhat strange |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
194 - Search and replace (C-q a) is only available in forward direction |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
195 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
196 No key bindings beginning with ESC are installed, they will work |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
197 Emacs-like. |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
198 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
199 The key bindings are: |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
200 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
201 C-a backward-word |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
202 C-b fill-paragraph |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
203 C-c scroll-up-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
204 C-d forward-char |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
205 C-e previous-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
206 C-f forward-word |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
207 C-g delete-char |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
208 C-h backward-char |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
209 C-i indent-for-tab-command |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
210 C-j help-for-help |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
211 C-k ordstar-C-k-map |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
212 C-l ws-repeat-search |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
213 C-n open-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
214 C-p quoted-insert |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
215 C-r scroll-down-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
216 C-s backward-char |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
217 C-t kill-word |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
218 C-u keyboard-quit |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
219 C-v overwrite-mode |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
220 C-w scroll-down |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
221 C-x next-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
222 C-y kill-complete-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
223 C-z scroll-up |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
224 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
225 C-k 0 ws-set-marker-0 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
226 C-k 1 ws-set-marker-1 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
227 C-k 2 ws-set-marker-2 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
228 C-k 3 ws-set-marker-3 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
229 C-k 4 ws-set-marker-4 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
230 C-k 5 ws-set-marker-5 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
231 C-k 6 ws-set-marker-6 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
232 C-k 7 ws-set-marker-7 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
233 C-k 8 ws-set-marker-8 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
234 C-k 9 ws-set-marker-9 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
235 C-k b ws-begin-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
236 C-k c ws-copy-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
237 C-k d save-buffers-kill-emacs |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
238 C-k f find-file |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
239 C-k h ws-show-markers |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
240 C-k i ws-indent-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
241 C-k k ws-end-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
242 C-k p ws-print-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
243 C-k q kill-emacs |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
244 C-k r insert-file |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
245 C-k s save-some-buffers |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
246 C-k t ws-mark-word |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
247 C-k u ws-exdent-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
248 C-k C-u keyboard-quit |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
249 C-k v ws-move-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
250 C-k w ws-write-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
251 C-k x kill-emacs |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
252 C-k y ws-delete-block |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
253 |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
254 C-o c wordstar-center-line |
1244
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
255 C-o b switch-to-buffer |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
256 C-o j justify-current-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
257 C-o k kill-buffer |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
258 C-o l list-buffers |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
259 C-o m auto-fill-mode |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
260 C-o r set-fill-column |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
261 C-o C-u keyboard-quit |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
262 C-o wd delete-other-windows |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
263 C-o wh split-window-horizontally |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
264 C-o wo other-window |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
265 C-o wv split-window-vertically |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
266 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
267 C-q 0 ws-find-marker-0 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
268 C-q 1 ws-find-marker-1 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
269 C-q 2 ws-find-marker-2 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
270 C-q 3 ws-find-marker-3 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
271 C-q 4 ws-find-marker-4 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
272 C-q 5 ws-find-marker-5 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
273 C-q 6 ws-find-marker-6 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
274 C-q 7 ws-find-marker-7 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
275 C-q 8 ws-find-marker-8 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
276 C-q 9 ws-find-marker-9 |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
277 C-q a ws-query-replace |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
278 C-q b ws-to-block-begin |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
279 C-q c end-of-buffer |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
280 C-q d end-of-line |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
281 C-q f ws-search |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
282 C-q k ws-to-block-end |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
283 C-q l ws-undo |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
284 C-q p ws-last-cursorp |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
285 C-q r beginning-of-buffer |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
286 C-q C-u keyboard-quit |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
287 C-q w ws-last-error |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
288 C-q y ws-kill-eol |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
289 C-q DEL ws-kill-bol |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
290 " |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
291 (interactive) |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
292 (kill-all-local-variables) |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
293 (use-local-map wordstar-mode-map) |
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
294 (setq mode-name "WordStar") |
20246
4aa45a7a62e8
(wordstar-mode): Run wordstar-mode-hook.
Karl Heuer <kwzh@gnu.org>
parents:
18383
diff
changeset
|
295 (setq major-mode 'wordstar-mode) |
62759
a796f7d10b85
(wordstar-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
52401
diff
changeset
|
296 (run-mode-hooks 'wordstar-mode-hook)) |
1244
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
297 |
309 | 298 |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
299 (defun wordstar-center-paragraph () |
309 | 300 "Center each line in the paragraph at or after point. |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
301 See `wordstar-center-line' for more info." |
309 | 302 (interactive) |
303 (save-excursion | |
304 (forward-paragraph) | |
305 (or (bolp) (newline 1)) | |
306 (let ((end (point))) | |
307 (backward-paragraph) | |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
308 (wordstar-center-region (point) end)))) |
309 | 309 |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
310 (defun wordstar-center-region (from to) |
309 | 311 "Center each line starting in the region. |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
312 See `wordstar-center-line' for more info." |
309 | 313 (interactive "r") |
314 (if (> from to) | |
315 (let ((tem to)) | |
316 (setq to from from tem))) | |
317 (save-excursion | |
318 (save-restriction | |
319 (narrow-to-region from to) | |
320 (goto-char from) | |
321 (while (not (eobp)) | |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
322 (wordstar-center-line) |
309 | 323 (forward-line 1))))) |
324 | |
12969
836d868710ec
(wordstar-center-line): Renamed from center-line.
Richard M. Stallman <rms@gnu.org>
parents:
7690
diff
changeset
|
325 (defun wordstar-center-line () |
309 | 326 "Center the line point is on, within the width specified by `fill-column'. |
327 This means adjusting the indentation to match | |
328 the distance between the end of the text and `fill-column'." | |
329 (interactive) | |
330 (save-excursion | |
331 (let (line-length) | |
332 (beginning-of-line) | |
333 (delete-horizontal-space) | |
334 (end-of-line) | |
335 (delete-horizontal-space) | |
336 (setq line-length (current-column)) | |
337 (beginning-of-line) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
338 (indent-to |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
339 (+ left-margin |
309 | 340 (/ (- fill-column left-margin line-length) 2)))))) |
341 | |
342 ;;;;;;;;;;; | |
343 ;; wordstar special variables: | |
344 | |
345 (defvar ws-marker-0 nil "Position marker 0 in WordStar mode.") | |
346 (defvar ws-marker-1 nil "Position marker 1 in WordStar mode.") | |
347 (defvar ws-marker-2 nil "Position marker 2 in WordStar mode.") | |
348 (defvar ws-marker-3 nil "Position marker 3 in WordStar mode.") | |
349 (defvar ws-marker-4 nil "Position marker 4 in WordStar mode.") | |
350 (defvar ws-marker-5 nil "Position marker 5 in WordStar mode.") | |
351 (defvar ws-marker-6 nil "Position marker 6 in WordStar mode.") | |
352 (defvar ws-marker-7 nil "Position marker 7 in WordStar mode.") | |
353 (defvar ws-marker-8 nil "Position marker 8 in WordStar mode.") | |
354 (defvar ws-marker-9 nil "Position marker 9 in WordStar mode.") | |
355 | |
356 (defvar ws-block-begin-marker nil "Beginning of \"Block\" in WordStar mode.") | |
357 (defvar ws-block-end-marker nil "End of \"Block\" in WordStar mode.") | |
358 | |
359 (defvar ws-search-string nil "String of last search in WordStar mode.") | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
360 (defvar ws-search-direction t |
42206 | 361 "Direction of last search in WordStar mode. t if forward, nil if backward.") |
309 | 362 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
363 (defvar ws-last-cursorposition nil |
309 | 364 "Position before last search etc. in WordStar mode.") |
365 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
366 (defvar ws-last-errormessage nil |
309 | 367 "Last error message issued by a WordStar mode function.") |
368 | |
369 ;;;;;;;;;;; | |
370 ;; wordstar special functions: | |
371 | |
372 (defun ws-error (string) | |
373 "Report error of a WordStar special function. Error message is saved | |
374 in ws-last-errormessage for recovery with C-q w." | |
375 (setq ws-last-errormessage string) | |
376 (error string)) | |
377 | |
378 (defun ws-set-marker-0 () | |
379 "In WordStar mode: Set marker 0 to current cursor position." | |
380 (interactive) | |
381 (setq ws-marker-0 (point-marker)) | |
382 (message "Marker 0 set")) | |
383 | |
384 (defun ws-set-marker-1 () | |
385 "In WordStar mode: Set marker 1 to current cursor position." | |
386 (interactive) | |
387 (setq ws-marker-1 (point-marker)) | |
388 (message "Marker 1 set")) | |
389 | |
390 (defun ws-set-marker-2 () | |
391 "In WordStar mode: Set marker 2 to current cursor position." | |
392 (interactive) | |
393 (setq ws-marker-2 (point-marker)) | |
394 (message "Marker 2 set")) | |
395 | |
396 (defun ws-set-marker-3 () | |
397 "In WordStar mode: Set marker 3 to current cursor position." | |
398 (interactive) | |
399 (setq ws-marker-3 (point-marker)) | |
400 (message "Marker 3 set")) | |
401 | |
402 (defun ws-set-marker-4 () | |
403 "In WordStar mode: Set marker 4 to current cursor position." | |
404 (interactive) | |
405 (setq ws-marker-4 (point-marker)) | |
406 (message "Marker 4 set")) | |
407 | |
408 (defun ws-set-marker-5 () | |
409 "In WordStar mode: Set marker 5 to current cursor position." | |
410 (interactive) | |
411 (setq ws-marker-5 (point-marker)) | |
412 (message "Marker 5 set")) | |
413 | |
414 (defun ws-set-marker-6 () | |
415 "In WordStar mode: Set marker 6 to current cursor position." | |
416 (interactive) | |
417 (setq ws-marker-6 (point-marker)) | |
418 (message "Marker 6 set")) | |
419 | |
420 (defun ws-set-marker-7 () | |
421 "In WordStar mode: Set marker 7 to current cursor position." | |
422 (interactive) | |
423 (setq ws-marker-7 (point-marker)) | |
424 (message "Marker 7 set")) | |
425 | |
426 (defun ws-set-marker-8 () | |
427 "In WordStar mode: Set marker 8 to current cursor position." | |
428 (interactive) | |
429 (setq ws-marker-8 (point-marker)) | |
430 (message "Marker 8 set")) | |
431 | |
432 (defun ws-set-marker-9 () | |
433 "In WordStar mode: Set marker 9 to current cursor position." | |
434 (interactive) | |
435 (setq ws-marker-9 (point-marker)) | |
436 (message "Marker 9 set")) | |
437 | |
438 (defun ws-begin-block () | |
439 "In WordStar mode: Set block begin marker to current cursor position." | |
440 (interactive) | |
441 (setq ws-block-begin-marker (point-marker)) | |
442 (message "Block begin marker set")) | |
443 | |
444 (defun ws-show-markers () | |
445 "In WordStar mode: Show block markers." | |
446 (interactive) | |
447 (if (or ws-block-begin-marker ws-block-end-marker) | |
448 (save-excursion | |
449 (if ws-block-begin-marker | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
450 (progn |
309 | 451 (goto-char ws-block-begin-marker) |
452 (message "Block begin marker") | |
453 (sit-for 2)) | |
454 (message "Block begin marker not set") | |
455 (sit-for 2)) | |
456 (if ws-block-end-marker | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
457 (progn |
309 | 458 (goto-char ws-block-end-marker) |
459 (message "Block end marker") | |
460 (sit-for 2)) | |
461 (message "Block end marker not set")) | |
462 (message "")) | |
463 (message "Block markers not set"))) | |
464 | |
465 | |
466 (defun ws-indent-block () | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
1244
diff
changeset
|
467 "In WordStar mode: Indent block (not yet implemented)." |
309 | 468 (interactive) |
469 (ws-error "Indent block not yet implemented")) | |
470 | |
471 (defun ws-end-block () | |
472 "In WordStar mode: Set block end marker to current cursor position." | |
473 (interactive) | |
474 (setq ws-block-end-marker (point-marker)) | |
475 (message "Block end marker set")) | |
476 | |
477 (defun ws-print-block () | |
478 "In WordStar mode: Print block." | |
479 (interactive) | |
480 (message "Don't do this. Write block to a file (C-k w) and print this file.")) | |
481 | |
482 (defun ws-mark-word () | |
483 "In WordStar mode: Mark current word as block." | |
484 (interactive) | |
485 (save-excursion | |
1244
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
486 (forward-word 1) |
309 | 487 (sit-for 1) |
488 (ws-end-block) | |
1244
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
489 (forward-word -1) |
309 | 490 (sit-for 1) |
491 (ws-begin-block))) | |
492 | |
493 (defun ws-exdent-block () | |
494 "I don't know what this (C-k u) should do." | |
495 (interactive) | |
496 (ws-error "This won't be done -- not yet implemented.")) | |
497 | |
498 (defun ws-move-block () | |
499 "In WordStar mode: Move block to current cursor position." | |
500 (interactive) | |
501 (if (and ws-block-begin-marker ws-block-end-marker) | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
502 (progn |
1244
ee01548e8ba5
(ws-mark-word): Use forward-word, with an arg, instead of backward-word.
Richard M. Stallman <rms@gnu.org>
parents:
1222
diff
changeset
|
503 (kill-region ws-block-begin-marker ws-block-end-marker) |
309 | 504 (yank) |
505 (save-excursion | |
506 (goto-char (region-beginning)) | |
507 (setq ws-block-begin-marker (point-marker)) | |
508 (goto-char (region-end)) | |
509 (setq ws-block-end-marker (point-marker)))) | |
510 (ws-error (cond (ws-block-begin-marker "Block end marker not set") | |
511 (ws-block-end-marker "Block begin marker not set") | |
512 (t "Block markers not set"))))) | |
513 | |
514 (defun ws-write-block () | |
515 "In WordStar mode: Write block to file." | |
516 (interactive) | |
517 (if (and ws-block-begin-marker ws-block-end-marker) | |
518 (let ((filename (read-file-name "Write block to file: "))) | |
519 (write-region ws-block-begin-marker ws-block-end-marker filename)) | |
520 (ws-error (cond (ws-block-begin-marker "Block end marker not set") | |
521 (ws-block-end-marker "Block begin marker not set") | |
522 (t "Block markers not set"))))) | |
523 | |
524 | |
525 (defun ws-delete-block () | |
526 "In WordStar mode: Delete block." | |
527 (interactive) | |
528 (if (and ws-block-begin-marker ws-block-end-marker) | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
529 (progn |
309 | 530 (kill-region ws-block-begin-marker ws-block-end-marker) |
531 (setq ws-block-end-marker nil) | |
532 (setq ws-block-begin-marker nil)) | |
533 (ws-error (cond (ws-block-begin-marker "Block end marker not set") | |
534 (ws-block-end-marker "Block begin marker not set") | |
535 (t "Block markers not set"))))) | |
536 | |
537 (defun ws-find-marker-0 () | |
538 "In WordStar mode: Go to marker 0." | |
539 (interactive) | |
540 (if ws-marker-0 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
541 (progn |
309 | 542 (setq ws-last-cursorposition (point-marker)) |
543 (goto-char ws-marker-0)) | |
544 (ws-error "Marker 0 not set"))) | |
545 | |
546 (defun ws-find-marker-1 () | |
547 "In WordStar mode: Go to marker 1." | |
548 (interactive) | |
549 (if ws-marker-1 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
550 (progn |
309 | 551 (setq ws-last-cursorposition (point-marker)) |
552 (goto-char ws-marker-1)) | |
553 (ws-error "Marker 1 not set"))) | |
554 | |
555 (defun ws-find-marker-2 () | |
556 "In WordStar mode: Go to marker 2." | |
557 (interactive) | |
558 (if ws-marker-2 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
559 (progn |
309 | 560 (setq ws-last-cursorposition (point-marker)) |
561 (goto-char ws-marker-2)) | |
562 (ws-error "Marker 2 not set"))) | |
563 | |
564 (defun ws-find-marker-3 () | |
565 "In WordStar mode: Go to marker 3." | |
566 (interactive) | |
567 (if ws-marker-3 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
568 (progn |
309 | 569 (setq ws-last-cursorposition (point-marker)) |
570 (goto-char ws-marker-3)) | |
571 (ws-error "Marker 3 not set"))) | |
572 | |
573 (defun ws-find-marker-4 () | |
574 "In WordStar mode: Go to marker 4." | |
575 (interactive) | |
576 (if ws-marker-4 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
577 (progn |
309 | 578 (setq ws-last-cursorposition (point-marker)) |
579 (goto-char ws-marker-4)) | |
580 (ws-error "Marker 4 not set"))) | |
581 | |
582 (defun ws-find-marker-5 () | |
583 "In WordStar mode: Go to marker 5." | |
584 (interactive) | |
585 (if ws-marker-5 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
586 (progn |
309 | 587 (setq ws-last-cursorposition (point-marker)) |
588 (goto-char ws-marker-5)) | |
589 (ws-error "Marker 5 not set"))) | |
590 | |
591 (defun ws-find-marker-6 () | |
592 "In WordStar mode: Go to marker 6." | |
593 (interactive) | |
594 (if ws-marker-6 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
595 (progn |
309 | 596 (setq ws-last-cursorposition (point-marker)) |
597 (goto-char ws-marker-6)) | |
598 (ws-error "Marker 6 not set"))) | |
599 | |
600 (defun ws-find-marker-7 () | |
601 "In WordStar mode: Go to marker 7." | |
602 (interactive) | |
603 (if ws-marker-7 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
604 (progn |
309 | 605 (setq ws-last-cursorposition (point-marker)) |
606 (goto-char ws-marker-7)) | |
607 (ws-error "Marker 7 not set"))) | |
608 | |
609 (defun ws-find-marker-8 () | |
610 "In WordStar mode: Go to marker 8." | |
611 (interactive) | |
612 (if ws-marker-8 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
613 (progn |
309 | 614 (setq ws-last-cursorposition (point-marker)) |
615 (goto-char ws-marker-8)) | |
616 (ws-error "Marker 8 not set"))) | |
617 | |
618 (defun ws-find-marker-9 () | |
619 "In WordStar mode: Go to marker 9." | |
620 (interactive) | |
621 (if ws-marker-9 | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
622 (progn |
309 | 623 (setq ws-last-cursorposition (point-marker)) |
624 (goto-char ws-marker-9)) | |
625 (ws-error "Marker 9 not set"))) | |
626 | |
627 (defun ws-goto-block-begin () | |
628 "In WordStar mode: Go to block begin marker." | |
629 (interactive) | |
630 (if ws-block-begin-marker | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
631 (progn |
309 | 632 (setq ws-last-cursorposition (point-marker)) |
633 (goto-char ws-block-begin-marker)) | |
634 (ws-error "Block begin marker not set"))) | |
635 | |
636 (defun ws-search (string) | |
637 "In WordStar mode: Search string, remember string for repetition." | |
638 (interactive "sSearch for: ") | |
639 (message "Forward (f) or backward (b)") | |
640 (let ((direction | |
641 (read-char))) | |
7690
5b2b84efaeb9
(ws-search): Fix malformed character constants.
Karl Heuer <kwzh@gnu.org>
parents:
7639
diff
changeset
|
642 (cond ((equal (upcase direction) ?F) |
309 | 643 (setq ws-search-string string) |
644 (setq ws-search-direction t) | |
645 (setq ws-last-cursorposition (point-marker)) | |
646 (search-forward string)) | |
7690
5b2b84efaeb9
(ws-search): Fix malformed character constants.
Karl Heuer <kwzh@gnu.org>
parents:
7639
diff
changeset
|
647 ((equal (upcase direction) ?B) |
309 | 648 (setq ws-search-string string) |
649 (setq ws-search-direction nil) | |
650 (setq ws-last-cursorposition (point-marker)) | |
651 (search-backward string)) | |
652 (t (keyboard-quit))))) | |
653 | |
654 (defun ws-goto-block-end () | |
655 "In WordStar mode: Go to block end marker." | |
656 (interactive) | |
657 (if ws-block-end-marker | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
658 (progn |
309 | 659 (setq ws-last-cursorposition (point-marker)) |
660 (goto-char ws-block-end-marker)) | |
661 (ws-error "Block end marker not set"))) | |
662 | |
663 (defun ws-undo () | |
664 "In WordStar mode: Undo and give message about undoing more changes." | |
665 (interactive) | |
666 (undo) | |
667 (message "Repeat C-q l to undo more changes.")) | |
668 | |
669 (defun ws-goto-last-cursorposition () | |
670 "In WordStar mode: " | |
671 (interactive) | |
672 (if ws-last-cursorposition | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
673 (progn |
309 | 674 (setq ws-last-cursorposition (point-marker)) |
675 (goto-char ws-last-cursorposition)) | |
676 (ws-error "No last cursor position available."))) | |
677 | |
678 (defun ws-last-error () | |
679 "In WordStar mode: repeat last error message. | |
680 This will only work for errors raised by WordStar mode functions." | |
681 (interactive) | |
682 (if ws-last-errormessage | |
65589
0670efd1e2df
message format spec fixes, commit # 8
Deepak Goel <deego@gnufans.org>
parents:
64701
diff
changeset
|
683 (message "%s" ws-last-errormessage) |
309 | 684 (message "No WordStar error yet."))) |
685 | |
686 (defun ws-kill-eol () | |
687 "In WordStar mode: Kill to end of line (like WordStar, not like Emacs)." | |
688 (interactive) | |
689 (let ((p (point))) | |
690 (end-of-line) | |
691 (kill-region p (point)))) | |
692 | |
693 (defun ws-kill-bol () | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
694 "In WordStar mode: Kill to beginning of line |
7639 | 695 \(like WordStar, not like Emacs)." |
309 | 696 (interactive) |
697 (let ((p (point))) | |
698 (beginning-of-line) | |
699 (kill-region (point) p))) | |
700 | |
701 (defun kill-complete-line () | |
702 "Kill the complete line." | |
703 (interactive) | |
704 (beginning-of-line) | |
705 (if (eobp) (error "End of buffer")) | |
706 (let ((beg (point))) | |
707 (forward-line 1) | |
708 (kill-region beg (point)))) | |
709 | |
710 (defun ws-repeat-search () | |
711 "In WordStar mode: Repeat last search." | |
712 (interactive) | |
713 (setq ws-last-cursorposition (point-marker)) | |
714 (if ws-search-string | |
715 (if ws-search-direction | |
716 (search-forward ws-search-string) | |
717 (search-backward ws-search-string)) | |
718 (ws-error "No search to repeat"))) | |
719 | |
720 (defun ws-query-replace (from to) | |
721 "In WordStar mode: Search string, remember string for repetition." | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42206
diff
changeset
|
722 (interactive "sReplace: |
309 | 723 sWith: " ) |
724 (setq ws-search-string from) | |
725 (setq ws-search-direction t) | |
726 (setq ws-last-cursorposition (point-marker)) | |
727 (query-replace from to)) | |
728 | |
729 (defun ws-copy-block () | |
730 "In WordStar mode: Copy block to current cursor position." | |
731 (interactive) | |
732 (if (and ws-block-begin-marker ws-block-end-marker) | |
104993
403125cdfb24
Replace empty `let's with `progn'.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
733 (progn |
309 | 734 (copy-region-as-kill ws-block-begin-marker ws-block-end-marker) |
735 (yank) | |
736 (save-excursion | |
737 (goto-char (region-beginning)) | |
738 (setq ws-block-begin-marker (point-marker)) | |
739 (goto-char (region-end)) | |
740 (setq ws-block-end-marker (point-marker)))) | |
741 (ws-error (cond (ws-block-begin-marker "Block end marker not set") | |
742 (ws-block-end-marker "Block begin marker not set") | |
743 (t "Block markers not set"))))) | |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
309
diff
changeset
|
744 |
18383 | 745 (provide 'ws-mode) |
746 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79705
diff
changeset
|
747 ;; arch-tag: 6dd864bf-2ccb-4d59-af6e-492eba2890a3 |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
309
diff
changeset
|
748 ;;; ws-mode.el ends here |