Skip to content

Commit b426065

Browse files
committed
Commit changes from day-1
1 parent f975219 commit b426065

File tree

1 file changed

+184
-32
lines changed

1 file changed

+184
-32
lines changed

emacs-training-outline.org

+184-32
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,109 @@
11
#+TITLE: GNU Emacs training
22

33
* 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
8102
- emacs history
9103

104+
** To be seen
105+
106+
10107
| | Time | Spent |
11108
|-------------------------------------------+------+-------|
12109
| Moving the cursor | 10 | |
@@ -37,7 +134,6 @@
37134
|-------------------------------------------+------+-------|
38135
| Total minutes | 180 | 0 |
39136
#+TBLFM: @24$2=vsum(@3..@-1)::@25$3=vsum(@3..@-1)
40-
41137
* Emacs generalities
42138

43139
** Emacs history overview
@@ -238,8 +334,8 @@ https://www.jwz.org/doc/emacs-timeline.html
238334

239335
** Moving the cursor
240336

241-
- =C-f/b= : move one character forward/backward
242337
- =C-a/e= : move to the beginning/end of line
338+
- =C-f/b= : move one character forward/backward
243339
- =M-a/e= : move to the beginning/end of sentence
244340
- =M-f/b= : move one word forward/backward
245341
- =C-<up/down>= : move one paragraph up/down
@@ -322,9 +418,9 @@ not "mail".
322418

323419
Hit =C-s= and =M-c= to toggle case folding.
324420

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.
328424

329425
Try searching for "maii" instead of "mail" and then hit =DEL= to edit
330426
the search string by deleting the last character.
@@ -367,7 +463,6 @@ Hit =C-s C-h b= to browse the search options.
367463
- dabbrev-expand : =M-/=
368464
- pcomplete : to use when programming a mode
369465
- yasnippet : template expansion
370-
371466
* Emacs Lisp 1: the basics
372467

373468
** 15 minutes tutorial
@@ -484,7 +579,9 @@ See [[*Manipulating lists and their elements][Manipulating lists and their eleme
484579
A function is the name of a sexp, possibly accepting arguments,
485580
returning the value of evaluating the sexp.
486581

487-
A command is an interactive function.
582+
A command is an interactive function, using "(interactive)".
583+
584+
[[file:~/test.el]]
488585

489586
A lambda is an anonymous function.
490587

@@ -612,7 +709,8 @@ See also [[info:elisp#Dynamic%20Binding%20Tips][this info page]] on how to not a
612709
‘?’ is a postfix operator, similar to ‘*’ except that it must match
613710
the preceding expression either once or not at all.
614711

615-
‘*?’, ‘+?’, ‘??’ These are “non-greedy” variants of the operators ‘*’, ‘+’ and ‘?’.
712+
‘*?’, ‘+?’, ‘??’ These are “non-greedy” variants of the operators ‘*’,
713+
‘+’ and ‘?’.
616714

617715
‘[ … ]’ is a “character alternative”
618716

@@ -646,6 +744,32 @@ See also [[info:elisp#Dynamic%20Binding%20Tips][this info page]] on how to not a
646744
(list 'face 'bold))))
647745
#+END_SRC
648746

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+
649773
*** References
650774

651775
- re-search-forward
@@ -679,7 +803,6 @@ See also [[info:elisp#Dynamic%20Binding%20Tips][this info page]] on how to not a
679803
See =org-preserve-lc= for ,@body.
680804

681805
** TODO Using the debugger (1)
682-
683806
* Emacs Lisp 2: programming a new mode
684807

685808
** Mode basics
@@ -704,7 +827,6 @@ See =org-preserve-lc= for ,@body.
704827

705828
** TODO The syntax-table
706829
** TODO Customization
707-
708830
* Emacs Lisp 3: advanced Elisp and mode programming
709831

710832
** TODO Lisp 1 and Lisp 2
@@ -716,7 +838,6 @@ See =org-preserve-lc= for ,@body.
716838
** TODO Major hooks
717839
** TODO The Emacs debugger (2)
718840
** TODO The Emacs profiler
719-
720841
* Org-mode 1: basic functions, workflows, reports
721842

722843
** org-mode as an outliner
@@ -746,15 +867,13 @@ See =org-preserve-lc= for ,@body.
746867
- agenda blocks
747868

748869
** TODO Exploring workflows (GTD, etc.)
749-
750870
* Org-mode 2: Org table and Org Babel
751871

752872
** TODO Main spreadsheet functionalities
753873
** TODO Linking tables
754874
** TODO Embed and execute code from org-mode
755875
** TODO Get the result of embedded code
756876
** TODO Use Org Babel to export code et results
757-
758877
* Miscellaneous
759878

760879
** TODO Writing an Org-mode exporter
@@ -772,7 +891,6 @@ See =org-preserve-lc= for ,@body.
772891
** TODO seq.el
773892
** TODO How to contribute to GNU Emacs?
774893
** TODO Emacs configuration file organization
775-
776894
* Exercises
777895

778896
** Basic (re-)searching
@@ -893,19 +1011,24 @@ See =org-preserve-lc= for ,@body.
8931011

8941012
- narrow to the current region
8951013
- widen
896-
- check (point-min) and (point-max)
8971014
- narrow to the current paragraph
8981015
- narrow to the current defun
8991016
- narrow to the current sexp
900-
- write a function telling whether the buffer is narrowed
1017+
- check (point-min) (point-max) (buffer-size)
9011018

9021019
*** Functions
9031020

904-
- mark-sexps
1021+
- mark-sexp
9051022
- buffer-narrowed-p
1023+
- save-restriction
1024+
- save-window-restiction
9061025

9071026
** Saving various buffer state
9081027

1028+
- write a function telling whether the buffer is narrowed
1029+
1030+
- write a function that preserves the window state after widening
1031+
9091032
- Find the last word of the buffer, display it for 2 second (with the
9101033
cursor on the first character of this last word), then restore the
9111034
initial cursor position.
@@ -914,9 +1037,19 @@ See =org-preserve-lc= for ,@body.
9141037
part of the buffer, display it (with the cursor at the beginning of
9151038
the word), then restore the narrowed state and the cursor position.
9161039

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.
9201053

9211054
*** Functions
9221055

@@ -1106,20 +1239,24 @@ Match every character in the buffer below point.
11061239
** Manipulating lists and their elements
11071240

11081241
Make a list of five strings.
1242+
# (setq testlist (append (make-list 5 "abc") '("def")))
11091243

11101244
Return the first element of the list.
1111-
1112-
Return the last element of the string.
1245+
# (reverse testlist)
1246+
# (last testlist)
11131247

11141248
Return the number of elements of the list.
1249+
# (length testlist)
1250+
1251+
(cdr (cdr (cdr '(1 2 3 4 5))))
11151252

11161253
Store the list in a variable.
11171254

1118-
Replace the car of the list.
1255+
Replace the car of the list. (setcar)
11191256

1120-
Replace the cdr of the list.
1257+
Replace the cdr of the list. (setcdr)
11211258

1122-
Return the 4th element of the list.
1259+
Replace the 4th element of the list. (nthcdr)
11231260

11241261
*** Hints
11251262

@@ -1150,9 +1287,9 @@ numerical value.
11501287

11511288
*** Hints
11521289

1153-
- make-list
1154-
- random
1155-
- (sort '(1 2 4 3) '<)
1290+
# - make-list
1291+
# - random
1292+
# - (sort '(1 2 4 3) '<)
11561293

11571294
** Use a recursive function to implement "flatten"
11581295

@@ -1198,3 +1335,18 @@ View the list of all todo tasks with =C-c a t=.
11981335
Insert a code block by entering =< s TAB= at the beginning of a line.
11991336

12001337
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

Comments
 (0)