Skip to content

Commit 2822f9b

Browse files
committed
Update
1 parent 6b7c1a5 commit 2822f9b

File tree

4 files changed

+239
-0
lines changed

4 files changed

+239
-0
lines changed

day-3.org

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
* sns mode
2+
3+
- font-lock-defaults ([[info:elisp#Font%20Lock%20Basics][voir manuel]])
4+
- auto-fill
5+
- auto-indent (indent-line-function)
6+
- ad-advice
7+
- defgroup
8+
- defcustom
9+
- defface
10+
11+
* hooks
12+
13+
- add-hook (add-hook 'lisp-interaction-mode-hook 'auto-fill-mode)
14+
- remove-hook
15+
- run-hook
16+
- delay-mode-hooks
17+
- before-save-hook
18+
- before-init-hook
19+
20+
(defcustom org-mode-hook nil
21+
"Mode hook for Org-mode, run after the mode was turned on."
22+
:group 'org
23+
:type 'hook)
24+
25+
;;;###autoload
26+
(defun org-clock-persistence-insinuate ()
27+
"Set up hooks for clock persistence."
28+
(require 'org-clock)
29+
(add-hook 'org-mode-hook 'org-clock-load)
30+
(add-hook 'kill-emacs-hook 'org-clock-save))
31+
32+
* org-mode
33+
34+
- export
35+
- table
36+
- babel
37+
38+
* code
39+
40+
- flatten
41+
- read-from-minibuffer
42+
- read-from-string
43+
- read-char
44+
45+
* divers
46+
47+
- comment init files
48+
- magit
49+
- flycheck
50+
- completion
51+
52+
* hooks

sns.el

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
;;; sns.el --- sns major mode
2+
3+
;;; Commentary:
4+
5+
;;; Code:
6+
7+
(add-to-list 'auto-mode-alist '("\\.ini\\'" . sns-mode))
8+
9+
(defvar sns-mode-map
10+
(let ((map (make-sparse-keymap)))
11+
;; (define-key map [foo] 'sample-do-foo)
12+
map)
13+
"Keymap for `sample-mode'.")
14+
15+
;; (defvar sample-mode-syntax-table
16+
;; (let ((st (make-syntax-table)))
17+
;; (modify-syntax-entry ?# "<" st)
18+
;; (modify-syntax-entry ?\n ">" st)
19+
;; st)
20+
;; "Syntax table for `sample-mode'.")
21+
22+
(defvar sns-font-lock-keywords
23+
'(("function \\(\\sw+\\)" (1 font-lock-function-name-face)))
24+
"Keyword highlighting specification for `sample-mode'.")
25+
26+
;; (defvar sample-imenu-generic-expression
27+
;; ...)
28+
29+
(defvar sns-outline-regexp
30+
"\\[http:.+\\.global\\]"
31+
""
32+
)
33+
34+
(defvar sns-outline-regexp-bol
35+
"^\\[http:.+\\.global\\]"
36+
""
37+
)
38+
39+
;;;###autoload
40+
(define-derived-mode sns-mode conf-mode "sns"
41+
"A major mode for editing Sample files."
42+
;; :syntax-table sample-mode-syntax-table
43+
;; (setq-local comment-start "# ")
44+
;; (setq-local comment-start-skip "#+\\s-*")
45+
;; (setq-local font-lock-defaults
46+
;; '(conf-font-lock-keywords))
47+
;; (setq-local indent-line-function 'sample-indent-line)
48+
;; (setq-local imenu-generic-expression
49+
;; sample-imenu-generic-expression)
50+
;; (setq-local outline-regexp sample-outline-regexp)
51+
;; (setq-local comment-start "#")
52+
;; (setq-local comment-start-skip "#.*$")
53+
(setq-local paragraph-start " \\|[ ]\\|\\[*$")
54+
(setq-local paragraph-separate "[ ]*$")
55+
(setq-local outline-regexp sns-outline-regexp)
56+
(setq-local org-outline-regexp sns-outline-regexp)
57+
(setq-local org-outline-regexp-bol sns-outline-regexp-bol)
58+
)
59+
60+
(font-lock-add-keywords
61+
'sns-mode
62+
'(("^\\[\\([^:]+\\):.+\\.global\\]" (1 font-lock-warning-face))
63+
("^\\[.+:.+\\.global\\]" (0 font-lock-function-name-face))))
64+
65+
;;; Indentation
66+
67+
;; (defun sample-indent-line ()
68+
;; "Indent current line of Sample code."
69+
;; (interactive)
70+
;; (let ((savep (> (current-column) (current-indentation)))
71+
;; (indent (condition-case nil (max (sample-calculate-indentation) 0)
72+
;; (error 0))))
73+
;; (if savep
74+
;; (save-excursion (indent-line-to indent))
75+
;; (indent-line-to indent))))
76+
77+
;; (defun sample-calculate-indentation ()
78+
;; "Return the column to which the current line should be indented."
79+
;; ...)
80+
81+
(provide 'sns)
82+
83+
;; (featurep 'org)
84+
85+
;;; sample.el ends here

test.el

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
;; (if (re-search-forward "defun \\(\\(?:\\w\\|\\s_\\)+\\)" nil t)
2+
3+
;; (if (re-search-forward "defun \\([:alpha:]+\\)" nil t)
4+
;; (match-string-no-properties 1))
5+
6+
;; (if (re-search-forward "[[:graph:]]+ \\([[:graph:]]+\\)" nil t)
7+
;; (match-string-no-properties 1))
8+
9+
;; (if (re-search-forward "[[:graph:]]+ \\<\\([[:graph:]]+\\)\\>" nil t)
10+
;; (match-string-no-properties 1))
11+
12+
;; (if (re-search-forward "[[:graph:]]+ \\_<\\([[:graph:]]+\\)\\_>" nil t)
13+
;; (match-string-no-properties 1))
14+
15+
(defun my-new-function (name) ;; lskdjflksjdf
16+
"Display my name."
17+
(interactive "sNom: ")
18+
(message "Votre nom est %s" name))
19+
20+
(setq mytest (make-list 5 "abc"))
21+
(length mytest)
22+
23+
(defun my-find-buffer (buf)
24+
"Find a buffer."
25+
(interactive "BWhich buffer? ")
26+
(switch-to-buffer-other-window buf))
27+
28+
(defun my-numerical-prefix-test (arg)
29+
""
30+
(interactive "p")
31+
(message "La valeur de l'argument est %s" arg))
32+
33+
;; (my-numerical-prefix-test)
34+
35+
(defun test ()
36+
(let ((a "arnold")
37+
(b "beatrice")
38+
c d e)
39+
(message "%s" c)))
40+
41+
(defun my-raw-prefix-test (arg)
42+
""
43+
(interactive "P")
44+
(cond ((equal arg '(4))
45+
(message "C-u n'a été tapé qu'une fois"))
46+
((equal arg '(16))
47+
(message "C-u n'a été tapé que deux fois"))
48+
(t (message "La valeur de l'argument est %s" arg))))
49+
50+
(defun my-narrowing (start end)
51+
""
52+
(interactive "r")
53+
(narrow-to-region start end)
54+
(deactivate-mark))
55+
56+
(when (re-search-forward
57+
"test" ;; le pattern
58+
;; la position limite (d'habitude nil)
59+
(save-excursion
60+
(save-match-data
61+
;; (re-search-forward "raw" nil t)))
62+
(re-search-forward "\\'" nil t)))
63+
;;
64+
t)
65+
66+
;; goto-char
67+
;; C-u C-M-x : edebug-defun
68+
;; (my-raw-prefix-test)
69+
70+
71+

test.in

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[http:client.global]
2+
revision=1
3+
flags=a,b,c,d,e
4+
5+
[http:client.1]
6+
severity=1
7+
classification=0
8+
action_fw=block,block,block,block
9+
level_fw=minor,minor,minor,minor
10+
1="pcre1"
11+
2="pcre2"
12+
13+
[http:client.2]
14+
severity=1
15+
classification=0
16+
action_fw=block,block,block,block
17+
level_fw=minor,minor,minor,minor
18+
1="pcre1"
19+
2="pcre2"
20+
21+
[http:server.global]
22+
revision=1
23+
flags=a,b,c,d,e
24+
25+
[http:server.1]
26+
severity=1
27+
classification=0
28+
action_fw=block,block,block,block
29+
level_fw=minor,minor,minor,minor
30+
1="pcre1"
31+
2="pcre2"

0 commit comments

Comments
 (0)