vue2-grammar/README.md

31 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2019-12-02 05:05:47 +01:00
# SWMF Configuration
2019-12-02 07:24:52 +01:00
2024-05-25 22:16:31 +02:00
[![Build Status](https://travis-ci.com/svaberg/vue2-grammar.svg?branch=master)](https://travis-ci.com/svaberg/vue2-grammar)
![GitHub package.json version](https://img.shields.io/github/package-json/v/svaberg/vue2-grammar)
2019-12-02 07:27:24 +01:00
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2019-11-26 14:02:14 +01:00
2024-05-25 22:16:31 +02:00
> This is a Visual Studio Code extension and should be installed from the [VS Code extensions marketplace](https://marketplace.visualstudio.com/items?itemName=svaberg.vue2-grammar)
2019-11-26 14:02:14 +01:00
2019-12-02 05:05:47 +01:00
This extension provides syntax highlighting, outline view, breadcrumbs, and some code completion for [Space Weather Modelling Framework (SWMF)](http://csem.engin.umich.edu/tools/swmf/) configuration files, such as the BATSRUS `PARAM.in` file. The rules are based on the [SWMF manual](http://csem.engin.umich.edu/tools/swmf/documentation/SWMF.pdf) section 3.2.2.
2019-11-26 14:02:14 +01:00
Automatically highlights files ending in `.in` and `.IN`. For files lacking these extensions, the language can be set manually via normal VS Code mechanisms.
2019-12-01 10:36:36 +01:00
2019-12-02 03:24:52 +01:00
![Features demo](images/demo.png)
2019-11-26 14:02:14 +01:00
2019-11-28 07:47:06 +01:00
## Features
2019-11-26 14:02:14 +01:00
2019-12-02 05:05:47 +01:00
* Syntax highlighting;
* Hierarchical document tree in the [outline view](https://code.visualstudio.com/docs/getstarted/userinterface#_outline-view);
* [Breadcrumbs](https://code.visualstudio.com/updates/v1_26#_breadcrumbs) support;
* Toggle comment using `!` as comment character;
* Code folding between `#BEGIN_COMP` and `#END_COMP` markers;
* Autoclosing of `#BEGIN_COMP`.
2019-12-02 03:24:52 +01:00
## Installation
2024-05-25 22:16:31 +02:00
This is a [Visual Studio Code](https://code.visualstudio.com/download) extension. It is best installed from the [on-line extensions marketplace](https://marketplace.visualstudio.com/items?itemName=svaberg.vue2-grammar), or from inside VS Code: Click on `Preferences/Extensions` and type `vue2-grammar` into the search box.
2019-12-02 03:24:52 +01:00
To test the installation, just open a handy SWMF `PARAM.in` file.
2019-12-02 03:24:52 +01:00
Alternatively, the extension can be [built, installed and tested manually](INSTALL.md).