-
Notifications
You must be signed in to change notification settings - Fork 0
/
bindkeys.emacs.mac.old
385 lines (303 loc) · 15.8 KB
/
bindkeys.emacs.mac.old
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
;;; package --- Summary
;;; Commentary:
;; Mappin' some keys, boss.
;;; License:
;; Go on and map some keys, bubb.
;;; Code:
;; Codin' it on up now, boss.
;;; bindings.emacs.el --- Key Bindings for Emacs
;;
;; Copyright (c) 2013 David Conner
;;
;; Author: David Conner <[email protected]>
;; URL:
;; Version: 0.0.1
;; Keywords: me
;; TODO: load some keys from json?
;; TODO: merge bindkeys-json["all"] and bindkeys-json[emos]
;; TODO: eval json as code!
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___HYPERKEY
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; http://stackoverflow.com/questions/10730775/emacs-create-key-modifier
;; (defun osx-terminal-map-hyper ()
;; "Map hyper key in OSX terminal. This requires KeyRemap Config.
;; must map FN => Danish Dollar" ;; this works in non-text buffers, but not in typing text-buffers
;; (define-key function-key-map (kbd "<§>") 'event-apply-hyper-modifier))
;; alternate configuration with PC_APPLICATION_KEY (p) => f20
;;(define-key input-decode-map "p" [f20])
;;(define-key function-key-map (kbd "<f20>") 'event-apply-hyper-modifier)
(defun osx-map-hyper ()
"Map hyper key in OSX. This should work without KeyRemap configuration.
This only works in GUI emacs."
;;(ns-function-modifier 'hyper)
(setq mac-function-modifier 'hyper))
(cond
;;((equal system-type 'darwin) (osx-map-hyper))
((equal system-type 'darwin) (osx-map-hyper)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___TEXT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(global-set-key (kbd "M-[") 'backward-sentence)
(global-set-key (kbd "M-]") 'forward-sentence)
;; (global-set-key (kbd "C-x w") 'wrap-no-lines)
;; (global-set-key (kbd "<home>") 'move-beginning-of-line)
;; (global-set-key (kbd "<end>") 'move-end-of-line)
;; (global-set-key (kbd "H-TAB") 'indent-region)
;; (global-set-key (kbd "H-/") 'comment-region)
;; (global-set-key (kbd "H-?") 'uncomment-region)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___MARKDOWN
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(global-set-key (kbd "H-t") 'synonyms)
(global-set-key (kbd "H-s") 'ispell-word)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___SEARCH
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; isearch
;; (global-set-key (kbd "H-f") 'isearch-forward)
;; ;;(global-set-key (kbd "C-f") 'isearch-repeat-forward)
;; (global-set-key (kbd "H-F") 'isearch-backward)
;; ;;(global-set-key (kbd "C-F") 'isearch-repeat-backward)
;; ;; isearch-toggle-case-fold M-c
;; ;; isearch-toggle-regexp M-r
;; find-grep
(global-set-key (kbd "H-f") 'find-grep)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___REPLACE
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-R _") 'isearch-query-replace)
;; (global-set-key (kbd "H-R SPC") 'isearch-query-replace-regexp)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___CONFIG
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(global-set-key (kbd "H-l") 'reload-init)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___FILENAV
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-l") 'goto-line)
;; (global-set-key (kbd "H-o") 'projectile-recentf)
;; (global-set-key (kbd "H-t") 'projectile-toggle-between-implementation-and-test)
;; (global-set-key (kbd "H-T") 'projectile-find-test-file)
;; (global-set-key (kbd "H-p t") 'projectile-test-project)
;; (global-set-key (kbd "H-d") 'ido-dired) ;; DIRED
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___PROJECTILESEARCH
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-g") 'projectile-grep)
;; ;; TODO: move projectile-replace
;; ;;(global-set-key (kbd "H-r") 'projectile-replace)
;; (global-set-key (kbd "H-a") 'projectile-ack)
;; (global-set-key (kbd "H-p o") 'projectile-multi-occur)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___BUFFERNAV
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-b") 'ido-switch-buffer)
;; (global-set-key (kbd "H-B") 'ibuffer)
;; (global-set-key (kbd "H-k") 'projectile-kill-buffers)
;; ;;(global-set-key (kbd "H-b") 'projectile-switch-to-buffer)
;; (global-set-key (kbd "M-`") 'next-user-buffer)
;; (global-set-key (kbd "M-~") 'previous-user-buffer)
;; ;; next-emacs-buffer
;; ;; previous-emacs-buffer
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___WINDOWNAV
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; next-multiframe-window switches to the next window
;; ;; regardless of which frame it's on
;; ;;(global-set-key (kbd "C-`") 'next-multiframe-window)
;; ;;(global-set-key (kbd "C-~") 'previous-multiframe-window)
;; ;; should use windmove instead
;; ;; (windmove-default-keybindings)
;; (global-set-key (kbd "<C-S-up>") 'windmove-up)
;; (global-set-key (kbd "<C-S-down>") 'windmove-down)
;; (global-set-key (kbd "<C-S-left>") 'windmove-left)
;; (global-set-key (kbd "<C-S-right>") 'windmove-right)
;; ;; why is shift-up mapped to <select>??
;; (global-set-key (kbd "<select>") 'windmove-up)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___FRAMENAV
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;'ergoemacs-switch-to-next-frame
;; ;;'ergoemacs-switch-to-prev-frame
;; (global-set-key (kbd "H-n") 'new-frame)
;; (global-set-key (kbd "H-N") 'delete-frame)
;; (global-set-key (kbd "H-`") 'ergoemacs-switch-to-next-frame)
;; (global-set-key (kbd "H-~") 'ergoemacs-switch-to-previous-frame)
;; ;; FIXME: why doesn't C-` work with emacs??
;; ;;(global-set-key (kbd "C-`") 'ns-next-frame)
;; ;;(global-set-key (kbd "C-~") 'ns-prev-frame)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___TAGS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-p R") 'projectile-regenerate-tags)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___LISPEVAL
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; set to emacs-lisp-mode only?
;; ;;(kset 'ielm '(("all"."H-i")))
;; (global-set-key (kbd "H-i") 'ielm)
;; ;;(global-set-key (kbd "H-RET") 'eval-region)
;; (global-set-key (kbd "H-X") 'eval-region)
;; (global-set-key (kbd "H-x s") 'eval-last-sexp)
;; (global-set-key (kbd "H-x p") 'eval-print-last-sexp)
;; (global-set-key (kbd "H-x r") 'eval-region)
;; (global-set-key (kbd "H-x e") 'eval-expression)
;; (global-set-key (kbd "H-x b") 'eval-buffer)
;; (global-set-key (kbd "H-x d") 'eval-defun-2) ;; or eval-defun?
;; ;; prelude-eval-and-replace - eval and replace region with result
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___SHELL
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-s") 'shell-command)
;; (global-set-key (kbd "H-S") 'ansi-term)
;; ;; sh-beginning-of-command
;; ;; sh-end-of-command
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___MAGIT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; TODO: find a few more keys here
;; (global-set-key (kbd "H-G") 'magit-status) ;; MAGIT (why does H-C-g not work?)
;; ;;(global-set-key (kbd "H-C-r") 'rinari-launch) ;; RINARI
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___HELP
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; TODO: find a different modkey combo?
;; (global-set-key (kbd "H-C-m") 'describe-mode) ;; DESCRIBE MODE
;; (global-set-key (kbd "H-C-K") 'describe-key) ;; DESCRIBE KEY
;; (global-set-key (kbd "H-C-k") 'Helper-describe-bindings) ;; DESCRIBE BINDINGS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___SUPERKEY
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; TODO: remap forward-delete to [???] in iTerm only
;; ;; TODO: remap [???] to Toggle Super Key
;; ;; TODO: map Super+[1,2,3,..] to navigate buffer/frame/windows
;; ;; modifier keys can be configured using these:
;; ;; (setq mac-option-modifier 'meta)
;; ;; (setq mac-control-modifier 'ctrl)
;; ;; (setq mac-command-modifier 'hyper)
;; ;; (setq mac-command-modifier 'super)
;; ;; (setq mac-command-key-is-meta t)
;; ;; (setq mac-option-key-is-meta nil)
;; ;; (setq mac-command-key-is-meta t)
;; ;; (setq mac-option-modifier nil)
;; ;; supposed to prevent osx from trapping command hotkeys
;; ;; but doesn't work, at least from within iTerm
;; ;; (setq mac-pass-command-to-system nil) ;enable/disable?
;; ;; (setq mac-pass-command-to-system t) ;enable/disable?
;; ;; (setq mac-pass-command-to-system) ;enable/disable?
;; ;; (setq mac-pass-control-to-system nil)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___CLOJURE
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; nrepl-jack-in
;; (global-set-key (kbd "H-j") 'nrepl-javadoc)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___RUBY
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; ruby-beginning-of-defun
;; ;; ruby-beginning-of-block
;; ;; ruby-end-of-defun
;; ;; ruby-end-of-block
;; ;; ruby send defuns??
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___RINARI
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; When Rinari mode is loaded, add extra bindings to its key map enabling the
;; ;; use of M-R and M-r as its prefixes. The easier to type M-r is used for the
;; ;; frequently used `find' functions and M-R is used for the more infrequently
;; ;; used rake/script/web-server commands. M-r is normally bound to
;; ;; `move-to-window-line-top-bottom', which I can do without, and M-R is
;; ;; normally unbound. Examples of the changes below; it should be obvious how to
;; ;; pick your own prefixes if you don't like mine.
;; ;;
;; ;; Function Default Binding New Binding
;; ;; ======== =============== ===========
;; ;; rinari-find-controller C-c ; f c H-r c
;; ;; rinari-web-server C-c ; w H-R w
;; (add-hook 'rinari-minor-mode-hook (lambda ()
;; (define-prefix-command 'pd-rinari-map1)
;; (define-prefix-command 'pd-rinari-map2)
;; (local-set-key (kbd "H-R") 'pd-rinari-map1)
;; (local-set-key (kbd "H-r") 'pd-rinari-map2)
;; (define-key pd-rinari-map1 "'" 'rinari-find-by-context)
;; (define-key pd-rinari-map1 ";" 'rinari-find-by-context)
;; (define-key pd-rinari-map1 "c" 'rinari-console)
;; (define-key pd-rinari-map1 "d" 'rinari-cap)
;; (define-key pd-rinari-map1 "e" 'rinari-insert-erb-skeleton)
;; (define-key pd-rinari-map1 "g" 'rinari-rgrep)
;; (define-key pd-rinari-map1 "p" 'rinari-goto-partial)
;; (define-key pd-rinari-map1 "q" 'rinari-sql)
;; (define-key pd-rinari-map1 "r" 'rinari-rake)
;; (define-key pd-rinari-map1 "s" 'rinari-script)
;; (define-key pd-rinari-map1 "t" 'rinari-test)
;; (define-key pd-rinari-map1 "w" 'rinari-web-server)
;; (define-key pd-rinari-map1 "x" 'rinari-extract-partial)
;; (define-key pd-rinari-map2 ";" 'rinari-find-by-context)
;; (define-key pd-rinari-map2 "C" 'rinari-find-cells)
;; (define-key pd-rinari-map2 "F" 'rinari-find-features)
;; (define-key pd-rinari-map2 "M" 'rinari-find-mailer)
;; (define-key pd-rinari-map2 "S" 'rinari-find-steps)
;; (define-key pd-rinari-map2 "Y" 'rinari-find-sass)
;; (define-key pd-rinari-map2 "a" 'rinari-find-application)
;; (define-key pd-rinari-map2 "c" 'rinari-find-controller)
;; (define-key pd-rinari-map2 "e" 'rinari-find-environment)
;; (define-key pd-rinari-map2 "f" 'rinari-find-file-in-project)
;; (define-key pd-rinari-map2 "h" 'rinari-find-helper)
;; (define-key pd-rinari-map2 "i" 'rinari-find-migration)
;; (define-key pd-rinari-map2 "j" 'rinari-find-javascript)
;; (define-key pd-rinari-map2 "l" 'rinari-find-lib)
;; (define-key pd-rinari-map2 "m" 'rinari-find-model)
;; (define-key pd-rinari-map2 "n" 'rinari-find-configuration)
;; (define-key pd-rinari-map2 "o" 'rinari-find-log)
;; (define-key pd-rinari-map2 "p" 'rinari-find-public)
;; (define-key pd-rinari-map2 "r" 'rinari-find-rspec)
;; (define-key pd-rinari-map2 "s" 'rinari-find-script)
;; (define-key pd-rinari-map2 "t" 'rinari-find-test)
;; (define-key pd-rinari-map2 "u" 'rinari-find-plugin)
;; (define-key pd-rinari-map2 "v" 'rinari-find-view)
;; (define-key pd-rinari-map2 "w" 'rinari-find-worker)
;; (define-key pd-rinari-map2 "x" 'rinari-find-fixture)
;; (define-key pd-rinari-map2 "y" 'rinari-find-stylesheet)
;; (define-key pd-rinari-map2 "z" 'rinari-find-rspec-fixture)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___YAML
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; no idea why yaml-mode disables set-mark-command (selecting text)
;; ;; i'm going to assume it's prelude overlapping with ergoemacs
;; ;; - nevermind, this fix doesn't work. yay, complete waste of time.
;; ;; (add-hook 'yaml-mode-hook '(lambda () (define-key "M-SPC" 'set-mark-command)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;___MISC
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; (global-set-key (kbd "H-C-t") 'twit)
;; (global-set-key (kbd "H-M") 'markdown-preview)
;; ;;==============================;;
;; ;; My Key Bindings
;; ;;==============================;;
;; ;; TODO: set gist hotkey
;; ; (global-set-key (kbd "<f8>") 'gist-region-or-buffer)
;; ;;==============================;;
;; ;; My Key Bindings
;; ;;==============================;;
;; ;; http://es.gnu.org/~aleksander/emacs/dotemacs.el
;; ; ;; Simplify Go-to-line with Meta-g
;; ; (global-set-key "\M-g" 'goto-line)
;; ; ;; C-c i calls insert-date-string
;; ; (global-set-key (kbd "C-c i") 'insert-date-string)
;; ; ;; Electric buffer list
;; ; (global-set-key "\C-b" 'electric-buffer-list)
;; ; (global-set-key "\C-x\C-b" 'electric-buffer-list)
;; ; ;; disable that minimize window thing
;; ; (global-unset-key "\C-x\C-z")
;; ; ;; disable closing emacs in Mac OS X
;; ; (if (system-type-is-darwin)
;; ; (global-unset-key "\C-z"))
;; ; ;; Uncomment region command. Comment region is already "C-c c"
;; ; (global-set-key (kbd "\C-c z") 'uncomment-region)
;; ; ;; Enable Dired Extra
;; ; (add-hook 'dired-load-hook
;; ; (lambda ()
;; ; (load "dired-x")))
(provide 'bindkeys)
;;; bindkeys.el ends here