Skip to content

Commit 7798f20

Browse files
committed
Changes for emacs 24.5.1
1 parent 2824513 commit 7798f20

File tree

4 files changed

+9
-642
lines changed

4 files changed

+9
-642
lines changed

init.el

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,13 @@
9292
(mapc #'load (directory-files user-specific-dir nil ".*el$")))
9393
(if (file-exists-p user-specific-config) (load user-specific-config))
9494

95+
;; http://stackoverflow.com/questions/24779041/disable-warning-about-emacs-d-in-load-path
96+
(defadvice display-warning
97+
(around no-warn-.emacs.d-in-load-path (type message &rest unused) activate)
98+
"Ignore the warning about the `.emacs.d' directory being in `load-path'."
99+
(unless (and (eq type 'initialization)
100+
(string-prefix-p "Your `load-path' seems to contain\nyour `.emacs.d' directory"
101+
message t))
102+
ad-do-it))
103+
95104
;;; init.el ends here

personal/init-bindings.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535
(global-set-key (kbd "<f8>") 'follow-delete-other-windows-and-split)
3636
(global-set-key (kbd "<M-f8>") 'follow-mode-quit)
3737
(global-set-key (kbd "<f9>") 'open-shell-pane)
38-
(global-set-key (kbd "<M-f9>") 'sr-speedbar-toggle)
39-
(global-set-key (kbd "<C-M-f9>") 'speedbar-refresh)
4038
(global-set-key (kbd "<f11>") 'toggle-fullscreen)
4139
(global-set-key (kbd "<M-f11>") 'darkroom-mode)
4240
(global-set-key (kbd "<f12>") 'call-last-kbd-macro)

personal/init-speedbar.el

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)