forked from jaseemabid/emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippets.el
53 lines (44 loc) · 1.49 KB
/
snippets.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;; --------------------------------------------------- ;;
;; Collection of snippets and macros that don't fit anywhere else ;;
;; --------------------------------------------------- ;;
(defun passwords-edit ()
"Edit the passwords file."
(interactive)
(find-file "~/Notes/Passwords.org.gpg"))
(defmacro replace-in-file (from-string to-string)
`(progn
(goto-char (point-min))
(while (search-forward ,from-string nil t)
(replace-match ,to-string nil t))))
(defun cleanup-fancy-quotes ()
(interactive)
(progn
(replace-in-file "’" "'")
(replace-in-file "“" "\"")
(replace-in-file "”" "\"")
(replace-in-file "" "")))
(defun smart-open-line ()
"Shortcut for C-e RET"
(interactive)
(move-end-of-line nil)
(newline))
(global-set-key [(shift return)] 'smart-open-line)
;; Occur in isearch
;; http://www.emacswiki.org/emacs/OccurFromIsearch
(defun isearch-occur ()
"Invoke `occur' from within isearch."
(interactive)
(let ((case-fold-search isearch-case-fold-search))
(occur (if isearch-regexp isearch-string (regexp-quote isearch-string)))))
(define-key isearch-mode-map (kbd "C-c o") 'isearch-occur)
;; Custom macros
(fset 'sink
[?R ?~ ?/ ?. ?l ?o ?c ?a ?l ?/ ?s ?h ?a ?r ?e ?/ ?e ?x ?t ?r ?a ?s tab return])
(fset 'doc
[?R ?~ ?/ ?D ?o ?c ?u ?m tab ?U ?n tab return])
(fset 'dot-link
[S-end ?\M-w ?S ?~ ?/ ?. ?\C-y return])
(fset 'music-add
[S-end ?\M-w ?S ?~ ?/ ?M ?e return ?P ?l ?a return ?\C-y return])
(global-set-key (kbd "C-c ma") 'music-add)