Initial commit.
[emus.git] / emus.el
1 ;;; emus.el --- Simple music player for Emacs
2
3 ;; Author: T. G. Vaughan <tgvaughan@gmail.com>
4 ;; Version: 1.0
5 ;; Keywords: multimedia
6 ;; URL: http://github.com/tgvaughan/emus
7
8 ;; Commentary:
9
10 ;; This is a simple package for playing audio from a local library
11 ;; of audio files.
12
13 ;;;###autoload
14 (defun emus ()
15   "Switch to *emus* audio library buffer."
16   (interactive)
17   (switch-to-buffer "*emus*")
18   (emus-mode))