-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemacs-cheat-sheet
134 lines (107 loc) · 2.84 KB
/
emacs-cheat-sheet
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
Basic
----------
Open File: C-x C-f
Quit: C-x C-c
Save: C-x C-s
Kill Buffer: C-x k
Switch Buffer: C-x <left arrow>
Undo: C-x u
Movement
------------
PageUp: M-v
PageDown: C-v
Center arond cursor: C-l
Up: C-p
Down: C-n
Left: C-f
Right: C-b
Left Word: M-f
Right Word: M-b
Begin of line: C-a
End of line: C-e
End of buffer: M->
Start of buffer: M-<
Repeat command n times: C-u n <CMD>
for example move down 120 lines: C-u 120 C-n
Delete: C-d
Delete from cursor to end of line: C-k
Mark Text (start selection): C-<space>
Kill Selection (cut): C-w
Yank (paste): C-y
Yank prev: M-y
Exchange Mark and cursor: C-x C-x
Info-Mode: C-h i
Search: C-s word
Search Up: C-r word
Next: C-s
Windows
----------
One buffer on screen: C-x 1
Split screen into 2 frames: C-x 2
Switch between frames on screen: C-x o
Switch between buffers: C-x <left-arrow> or C-x <right-arrow>
* c++ mode on header files
(setq auto-mode-alist
(append '(("\\.cpp$" . c++-mode)
("\\.h$" . c++-mode)
("\\.c$" . c-mode)
("\\.txt$" . text-mode)
("\\.rb$" . ruby-mode))
auto-mode-alist))
* get rid of ~ files
;; Change backup behavior to save in a directory, not in a miscellany
;; of files all over the place.
(setq backup-by-copying t
backup-directory-alist '(("." . "~/.emacs.d/backups"))
delete-old-versions t
kept-new-versions 6
kept-old-versions 2
version-control t)
* create-scratch-buffer
;; create a new *scratch* buffer
(defun create-scratch-buffer nil
"create a new scratch buffer to work in. (could be *scratch* - *scratchX*)"
(interactive)
(let ((n 0)
bufname)
(while (progn
(setq bufname (concat "*scratch"
(if (= n 0) "" (int-to-string n))
"*"))
(setq n (1+ n))
(get-buffer bufname)))
(switch-to-buffer (get-buffer-create bufname))
(if (= n 1) (lisp-interaction-mode))))
Notes
--------
Esc can be used instead of meta key, M-y can executed by pressing ESC then pressing y.
Emacs Lisp
-------
Evaluate Prev Lisp Expression: C-x C-e
Put the cursor at the end of an s-expression.
Evaluate Prev Lisp Expression & Print result in buffer: C-u C-x C-e
Put the cursor at the end of an s-expression, then the result will be inserted into the buffer.
The first arg to set needs to be a symbol.
(set 'foo 2)
You can use setq instead to ommit the quote
(setq foo (+ 1 2))
You can do multiple setq's at once
(setq one 1
two 2)
Message is a printf like function
(message "wassup world, I gots %d %s" 2 "dollas")
(buffer-name)
(buffer-file-name)
(defun add-by-seven (n)
"Adds seven to a number"
(+ n 7))
(add-by-seven 2)
TODO
------------
* quickly open file by substring name
like workspace wiz
find-name-dired - crappy doesnt search sub dirs.
* search within set of files for substring & regexp
grep-find
* jump to tag prototype & defininition
* compile cursor should stay at bottom. (keep scrolling) end-of-buffer