Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/casm-lang/casm-lang.plugin.emacs
CASM Plug-in for Syntax Highlighting in Emacs
https://github.com/casm-lang/casm-lang.plugin.emacs
casm emacs plugin syntax-highlighting
Last synced: 5 days ago
JSON representation
CASM Plug-in for Syntax Highlighting in Emacs
- Host: GitHub
- URL: https://github.com/casm-lang/casm-lang.plugin.emacs
- Owner: casm-lang
- License: other
- Created: 2017-02-05T11:49:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-29T20:38:19.000Z (10 months ago)
- Last Synced: 2024-03-15T09:03:28.457Z (8 months ago)
- Topics: casm, emacs, plugin, syntax-highlighting
- Language: Emacs Lisp
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE.txt
Awesome Lists containing this project
README
#
# Copyright (C) 2017-2024 CASM Organization
# All rights reserved.
#
# Developed by: Philipp Paulweber et al.
#
#
# This file is part of casm-lang.plugin.emacs.
#
# casm-lang.plugin.emacs is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# casm-lang.plugin.emacs is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with casm-lang.plugin.emacs. If not, see .
#
[[https://github.com/casm-lang/casm-lang.logo/raw/master/etc/headline.png]]* casm-lang.plugin.emacs
=emacs= syntax highlighting for the CASM language.
** How to use it?Just clone the repository to a local location and copy the following code snippet into your =emacs= initialization file, which is located by default at =~/.emacs= or =~/.emacs.d/init.el=.
This snippet just loads the provided =casm-mode.el= syntax configuration file and sets an automatic load function for the major editing mode for files with a =.casm= file extension.#+begin_src elisp
(load "/casm-mode.el")
(add-to-list 'auto-mode-alist '("\\.casm\\'" . casm-mode))#+end_src
** Copyright and License
The copyright holder of
=casm-lang.plugin.emacs= is the [[https://casm-lang.org][CASM organization]] ([[https://github.com/casm-lang][@casm-lang]])
and the used license of
=casm-lang.plugin.emacs= is the [[https://www.gnu.org/licenses/gpl-3.0.html][GNU GPLv3+]].