An open API service indexing awesome lists of open source software.

https://github.com/peterhoeg/cue-sheet-mode

.cue file support for emacs
https://github.com/peterhoeg/cue-sheet-mode

Last synced: 6 months ago
JSON representation

.cue file support for emacs

Awesome Lists containing this project

README

          

[[https://melpa.org/#/cue-sheet-mode][https://melpa.org/packages/cue-sheet-mode-badge.svg]]

* cue-sheet-mode

Very basic support for CUE sheet files in emacs.

It currently supports the following:

1. syntax highlighting
2. imenu for jumping to files and tracks
3. helper for looking up ISRC codes

** Installation

You can either install directly from [[https://melpa.org/#/cue-sheet-mode][MELPA]] or do it manually.

For *Doom Emacs*:

#+CAPTION: init.el
#+begin_src emacs-lisp
(package! cue-sheet-mode)
#+end_src

#+CAPTION: config.el
#+begin_src emacs-lisp
(use-package cue-sheet-mode :defer t
:config
(add-hook! cue-sheet-mode
(map! :map cue-sheet-mode-map
:localleader
:desc "look up ISRC" :nv "l" #'cue-sheet-mode-lookup-dwim)))
#+end_src

** Code contributions

Yes please!