Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/forked-from-1kasper/emacs-qsharp-mode
GNU/Emacs Q# mode
https://github.com/forked-from-1kasper/emacs-qsharp-mode
emacs qsharp quantum
Last synced: about 1 month ago
JSON representation
GNU/Emacs Q# mode
- Host: GitHub
- URL: https://github.com/forked-from-1kasper/emacs-qsharp-mode
- Owner: forked-from-1kasper
- Created: 2018-05-14T14:38:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T07:27:33.000Z (over 1 year ago)
- Last Synced: 2024-08-04T01:02:25.186Z (4 months ago)
- Topics: emacs, qsharp, quantum
- Language: Emacs Lisp
- Size: 56.6 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-qsharp - Emacs
README
This is just the syntax highlighting, yes.
# Installation
## ELPA and MELPA
Package management via `package.el` is allowed (thanks to [anuragm](https://github.com/anuragm)):
```lisp
(use-package qsharp-mode
:quelpa
(qsharp-mode :fetcher github :repo "forked-from-1kasper/emacs-qsharp-mode")
:commands qsharp-mode
:mode (("\\.qs$" . qsharp-mode)))
```## Manual installation
1. Clone this repo to `~/.emacs.d/qsharp-mode/`:
```bash
git clone git://github.com/forked-from-1kasper/emacs-qsharp-mode`
```2. Add the following to your `init.el`:
```lisp
(add-to-list 'load-path "~/.emacs.d/qsharp-mode/")
(autoload 'qsharp-mode "qsharp-mode" "Major mode for editing Q# code." t)
(add-to-list 'auto-mode-alist '("\\.qs$" . qsharp-mode))
```3. ???
4. PROFIT!
# Screenshot
![Screenshot](screenshot.png)