changelog shortlog tags changeset files revisions annotate raw

de_music.el

changeset 66: 5b737eefe5ea
author: kim.vanwyk
date: Wed Nov 10 15:19:03 2010 +0200 (18 months ago)
permissions: -rw-r--r--
description: Adding CSharp Mode and Google Weather
1;; Music playing functionality
2;; EMMS stuff
3(if (require-if-exists 'emms-setup "emms-3.0/")
4 (progn
5 (add-to-list 'exec-path "C:/utils/MPlayer-1.0rc2/")
6 (emms-standard)
7 (global-set-key (kbd "C-' C-s") 'emms-show)
8 (global-set-key (kbd "C-' C-n") 'emms-next)
9 (global-set-key (kbd "C-' C-b") 'emms-previous)
10 (global-set-key (kbd "C-' C-p") 'emms-pause)
11 (global-set-key (kbd "C-' C-l") 'emms)
12 (emms-default-players)))
13
14
15(provide 'de_music)