1
1
#+TITLE: GNU Emacs training
2
2
3
3
* Line-up for wednesday
4
-
5
- - emacs movement
6
- - org-mode movement
7
- - functions
4
+
5
+ ** Seen
6
+
7
+ *** Emacs movements
8
+
9
+ - sexp C-M-f C-M-a C-M-k C-M-@
10
+ - function vs command
11
+ - C-h v
12
+ - C-h f
13
+ - C-h k
14
+ - last-command
15
+ - this-command
16
+ - mark
17
+ - mark-ring (global-mark-ring)
18
+ - selection
19
+ - region
20
+ - M-x customize-face RET region
21
+ - string-rectangle (C-x r t)
22
+ - indent-region (C-M-\)
23
+ - C-l (recenter)
24
+
25
+ *** Org-mode movement
26
+
27
+ - M-RET / M-<up/down> / M-<left/right>
28
+ - C-c C-t : ajout de mots-clefs TODO
29
+ - S-<left/right> : switch TODO keywords
30
+ - C-u C-c C-c : checkboxes
31
+ - M-h (repeat) : select l'élément courant
32
+ - C-h v org-special-ctrl-a/e RET
33
+ - <s code block
34
+ - ajout "emacs-lisp"
35
+ - C-h org-src-fontify-natively RET
36
+ - C-c ^ (org-sort)
37
+ - M-<up/down> pour les paragraphes
38
+ - question des overlays (org-src-background)
39
+ - C-x C-e (dans org-mode ou elisp)
40
+
41
+ *** Search
42
+
43
+ - C-s C-w C-w
44
+ - C-s M-e : éditer la recherche en cours
45
+ - C-s M-p/n : browser search history
46
+ - C-s C-M-i : complétion sur l'historique de recherche
47
+ - C-s M-s r : toggle regexp search
48
+ - C-s M-s c : toggle case-folding
49
+ - C-s M-s SPC : toggle whitespace lax search
50
+ - C-s M-s o : occur
51
+
52
+ *** Dired
53
+
54
+ - find-grep
55
+ - Q to re-replace
56
+
57
+ *** Org-mode caldav
58
+ *** Regular expressions
59
+
60
+ - syntax
61
+ - use within re-search-forward
62
+
63
+ *** Interactive calls
64
+ *** Narrowing C-x n
65
+
66
+ C-x n n : narrow-to-region
67
+ C-x n s : narrow-to-subtree
68
+ C-x n w : widen
69
+
70
+ *** Functions to narrow
71
+ *** Functions to save match data
72
+
73
+ *** Instrumenting a function
74
+ *** 15 minutes tutorial emacs-doctor
75
+
76
+ Nouveautés :
77
+
78
+ - lisp-interaction-mode
79
+ - switch-to-buffer-other-window
80
+ - get-buffer-create
81
+ - erase-buffer
82
+ - insert
83
+ - format
84
+ - (progn (+ 1 2) (+ 3 5))
85
+ - (setq myliste '(1 2)) (push 0 myliste)
86
+ - (mapcar (lambda(s) (1+ s)) '(1 2))
87
+ - (mapconcat (lambda(s) (concat s "@")) '("a" "b" "c") "-")
88
+ - while
89
+ - replace-match
90
+ - add-text-properties
91
+ - other-window
92
+ - car cdr
93
+
94
+ *** Manipulating lists
95
+
96
+ ** Rest
97
+
98
+ - interactive macros
99
+ - renaming files with a macro
100
+ - keybindings (define-key, kbd)
101
+ - file cleanup
8
102
- emacs history
9
103
104
+ ** To be seen
105
+
106
+
10
107
| | Time | Spent |
11
108
|-------------------------------------------+------+-------|
12
109
| Moving the cursor | 10 | |
37
134
|-------------------------------------------+------+-------|
38
135
| Total minutes | 180 | 0 |
39
136
#+TBLFM: @24$2=vsum(@3..@-1)::@25$3=vsum(@3..@-1)
40
-
41
137
* Emacs generalities
42
138
43
139
** Emacs history overview
@@ -238,8 +334,8 @@ https://www.jwz.org/doc/emacs-timeline.html
238
334
239
335
** Moving the cursor
240
336
241
- - =C-f/b= : move one character forward/backward
242
337
- =C-a/e= : move to the beginning/end of line
338
+ - =C-f/b= : move one character forward/backward
243
339
- =M-a/e= : move to the beginning/end of sentence
244
340
- =M-f/b= : move one word forward/backward
245
341
- =C-<up/down>= : move one paragraph up/down
@@ -322,9 +418,9 @@ not "mail".
322
418
323
419
Hit =C-s= and =M-c= to toggle case folding.
324
420
325
- Hit =C-s= and =M-s SPC= to toggle case folding : when matching spaces
326
- loosely, you can search for a string like "mail client" and still
327
- match the "mail client" string.
421
+ Hit =C-s= and =M-s SPC= to toggle "match spaces loosely" : when matching
422
+ spaces loosely, you can search for a string like "mail client" and
423
+ still match the "mail client" string.
328
424
329
425
Try searching for "maii" instead of "mail" and then hit =DEL= to edit
330
426
the search string by deleting the last character.
@@ -367,7 +463,6 @@ Hit =C-s C-h b= to browse the search options.
367
463
- dabbrev-expand : =M-/=
368
464
- pcomplete : to use when programming a mode
369
465
- yasnippet : template expansion
370
-
371
466
* Emacs Lisp 1: the basics
372
467
373
468
** 15 minutes tutorial
@@ -484,7 +579,9 @@ See [[*Manipulating lists and their elements][Manipulating lists and their eleme
484
579
A function is the name of a sexp, possibly accepting arguments,
485
580
returning the value of evaluating the sexp.
486
581
487
- A command is an interactive function.
582
+ A command is an interactive function, using "(interactive)".
583
+
584
+ [[file:~/test.el]]
488
585
489
586
A lambda is an anonymous function.
490
587
@@ -612,7 +709,8 @@ See also [[info:elisp#Dynamic%20Binding%20Tips][this info page]] on how to not a
612
709
‘?’ is a postfix operator, similar to ‘*’ except that it must match
613
710
the preceding expression either once or not at all.
614
711
615
- ‘*?’, ‘+?’, ‘??’ These are “non-greedy” variants of the operators ‘*’, ‘+’ and ‘?’.
712
+ ‘*?’, ‘+?’, ‘??’ These are “non-greedy” variants of the operators ‘*’,
713
+ ‘+’ and ‘?’.
616
714
617
715
‘[ … ]’ is a “character alternative”
618
716
@@ -646,6 +744,32 @@ See also [[info:elisp#Dynamic%20Binding%20Tips][this info page]] on how to not a
646
744
(list 'face 'bold))))
647
745
#+END_SRC
648
746
747
+ *** Examples
748
+
749
+ #+BEGIN_SRC emacs-lisp
750
+ (defun my-new-search-function ()
751
+ "This is my new search function."
752
+ (interactive)
753
+ (if ;; (re-search-forward "" nil t)
754
+ (re-search-forward "\\([a-z]\\{1,2\\}\\)\\([0-9]+\\)" nil yt)
755
+ (message
756
+ "J'ai trouvé deux groupes : \"%s\" et \"%s\""
757
+ (match-string 1)
758
+ (match-string 2))
759
+ (user-error "J'ai rien trouvé")))
760
+
761
+ (my-new-search-function)
762
+
763
+ ;; (
764
+ ;; [
765
+ ;; |
766
+ ;; a1
767
+ ;; abcde1
768
+ ;; abcde3
769
+ ;; abcde
770
+ ;; abcde
771
+ #+END_SRC
772
+
649
773
*** References
650
774
651
775
- re-search-forward
@@ -679,7 +803,6 @@ See also [[info:elisp#Dynamic%20Binding%20Tips][this info page]] on how to not a
679
803
See =org-preserve-lc= for ,@body.
680
804
681
805
** TODO Using the debugger (1)
682
-
683
806
* Emacs Lisp 2: programming a new mode
684
807
685
808
** Mode basics
@@ -704,7 +827,6 @@ See =org-preserve-lc= for ,@body.
704
827
705
828
** TODO The syntax-table
706
829
** TODO Customization
707
-
708
830
* Emacs Lisp 3: advanced Elisp and mode programming
709
831
710
832
** TODO Lisp 1 and Lisp 2
@@ -716,7 +838,6 @@ See =org-preserve-lc= for ,@body.
716
838
** TODO Major hooks
717
839
** TODO The Emacs debugger (2)
718
840
** TODO The Emacs profiler
719
-
720
841
* Org-mode 1: basic functions, workflows, reports
721
842
722
843
** org-mode as an outliner
@@ -746,15 +867,13 @@ See =org-preserve-lc= for ,@body.
746
867
- agenda blocks
747
868
748
869
** TODO Exploring workflows (GTD, etc.)
749
-
750
870
* Org-mode 2: Org table and Org Babel
751
871
752
872
** TODO Main spreadsheet functionalities
753
873
** TODO Linking tables
754
874
** TODO Embed and execute code from org-mode
755
875
** TODO Get the result of embedded code
756
876
** TODO Use Org Babel to export code et results
757
-
758
877
* Miscellaneous
759
878
760
879
** TODO Writing an Org-mode exporter
@@ -772,7 +891,6 @@ See =org-preserve-lc= for ,@body.
772
891
** TODO seq.el
773
892
** TODO How to contribute to GNU Emacs?
774
893
** TODO Emacs configuration file organization
775
-
776
894
* Exercises
777
895
778
896
** Basic (re-)searching
@@ -893,19 +1011,24 @@ See =org-preserve-lc= for ,@body.
893
1011
894
1012
- narrow to the current region
895
1013
- widen
896
- - check (point-min) and (point-max)
897
1014
- narrow to the current paragraph
898
1015
- narrow to the current defun
899
1016
- narrow to the current sexp
900
- - write a function telling whether the buffer is narrowed
1017
+ - check (point-min) (point-max) ( buffer-size)
901
1018
902
1019
*** Functions
903
1020
904
- - mark-sexps
1021
+ - mark-sexp
905
1022
- buffer-narrowed-p
1023
+ - save-restriction
1024
+ - save-window-restiction
906
1025
907
1026
** Saving various buffer state
908
1027
1028
+ - write a function telling whether the buffer is narrowed
1029
+
1030
+ - write a function that preserves the window state after widening
1031
+
909
1032
- Find the last word of the buffer, display it for 2 second (with the
910
1033
cursor on the first character of this last word), then restore the
911
1034
initial cursor position.
@@ -914,9 +1037,19 @@ See =org-preserve-lc= for ,@body.
914
1037
part of the buffer, display it (with the cursor at the beginning of
915
1038
the word), then restore the narrowed state and the cursor position.
916
1039
917
- - Find the last word before the end of the current sentence. Find the
918
- next digit. Return the position of the first character of the word
919
- in the first match.
1040
+ - beginning-of-buffer
1041
+ - end-of-buffer
1042
+ - bobp (synonyme de beginning of buffer-p ?)
1043
+ - eobp (synonyme de end of buffer-p ?)
1044
+ - (goto-char (point-min))
1045
+ - (re-search-backward "\\`" nil t)
1046
+
1047
+ - Find the last word before the end of the current sentence. Return
1048
+ the position of the first character of the word in the first match.
1049
+
1050
+ - Find the start of a defun, match the name of the defun, narrow to
1051
+ the defun, find the next opening parenthesis, find the next
1052
+ argument, return the name of the function.
920
1053
921
1054
*** Functions
922
1055
@@ -1106,20 +1239,24 @@ Match every character in the buffer below point.
1106
1239
** Manipulating lists and their elements
1107
1240
1108
1241
Make a list of five strings.
1242
+ # (setq testlist (append (make-list 5 "abc") '("def")))
1109
1243
1110
1244
Return the first element of the list.
1111
-
1112
- Return the last element of the string.
1245
+ # (reverse testlist)
1246
+ # ( last testlist)
1113
1247
1114
1248
Return the number of elements of the list.
1249
+ # (length testlist)
1250
+
1251
+ (cdr (cdr (cdr '(1 2 3 4 5))))
1115
1252
1116
1253
Store the list in a variable.
1117
1254
1118
- Replace the car of the list.
1255
+ Replace the car of the list. (setcar)
1119
1256
1120
- Replace the cdr of the list.
1257
+ Replace the cdr of the list. (setcdr)
1121
1258
1122
- Return the 4th element of the list.
1259
+ Replace the 4th element of the list. (nthcdr)
1123
1260
1124
1261
*** Hints
1125
1262
@@ -1150,9 +1287,9 @@ numerical value.
1150
1287
1151
1288
*** Hints
1152
1289
1153
- - make-list
1154
- - random
1155
- - (sort '(1 2 4 3) '<)
1290
+ # - make-list
1291
+ # - random
1292
+ # - (sort '(1 2 4 3) '<)
1156
1293
1157
1294
** Use a recursive function to implement "flatten"
1158
1295
@@ -1198,3 +1335,18 @@ View the list of all todo tasks with =C-c a t=.
1198
1335
Insert a code block by entering =< s TAB= at the beginning of a line.
1199
1336
1200
1337
Add emacs-lisp so that the code block knows we are writing Elisp code.
1338
+ * Structure fichier org
1339
+
1340
+ ** Sandbox
1341
+
1342
+ ** Functions
1343
+
1344
+ ** Variables
1345
+
1346
+ ** Questions
1347
+ * Points à revoir demain
1348
+
1349
+ - eq / equal
1350
+ - null / nil
1351
+ - Write a function to implement custom C-a
1352
+ - Using last-command this-command
0 commit comments