damon-kwok / verona-mode

:bouquet: An Emacs major mode for the Verona programming language.

Home Page:https://github.com/microsoft/verona

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Emacs Logo GitHub license Sponsor MELPA

Verona Mode

An Emacs major mode for the Verona programming language.

  • Screenshot

screenshot

Features

  • Syntax highlighting (font-lock)
  • Indentation
  • Workspace support
  • Auto format on save
  • Compilation integration
  • Code navigation (using imenu)
  • Go to definition (using ctags)
  • Code completion (using company-mode)

Installation

Using MELPA

This package can be obtain from MELPA or MELPA Stable. The master branch is continuously deployed to MELPA, and released versions are deployed to MELPA Stable.

M-x package-install [RET] verona-mode [RET]

Right now verona-mode doesn't take a lot of configuration (i.e. it's too simple to need any).

(require 'verona-mode)
(define-key verona-mode-map (kbd "<f6>")  verona-menu)
(use-package verona-mode
  :straight (verona-mode
             :type git
             :host github
             :repo "damon-kwok/verona-mode"
             :files ("tokens" "verona-mode.el"))
  :config
  :bind-keymap
  ("<f6>" . verona-menu)
  :mode ("\\.verona\\'" . verona-mode))

About

:bouquet: An Emacs major mode for the Verona programming language.

https://github.com/microsoft/verona

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%