dotfiles/emacs/.emacs.d/elpa/taxy-0.10.2/examples/README.org

1.2 KiB

Taxy Examples

Some example applcations using taxy.

Bookmarky

bookmarky shows Emacs bookmarks grouped in a customizeable way:

/marc/dotfiles/media/commit/baad4e64ff291098ee6b70251ca6382388efe924/emacs/.emacs.d/elpa/taxy-0.10.2/images/bookmarky.png

Deffy

deffy shows definitions and top-level forms in an Elisp project or file.

/marc/dotfiles/media/commit/baad4e64ff291098ee6b70251ca6382388efe924/emacs/.emacs.d/elpa/taxy-0.10.2/images/deffy.png

Diredy

Diredy rearranges a Dired buffer, grouping files and directories by their size and MIME type. Use it like:

  (require 'diredy)

Then open a Dired buffer and M-x diredy RET, and it will be rearranged like so:

/marc/dotfiles/media/commit/baad4e64ff291098ee6b70251ca6382388efe924/emacs/.emacs.d/elpa/taxy-0.10.2/images/diredy.png

Musicy

Musicy displays a music library in a magit-section buffer. Use it like:

  (require 'musicy)

  (musicy "~/Music")

Since it calls the mediainfo program on every file, it can be slow on large music libraries, so you might want to test it on only a subset of them, like:

  (musicy-files
   (seq-take (directory-files-recursively
              "~/Music" (rx "." (or "mp3" "ogg") eos))
             100))

The resulting buffer shows tracks organized by genre, then artist, then year, then album, then track name:

/marc/dotfiles/media/commit/baad4e64ff291098ee6b70251ca6382388efe924/emacs/.emacs.d/elpa/taxy-0.10.2/images/musicy.png