From 3b3f4d61b03a302589ad37412f92c5ca4b91b607 Mon Sep 17 00:00:00 2001 From: PMKuipers Date: Sat, 25 May 2024 22:16:31 +0200 Subject: [PATCH] Rename to vue2-grammar --- INSTALL.md | 10 +++++----- README.md | 8 ++++---- package-lock.json | 4 ++-- package.json | 8 ++++---- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 9f51c79..7655ad7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,6 +1,6 @@ # Manual installation ->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.swmf-grammar), or from inside VS Code `Preferences/Extensions` and search for `swmf-grammar`. +>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 `Preferences/Extensions` and search for `vue2-grammar`. _Alternatively_, the extension can be built and installed manually as in the next section. This should only be required for developers. @@ -9,8 +9,8 @@ _Alternatively_, the extension can be built and installed manually as in the nex 1. Clone the repository and enter into the folder ```bash - git clone git@github.com:svaberg/SWMF-grammar.git - cd SWMF-grammar + git clone git@git.miqra.nl:pmkuipers/vue2-grammar.git + cd vue2-grammar ``` 2. Install the required packages with `npm` @@ -43,11 +43,11 @@ To complete the manual installation, follow the remaining steps to manually crea vsce package ``` - This should generate a `swmf-grammar-?.?.?.vsix` file in the current directory. + This should generate a `vue2-grammar-?.?.?.vsix` file in the current directory. 5. Manually install the extension in VS Code (you may want to replace the wildcards in the version number) ```bash - code --install-extension swmf-grammar-?.?.?.vsix + code --install-extension vue2-grammar-?.?.?.vsix ``` To test the installation, open the current folder in VS Code diff --git a/README.md b/README.md index ada68f8..96f8a5d 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # SWMF Configuration -[![Build Status](https://travis-ci.com/svaberg/SWMF-grammar.svg?branch=master)](https://travis-ci.com/svaberg/SWMF-grammar) -![GitHub package.json version](https://img.shields.io/github/package-json/v/svaberg/SWMF-grammar) +[![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) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -> This is a Visual Studio Code extension and should be installed from the [VS Code extensions marketplace](https://marketplace.visualstudio.com/items?itemName=svaberg.swmf-grammar) +> 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) 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. @@ -23,7 +23,7 @@ Automatically highlights files ending in `.in` and `.IN`. For files lacking thes ## Installation -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.swmf-grammar), or from inside VS Code: Click on `Preferences/Extensions` and type `swmf-grammar` into the search box. +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. To test the installation, just open a handy SWMF `PARAM.in` file. diff --git a/package-lock.json b/package-lock.json index a3e1629..4a56fdc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "swmf-grammar", + "name": "vue2-grammar", "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "swmf-grammar", + "name": "vue2-grammar", "version": "1.0.1", "license": "MIT", "devDependencies": { diff --git a/package.json b/package.json index b970fd5..c785b40 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { - "name": "swmf-grammar", + "name": "vue2-grammar", "displayName": "SWMF Configuration", "description": "Syntax highlights and outline view for SWMF configuration files", "version": "1.0.1", "publisher": "svaberg", "repository": { "type": "git", - "url": "https://github.com/svaberg/SWMF-grammar.git" + "url": "https://git.miqra.nl/pmkuipers/vue2-grammar.git" }, "license": "MIT", "engines": { @@ -66,8 +66,8 @@ "typescript": "^4.9.3" }, "bugs": { - "url": "https://github.com/svaberg/SWMF-grammar/issues" + "url": "https://git.miqra.nl/pmkuipers/vue2-grammar/issues" }, - "homepage": "https://github.com/svaberg/SWMF-grammar#readme", + "homepage": "https://git.miqra.nl/pmkuipers/vue2-grammar#readme", "author": "Dag Evensberget" }