Do not follow this link

~jgart/emacs-mint-mode

Emacs major mode for mint lang
Update README
Update README
Changes naked domain to use www as it has a bad cert

refs

master
browse  log 

clone

read-only
https://git.sr.ht/~jgart/emacs-mint-mode
read/write
git@git.sr.ht:~jgart/emacs-mint-mode

You can also use your local clone with git send-email.

#emacs mint mode

Major mode for mint lang.

#Installing

#Using use-package and straight.el

Add the following to your ~/.emacs config and restart your editor:

(use-package mint-mode
  :straight (mint-mode
             :type git
             :host github
             :repo "creatorrr/emacs-mint-mode"
             :files ("tokens" "mint-mode.el"))
  :mode ("\\.mint\\'" . mint-mode))

#Using leaf

Add the following to your ~/.emacs or ~/.emacs.d/init.el:

(leaf mint-mode
  :mode ("\\.mint\\'" . mint-mode))

#Features

  • Syntax highlighting
  • Basic keyword autocomplete (using company-mode)
  • Auto format on save using mint format

#Planned roadmap

Help wanted with these!

  • [x] Show formatting errors in buffer
  • [x] Highlight HTML tags and attributes
  • [x] Add to MELPA (Pending review)
  • [x] Autocomplete support
  • [ ] Tag a release
  • [ ] Add to Guix
  • [ ] Lint css values
  • [ ] Link identifiers to their location
  • [ ] Documentation search
  • [ ] Emacs shell commands for using the mint CLI

#Screenshots

Mint syntax highlight example Mint syntax highlight example Mint auto formatting example

Do not follow this link