author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Tue, 05 Dec 2017 23:51:54 +0200 | |
changeset 2209 | 6faf149a4f4c |
parent 2125 | 754abf10c819 |
child 2228 | 837f1337c59b |
permissions | -rw-r--r-- |
1142 | 1 |
.. -*- coding: utf-8; -*- |
2 |
||
3 |
======== |
|
4 |
Emacs. |
|
5 |
======== |
|
6 |
.. contents:: |
|
1905
fba288d59662
Include only local subsections into TOC. This prevent duplication of
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1654
diff
changeset
|
7 |
:local: |
1142 | 8 |
|
9 |
About. |
|
10 |
====== |
|
11 |
||
12 |
http://elpa.gnu.org/ |
|
13 |
Packages for Emacs. This requires Emacs version 24.1 or |
|
14 |
higher. |
|
15 |
||
16 |
Getting help. |
|
17 |
============= |
|
18 |
||
19 |
* http://news.gmane.org/gmane.emacs.help |
|
20 |
* http://news.gmane.org/gmane.emacs.announce |
|
21 |
* http://news.gmane.org/gmane.emacs.auctex.announce |
|
22 |
||
23 |
Installing Emacs. |
|
24 |
================= |
|
25 |
||
1265
f98228108bb6
Official alpha build of GNU Emacs.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1189
diff
changeset
|
26 |
|
1142 | 27 |
http://ftp.gnu.org/gnu/emacs/windows/ |
1265
f98228108bb6
Official alpha build of GNU Emacs.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1189
diff
changeset
|
28 |
Clean GNU Emacs for 32-bit Windows. |
f98228108bb6
Official alpha build of GNU Emacs.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1189
diff
changeset
|
29 |
http://alpha.gnu.org/gnu/emacs/windows/ |
f98228108bb6
Official alpha build of GNU Emacs.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1189
diff
changeset
|
30 |
Official alpha build of GNU Emacs. |
1142 | 31 |
http://emacsformacosx.com/ |
1265
f98228108bb6
Official alpha build of GNU Emacs.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1189
diff
changeset
|
32 |
Clean GNU Emacs for Mac OS X. |
1142 | 33 |
|
1652
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
34 |
Development. |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
35 |
============ |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
36 |
|
1142 | 37 |
Variables. |
1652
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
38 |
---------- |
1142 | 39 |
|
40 |
Select one of:: |
|
41 |
||
42 |
(set 'variable value) |
|
43 |
(setq variable value) |
|
44 |
(defvar variable value "documentation") |
|
45 |
||
1652
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
46 |
or file local:: |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
47 |
|
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
48 |
# Local variables: |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
49 |
# variable: value |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
50 |
# End: |
1142 | 51 |
|
1652
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
52 |
Find variable/function/feature by name or value. |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
53 |
------------------------------------------------ |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
54 |
:: |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
55 |
|
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
56 |
(apropos-value "PATT") |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
57 |
(apropos-variable "PATT") |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
58 |
(apropos-function "PATT") |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
59 |
(apropos-library "PATT") |
a653ec78b1b8
Find variable/function/feature by name or value.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1477
diff
changeset
|
60 |
(apropos-documentation "PATT") |
1142 | 61 |
|
62 |
Debugging. |
|
63 |
========== |
|
64 |
||
65 |
Evaluating elisp expression on the fly. |
|
66 |
--------------------------------------- |
|
67 |
||
1477 | 68 |
Type ``M-:`` than lisp expression than type ``RET``. |
1142 | 69 |
|
1477 | 70 |
Or in any buffer place point at the end of lisp expression and type ``C-x C-e``. |
1142 | 71 |
|
1477 | 72 |
Or invoke elisp "shell" by ``M-x ielm``. |
1142 | 73 |
|
74 |
What functions and variables Emacs load and from which files? |
|
75 |
------------------------------------------------------------- |
|
76 |
||
1189 | 77 |
See value of variable ``load-history`` (by C-h v load-history RET):: |
78 |
||
1653
f9aae584ecb4
symbol-file, http://stackoverflow.com/a/27755252/173149
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1652
diff
changeset
|
79 |
(symbol-file 'scheme 'provide) ; Who provide feature. |
f9aae584ecb4
symbol-file, http://stackoverflow.com/a/27755252/173149
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1652
diff
changeset
|
80 |
(symbol-file 'nxml-mode-hook 'defvar) ; Where variable defined. |
f9aae584ecb4
symbol-file, http://stackoverflow.com/a/27755252/173149
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1652
diff
changeset
|
81 |
(symbol-file 'message-send 'defun) ; Where function defined. |
1654
f361c89e693f
Look for symbol despite its type.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1653
diff
changeset
|
82 |
(symbol-file 'scheme) ; Look for symbol despite its type. |
1476 | 83 |
load-history |
84 |
(locate-library "gnus.el") |
|
1653
f9aae584ecb4
symbol-file, http://stackoverflow.com/a/27755252/173149
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1652
diff
changeset
|
85 |
(find-lisp-object-file-name 'c-mode (symbol-function 'c-mode)) |
1142 | 86 |
|
87 |
Using edebug. |
|
88 |
------------- |
|
89 |
||
90 |
Execute ``M-x edebug-defun`` (also on ``C-u C-M-x``) on defun in source code to |
|
91 |
enable debugging for desired function. When next time this function invoked |
|
92 |
you entered to its debugging (jumped to its source code). |
|
93 |
||
94 |
To start debug execute code which used debugged function. |
|
95 |
||
96 |
You can disable edebug on a function by evaluating the function again using |
|
97 |
``C-M-x``. |
|
98 |
||
99 |
How debug func? |
|
100 |
--------------- |
|
101 |
||
2125 | 102 |
Use ``M-x debug-on-entry`` and ``M-x cancel-debug-on-entry`` to control which |
103 |
functions will enter the debugger when called. Next time that function loaded in |
|
104 |
debug-mode. |
|
1142 | 105 |
|
1274
3860a2e28d4d
How to print a trace.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1266
diff
changeset
|
106 |
You can use ``(debug)`` in your function to automatically enter to debugger. |
3860a2e28d4d
How to print a trace.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1266
diff
changeset
|
107 |
|
3860a2e28d4d
How to print a trace.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1266
diff
changeset
|
108 |
You can use ``(backtrace)`` to print a trace of Lisp function. |
3860a2e28d4d
How to print a trace.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1266
diff
changeset
|
109 |
|
1142 | 110 |
How debug ini file? |
111 |
------------------- |
|
112 |
||
1477 | 113 |
When your ini has a bug, or when you load external files that cause errors, the |
114 |
bug is often hard to find, because the Emacs Lisp reader does not know about |
|
115 |
line numbers and files - it just knows an error happened, and that's it. |
|
1142 | 116 |
|
117 |
Try run Emacs with ``--debug-init`` to see backtrace. |
|
118 |
||
119 |
How debug long running command? |
|
120 |
------------------------------- |
|
121 |
||
2125 | 122 |
Remember Emacs elisp interpreter single threaded. To interrupt long running |
123 |
command press ``C-g``. Sometime it should be typed several times. |
|
124 |
||
125 |
On ``toggle-debug-on-quit`` or ``M-x debug-on-quit RET`` on ``C-g`` Emacs enter |
|
126 |
to debug mode. |
|
1142 | 127 |
|
128 |
Check if bug in ini file not in Emacs itself. |
|
129 |
--------------------------------------------- |
|
130 |
||
131 |
First run Emacs without loading anything:: |
|
132 |
||
133 |
$ emacs --no-init-file --no-site-file |
|
134 |
||
135 |
or more shortly (as ``-Q`` imply ``-q``, ``--no-site-file``, and ``--no-splash`` |
|
136 |
together):: |
|
137 |
||
138 |
$ emacs -Q |
|
139 |
||
140 |
If bug not reproduced bug lies in ini files! |
|
141 |
||
142 |
Debug by binary search. |
|
143 |
----------------------- |
|
144 |
||
145 |
Select half of the file in a region, and M-x eval-region. Depending on whether |
|
146 |
that causes the error or not, split this half or the other half again, and |
|
147 |
repeat. |
|
148 |
||
149 |
Simplified Binary Search. |
|
150 |
~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
151 |
||
152 |
Add (error ``No error until here``) in the middle of your file. If you get the |
|
153 |
error ``No error until here`` when reloading the file, move the expression |
|
154 |
towards the back of the file, otherwise towards the front of the file. |
|
155 |
||
156 |
Elisp debug tips. |
|
157 |
----------------- |
|
158 |
||
1477 | 159 |
* Use a keyboard macro that moves forward one expression (sexp) and evaluates |
1142 | 160 |
it. |
1477 | 161 |
* Try C-x check-parens. |
1142 | 162 |
|
163 |
Enable debug mode (also on loading). |
|
164 |
------------------------------------ |
|
165 |
||
166 |
Set in source:: |
|
167 |
||
168 |
(setq debug-on-error t) |
|
169 |
||
170 |
or invoke Emacs like:: |
|
171 |
||
172 |
$ emacs --debug-init |
|
173 |
||
174 |
where ``--debug-init`` binds ``debug-on-error`` to ``t`` while loading the init |
|
175 |
file, and bypasses the ``condition-case`` which normally catches errors in the |
|
176 |
init file. |
|
177 |
||
178 |
Call tree. |
|
179 |
---------- |
|
180 |
||
181 |
Before byte compiling file execute:: |
|
182 |
||
183 |
(setq byte-compile-generate-call-tree t) |
|
184 |
||
185 |
Veiw buffer local variables. |
|
186 |
---------------------------- |
|
187 |
:: |
|
188 |
||
189 |
(pp (buffer-local-variables)) |
|
190 |
||
191 |
Emacs profiling. |
|
192 |
================ |
|
193 |
||
1952
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
194 |
edebug |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
195 |
------ |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
196 |
|
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
197 |
``edebug`` allow save execution statistic on per line basis. As usual evaluate |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
198 |
``C-u M-S-x`` (or ``M-x edebug-defun``) on top lovel functional form. Call code |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
199 |
that uses examined function. On entry to ``edebug`` type ``c`` |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
200 |
(``edebug-continue-mode``). After finishing evaluation place cursor to examined |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
201 |
function form and evaluate ``M-x edebug-display-freq-count``. Function be |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
202 |
annotated with evaluation counts per line. |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
203 |
|
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
204 |
benchmark.el |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
205 |
------------ |
1142 | 206 |
:: |
207 |
||
208 |
(benchmark-run 1 (revert-buffer)) |
|
1207 | 209 |
(benchmark-run-compiled 1 (hi-lock-face-phrase-buffer "hello" 'hi-yellow)) |
1142 | 210 |
|
1952
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
211 |
elp.el |
b01bfc6caae7
Emacs profiling with edebug.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1945
diff
changeset
|
212 |
------ |
1142 | 213 |
|
214 |
Enter a prefix for ``M-x elp-instrument-package``, perform action and see result |
|
215 |
by ``M-x elp-results``. To perform new measurement don't forget to run |
|
216 |
``M-x elp-reset-all``. |
|
217 |
||
1945
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
218 |
Validating Elisp code |
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
219 |
===================== |
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
220 |
:: |
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
221 |
|
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
222 |
(checkdoc) |
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
223 |
(byte-compile-file (buffer-file-name)) |
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
224 |
(package-buffer-info) |
dbcf75d07a68
Validating Elisp code
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1912
diff
changeset
|
225 |
|
1142 | 226 |
WWW. |
227 |
==== |
|
228 |
||
229 |
Text based WWW browser. |
|
230 |
----------------------- |
|
231 |
||
1477 | 232 |
* http://en.wikipedia.org/wiki/W3m |
233 |
* http://emacs-w3m.namazu.org/ |
|
234 |
* http://www.gnu.org/software/w3/ |
|
1142 | 235 |
|
236 |
Tricks. |
|
237 |
======= |
|
238 |
||
239 |
Sort and uniquify lines. |
|
240 |
------------------------ |
|
241 |
||
242 |
Select region, type ``C-u M-| sort -u RET``. |
|
243 |
||
244 |
With transient-mark-mode and delete-selection-mode enabled: select region, |
|
245 |
type M-| sort -u RET to replace selection with sorted and uniquified lines. |
|
246 |
||
247 |
Determining running environment/platform. |
|
248 |
========================================= |
|
249 |
||
250 |
Check variables:: |
|
251 |
||
252 |
emacs-major-version |
|
253 |
emacs-minor-version |
|
254 |
window-system - ``nil`` if in terminal, ``w32`` if native Windows build, ``x`` if under X Window |
|
255 |
window-system-version - for windows only |
|
256 |
window-size-fixed |
|
257 |
operating-system-release - release of the operating system Emacs is running on |
|
258 |
system-configuration - like configuration triplet: cpu-manufacturer-os |
|
259 |
system-configuration-options |
|
260 |
system-name - host name of the machine you are running on |
|
261 |
system-time-locale |
|
262 |
system-type - indicating the type of operating system you are using: |
|
263 |
``gnu`` (GNU Hurd), |
|
264 |
``gnu/linux``, |
|
265 |
``gnu/kfreebsd``, ``berkeley-unix`` for (FreeBSD), |
|
266 |
``darwin`` (GNU-Darwin, Mac OS X), |
|
267 |
``ms-dos``, |
|
268 |
``windows-nt``, |
|
269 |
``cygwin`` |
|
270 |
system-uses-terminfo |
|
271 |
dynamic-library-alist or deprecated image-library-alist |
|
272 |
- alist of image types vs external libraries needed to display them |
|
273 |
||
274 |
and check functions:: |
|
275 |
||
276 |
(fboundp ...) - return t if SYMBOL's function definition is not void |
|
277 |
(featurep ...) - returns t if FEATURE is present in this Emacs |
|
278 |
(display-graphic-p) - return non-nil if DISPLAY is a graphic display; graphical |
|
279 |
displays are those which are capable of displaying several |
|
280 |
frames and several different fonts at once |
|
281 |
(display-multi-font-p) - same as ``display-graphic-p`` |
|
282 |
(display-multi-frame-p) - same as ``display-graphic-p`` |
|
283 |
(display-color-p) - return t if DISPLAY supports color |
|
284 |
(display-images-p) - return non-nil if DISPLAY can display images |
|
285 |
(display-grayscale-p) - return non-nil if frames on DISPLAY can display shades of gray |
|
286 |
(display-mouse-p) - return non-nil if DISPLAY has a mouse available |
|
287 |
(display-popup-menus-p) - return non-nil if popup menus are supported on DISPLAY |
|
288 |
(display-selections-p) - return non-nil if DISPLAY supports selections |
|
289 |
||
290 |
Run those checks as below:: |
|
291 |
||
292 |
(when window-system ...) |
|
293 |
(when (eq window-system 'x) ...) |
|
294 |
(when (>= emacs-major-version 22) ...) |
|
295 |
(when (fboundp '...) ...) |
|
296 |
(when (featurep '...) ...) |
|
297 |
||
298 |
Compiling emacs. |
|
299 |
================ |
|
300 |
||
301 |
Windows. |
|
302 |
-------- |
|
303 |
||
304 |
Get MSYS for POSIX shell and utilities . Get MinGW for GCC. Get Gnuwin32 for |
|
305 |
jpeg, ungif, tiff, xpm, png, zlib libraries. |
|
306 |
||
307 |
Read emacs/nt/INSTALL:: |
|
308 |
||
309 |
$ cmd |
|
310 |
$ cd emacs\nt |
|
311 |
$ configure.bat --prefix %INST_ROOT% --with-gcc --cflags -I%GNUWIN32_ROOT%/include --ldflags -L%GNUWIN32_ROOT%/lib --ldflags -lregex |
|
312 |
$ make bootstrap |
|
313 |
$ make info |
|
314 |
$ make install |
|
315 |
||
316 |
Documentation. |
|
317 |
============== |
|
318 |
||
319 |
Elisp documentation. |
|
320 |
-------------------- |
|
321 |
:: |
|
322 |
||
323 |
;;; <file-name>.el --- <one-line-description> |
|
324 |
||
325 |
;; Copyright (C) <years> <person> |
|
326 |
||
327 |
;; Author: <person> <mail> |
|
328 |
;; Maintainer: <person> <mail> |
|
329 |
;; Created: <date> |
|
330 |
;; Version: <version> |
|
331 |
;; Keywords: <look for ``finder-by-keyword`` output, separate by comma> |
|
332 |
;; URL: <file-location> |
|
333 |
||
334 |
;;; Commentary: |
|
335 |
<bla-bla-bla> |
|
336 |
;;; Code: |
|
337 |
<lisp-code> |
|
338 |
;;; <file-name> ends here |
|
339 |
||
340 |
See |
|
341 |
||
342 |
* http://www.gnu.org/software/emacs/elisp-manual/html_node/Library-Headers.html |
|
343 |
* http://www.emacswiki.org/cgi-bin/wiki/ElispAreaConventions |
|
344 |
||
345 |
CheckDoc. |
|
346 |
--------- |
|
347 |
||
348 |
CheckDoc checks your EmacsLisp code for errors in documentation and style. |
|
349 |
||
350 |
http://cedet.sourceforge.net/checkdoc.shtml |
|
351 |
home page before including it into GNU Emacs |
|
352 |
http://www.emacswiki.org/emacs/CheckDoc |
|
353 |
CheckDoc |
|
354 |
||
355 |
Installing Emacs. |
|
356 |
================= |
|
357 |
||
358 |
From sources. |
|
359 |
------------- |
|
360 |
||
1477 | 361 |
* http://ftp.gnu.org/pub/gnu/emacs |
1142 | 362 |
|
363 |
Windows. |
|
364 |
-------- |
|
365 |
||
366 |
http://ftp.gnu.org/pub/gnu/emacs/windows |
|
367 |
Releases for Windows. |
|
368 |
http://alpha.gnu.org/gnu/emacs/windows |
|
369 |
Beta releases for Windows. |
|
370 |
||
371 |
Debian. |
|
372 |
------- |
|
373 |
:: |
|
374 |
||
375 |
$ apt-get install emacs |
|
376 |
||
377 |
Emacs paths. |
|
378 |
============ |
|
379 |
:: |
|
380 |
||
381 |
source-directory data-directory doc-directory exec-directory |
|
382 |
invocation-directory trash-directory tutorial-directory user-emacs-directory |
|
383 |
widget-image-directory |
|
384 |
||
385 |
Emacs games. |
|
386 |
============ |
|
387 |
:: |
|
388 |
||
389 |
hanoi hanoi-unix life pong tetris gomoku |
|
390 |
||
391 |
Long lines. |
|
392 |
=========== |
|
1477 | 393 |
:: |
1142 | 394 |
|
395 |
(setq longlines-show-hard-newlines t) |
|
396 |
(setq longlines-wrap-follows-window-size t) |
|
397 |
(longlines-mode 1) |
|
398 |
||
399 |
Printing Emacs structures. |
|
400 |
========================== |
|
1477 | 401 |
:: |
1142 | 402 |
|
403 |
(message "%S" '(a b 123 "hello" 'set)) |
|
404 |
(pp '(a b 123 "hello" 'set)) |
|
405 |
(prin1-to-string '(1 2)) |
|
406 |
||
407 |
(symbol-name 'f) |
|
408 |
(symbol-value 'f) |
|
409 |
(symbol-function 'f) |
|
410 |
(symbol-plist 'f) |
|
411 |
||
1143
3a3389b22964
(local-variable-p var buffer)
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1142
diff
changeset
|
412 |
(local-variable-p var buffer) |
3a3389b22964
(local-variable-p var buffer)
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1142
diff
changeset
|
413 |
|
1142 | 414 |
File manager. |
415 |
============= |
|
416 |
||
1477 | 417 |
* http://www.emacswiki.org/emacs/Sunrise_Commander |
1142 | 418 |
|
419 |
Semantic. |
|
420 |
========= |
|
421 |
||
422 |
semantic-lex-spp-describe |
|
423 |
Describe the current list of spp macros. |
|
424 |
semantic-lex-c-preprocessor-symbol-file |
|
425 |
List of C/C++ files that contain preprocessor macros for the C lexer. |
|
426 |
||
427 |
Debugging C code. |
|
428 |
================= |
|
1477 | 429 |
:: |
1142 | 430 |
|
431 |
-*- mode: grep; mode: auto-revert-tail; default-directory: "~/devel/proj" -*- |
|
432 |
||
433 |
XML modes. |
|
434 |
========== |
|
435 |
||
436 |
XSLT-process. |
|
437 |
------------- |
|
438 |
||
439 |
XSLT-process is a minor mode for GNU Emacs/XEmacs which transforms it into a powerful editor with |
|
440 |
XSLT processing and debugging capabilities. |
|
441 |
||
442 |
The mode currently supports two Java XSLT processors: |
|
443 |
||
444 |
* Saxon - fully supported, including debugging capabilities. |
|
445 |
* Xalan - fully supported, including debugging capabilities. |
|
446 |
||
447 |
http://xslt-process.sourceforge.net/ |
|
448 |
home page |
|
449 |
||
450 |
Useful program logging. |
|
451 |
======================= |
|
452 |
||
453 |
Put first line to your log file, you must replace ``default-directory`` to dir where you build |
|
454 |
program:: |
|
455 |
||
456 |
-*- mode: compilation-minor; mode: auto-revert-tail; default-directory: "~/devel/proj" -*- |
|
457 |
||
458 |
Program must use one of supported by ``compilation-minor-mode`` (see |
|
459 |
``compilation-error-regexp-alist``), like:: |
|
460 |
||
461 |
printf(__FILE__ ":%d: %s\n", __LINE__, msg); /* msg - user defined string */ |
|
462 |
||
463 |
or in second form (in this case line number included in format string, so easy searchable in |
|
464 |
debugger):: |
|
465 |
||
466 |
#define NUM2STR(x) STR(x) |
|
467 |
#define STR(x) #x |
|
468 |
||
469 |
printf(__FILE__ ":" NUM2STR(__LINE__) ": %s\n", msg); |
|
470 |
||
471 |
Or some faster use ``grep-mode``, but you restricted with GNU like error format:: |
|
472 |
||
473 |
-*- mode: grep; mode: auto-revert-tail; default-directory: "~/devel/proj" -*- |
|
474 |
||
475 |
Edit HTML. |
|
476 |
========== |
|
477 |
||
478 |
* psgml-mode |
|
479 |
* nxml-mode |
|
480 |
* sgml-mode |
|
481 |
||
482 |
html-helper-mode. |
|
483 |
----------------- |
|
484 |
||
485 |
Highlighting, autocompletion, and auto-insertion of closing tags. |
|
486 |
||
1477 | 487 |
* http://www.emacswiki.org/emacs/HtmlHelperMode |
488 |
* http://savannah.nongnu.org/projects/baol-hth/ |
|
489 |
* http://www.nongnu.org/baol-hth/ |
|
1142 | 490 |
|
491 |
Source. |
|
492 |
======= |
|
493 |
||
494 |
Get main development sources:: |
|
495 |
||
496 |
$ bzr init-repo --2a emacs |
|
497 |
$ cd emacs |
|
498 |
$ bzr branch http://bzr.savannah.gnu.org/r/emacs/trunk trunk |
|
499 |
$ cd trunk |
|
500 |
$ bzr bind http://bzr.savannah.gnu.org/r/emacs/trunk |
|
501 |
||
502 |
To update with latest changes:: |
|
503 |
||
504 |
$ cd emacs/trunk |
|
505 |
$ bzr update |
|
506 |
||
507 |
See: |
|
508 |
||
1477 | 509 |
* http://www.emacswiki.org/emacs/BzrForEmacsDevs |
1142 | 510 |
|
511 |
Emacs Git mirror. |
|
512 |
----------------- |
|
513 |
||
1477 | 514 |
* http://www.emacswiki.org/emacs/EmacsFromGit |
1142 | 515 |
|
516 |
Patch. |
|
517 |
====== |
|
518 |
||
519 |
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=5719 |
|
520 |
[patch] fix bat-generic-mode highlighting pattern for CLI |
|
521 |
switch. |
|
522 |
||
523 |
How report bug. |
|
524 |
=============== |
|
525 |
||
1477 | 526 |
Visit http://debbugs.gnu.org or ``M-x report-emacs-bug``. |
1142 | 527 |
|
528 |
Finding emacs packages. |
|
529 |
======================= |
|
530 |
||
531 |
* http://anc.ed.ac.uk/~stephen/emacs/ell.html |
|
532 |
* http://www.emacswiki.org/emacs/WikifiedEmacsLispList |
|
533 |
* http://www.emacswiki.org/emacs/RationalElispPackaging |
|
534 |
||
535 |
http://tromey.com/elpa/index.html |
|
536 |
Emacs Lisp Package Archive |
|
537 |
||
538 |
||
539 |
EPLA. |
|
540 |
----- |
|
541 |
||
542 |
ELPA goal is to make it simple to install, use, and upgrade Emacs Lisp packages. |
|
543 |
||
544 |
Currently (2011-02-15) available such sources:: |
|
545 |
||
546 |
(setq package-archives '(("ELPA" . "http://tromey.com/elpa/") |
|
547 |
("gnu" . "http://elpa.gnu.org/packages/") |
|
548 |
("marmalade" . "http://marmalade-repo.org/packages/") |
|
549 |
)) |
|
550 |
||
551 |
* http://www.emacswiki.org/emacs/ELPA |
|
552 |
* http://marmalade-repo.org/ |
|
553 |
||
554 |
http://elpa.gnu.org/ |
|
555 |
official GNU Emacs Lisp Package Archive |
|
556 |
http://tromey.com/elpa/ |
|
557 |
old Emacs Lisp Package Archive home page |
|
558 |
http://tromey.com/elpa/upload.html |
|
559 |
how to contribute |
|
560 |
||
561 |
Emacswiki. |
|
562 |
---------- |
|
563 |
||
1477 | 564 |
* http://www.emacswiki.org/emacs/ElispArea |
565 |
* http://www.emacswiki.org/emacs/WikifiedEmacsLispList |
|
1142 | 566 |
|
567 |
emacsmirror. |
|
568 |
------------ |
|
569 |
||
1477 | 570 |
* https://github.com/emacsmirror/p/wiki |
571 |
* http://www.emacsmirror.org/ |
|
572 |
* http://www.emacswiki.org/emacs/Emacsmirror |
|
1142 | 573 |
|
574 |
Funny Emacs modes. |
|
575 |
================== |
|
576 |
||
577 |
glasses |
|
578 |
Minor mode for making identifiers likeThis readable. |
|
579 |
||
580 |
Useful commands. |
|
581 |
================ |
|
582 |
:: |
|
583 |
||
584 |
flush-lines keep-lines |
|
585 |
align-regexp |
|
586 |
C-x C-o |
|
587 |
M-PageUp/M-PageDown |
|
588 |
command-history |
|
589 |
M-= |
|
590 |
C-x l |
|
591 |
locate-library find-library |
|
592 |
features load-history |
|
593 |