Mercurial > hg > xemacs-beta
comparison lisp/emulators/auto-autoloads.el @ 163:0132846995bd r20-3b8
Import from CVS: tag r20-3b8
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:43:35 +0200 |
parents | |
children | e121b013d1f0 |
comparison
equal
deleted
inserted
replaced
162:4de2936b4e77 | 163:0132846995bd |
---|---|
1 ;;; DO NOT MODIFY THIS FILE | |
2 (if (not (featurep 'emulators-autoloads)) | |
3 (progn | |
4 | |
5 ;;;### (autoloads (edt-emulation-on) "edt" "emulators/edt.el") | |
6 | |
7 (autoload 'edt-emulation-on "edt" "\ | |
8 Turn on EDT Emulation." t nil) | |
9 | |
10 ;;;*** | |
11 | |
12 ;;;### (autoloads (teco-command) "teco" "emulators/teco.el") | |
13 | |
14 (autoload 'teco-command "teco" "\ | |
15 Read and execute a Teco command string." t nil) | |
16 | |
17 ;;;*** | |
18 | |
19 ;;;### (autoloads (tpu-edt-on) "tpu-edt" "emulators/tpu-edt.el") | |
20 | |
21 (fset 'tpu-edt-mode 'tpu-edt-on) | |
22 | |
23 (fset 'tpu-edt 'tpu-edt-on) | |
24 | |
25 (autoload 'tpu-edt-on "tpu-edt" "\ | |
26 Turn on TPU/edt emulation." t nil) | |
27 | |
28 ;;;*** | |
29 | |
30 ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "emulators/tpu-extras.el") | |
31 | |
32 (autoload 'tpu-set-scroll-margins "tpu-extras" "\ | |
33 Set scroll margins." t nil) | |
34 | |
35 (autoload 'tpu-set-cursor-free "tpu-extras" "\ | |
36 Allow the cursor to move freely about the screen." t nil) | |
37 | |
38 (autoload 'tpu-set-cursor-bound "tpu-extras" "\ | |
39 Constrain the cursor to the flow of the text." t nil) | |
40 | |
41 ;;;*** | |
42 | |
43 ;;;### (autoloads (wordstar-mode) "ws-mode" "emulators/ws-mode.el") | |
44 | |
45 (autoload 'wordstar-mode "ws-mode" "\ | |
46 Major mode with WordStar-like key bindings. | |
47 | |
48 BUGS: | |
49 - Help menus with WordStar commands (C-j just calls help-for-help) | |
50 are not implemented | |
51 - Options for search and replace | |
52 - Show markers (C-k h) is somewhat strange | |
53 - Search and replace (C-q a) is only available in forward direction | |
54 | |
55 No key bindings beginning with ESC are installed, they will work | |
56 Emacs-like. | |
57 | |
58 The key bindings are: | |
59 | |
60 C-a backward-word | |
61 C-b fill-paragraph | |
62 C-c scroll-up-line | |
63 C-d forward-char | |
64 C-e previous-line | |
65 C-f forward-word | |
66 C-g delete-char | |
67 C-h backward-char | |
68 C-i indent-for-tab-command | |
69 C-j help-for-help | |
70 C-k ordstar-C-k-map | |
71 C-l ws-repeat-search | |
72 C-n open-line | |
73 C-p quoted-insert | |
74 C-r scroll-down-line | |
75 C-s backward-char | |
76 C-t kill-word | |
77 C-u keyboard-quit | |
78 C-v overwrite-mode | |
79 C-w scroll-down | |
80 C-x next-line | |
81 C-y kill-complete-line | |
82 C-z scroll-up | |
83 | |
84 C-k 0 ws-set-marker-0 | |
85 C-k 1 ws-set-marker-1 | |
86 C-k 2 ws-set-marker-2 | |
87 C-k 3 ws-set-marker-3 | |
88 C-k 4 ws-set-marker-4 | |
89 C-k 5 ws-set-marker-5 | |
90 C-k 6 ws-set-marker-6 | |
91 C-k 7 ws-set-marker-7 | |
92 C-k 8 ws-set-marker-8 | |
93 C-k 9 ws-set-marker-9 | |
94 C-k b ws-begin-block | |
95 C-k c ws-copy-block | |
96 C-k d save-buffers-kill-emacs | |
97 C-k f find-file | |
98 C-k h ws-show-markers | |
99 C-k i ws-indent-block | |
100 C-k k ws-end-block | |
101 C-k p ws-print-block | |
102 C-k q kill-emacs | |
103 C-k r insert-file | |
104 C-k s save-some-buffers | |
105 C-k t ws-mark-word | |
106 C-k u ws-exdent-block | |
107 C-k C-u keyboard-quit | |
108 C-k v ws-move-block | |
109 C-k w ws-write-block | |
110 C-k x kill-emacs | |
111 C-k y ws-delete-block | |
112 | |
113 C-o c wordstar-center-line | |
114 C-o b switch-to-buffer | |
115 C-o j justify-current-line | |
116 C-o k kill-buffer | |
117 C-o l list-buffers | |
118 C-o m auto-fill-mode | |
119 C-o r set-fill-column | |
120 C-o C-u keyboard-quit | |
121 C-o wd delete-other-windows | |
122 C-o wh split-window-horizontally | |
123 C-o wo other-window | |
124 C-o wv split-window-vertically | |
125 | |
126 C-q 0 ws-find-marker-0 | |
127 C-q 1 ws-find-marker-1 | |
128 C-q 2 ws-find-marker-2 | |
129 C-q 3 ws-find-marker-3 | |
130 C-q 4 ws-find-marker-4 | |
131 C-q 5 ws-find-marker-5 | |
132 C-q 6 ws-find-marker-6 | |
133 C-q 7 ws-find-marker-7 | |
134 C-q 8 ws-find-marker-8 | |
135 C-q 9 ws-find-marker-9 | |
136 C-q a ws-query-replace | |
137 C-q b ws-to-block-begin | |
138 C-q c end-of-buffer | |
139 C-q d end-of-line | |
140 C-q f ws-search | |
141 C-q k ws-to-block-end | |
142 C-q l ws-undo | |
143 C-q p ws-last-cursorp | |
144 C-q r beginning-of-buffer | |
145 C-q C-u keyboard-quit | |
146 C-q w ws-last-error | |
147 C-q y ws-kill-eol | |
148 C-q DEL ws-kill-bol | |
149 " t nil) | |
150 | |
151 ;;;*** | |
152 | |
153 (provide 'emulators-autoloads) | |
154 )) |