Skip to content

Commit

Permalink
Better VSCode publisher and extension names.
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Alexander Kuppe <github.com@lemmster.de>
  • Loading branch information
lemmy committed Aug 17, 2024
1 parent 069d5c4 commit 7033b8f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TLA<sup>+</sup> for Visual Studio Code

[![Build Status](https://img.shields.io/github/actions/workflow/status/tlaplus/vscode-tlaplus/ci.yml?branch=master)](https://github.com/tlaplus/vscode-tlaplus/actions?query=workflow%3ACI) [![VS Code extension version](https://img.shields.io/visual-studio-marketplace/i/tlaplus-lang?color=blue&label=Stable%20Release&style=flat-square)](https://marketplace.visualstudio.com/items?itemName=tlaplus-lang.tlaplus-lang)
[![Build Status](https://img.shields.io/github/actions/workflow/status/tlaplus/vscode-tlaplus/ci.yml?branch=master)](https://github.com/tlaplus/vscode-tlaplus/actions?query=workflow%3ACI) [![VS Code extension version](https://img.shields.io/visual-studio-marketplace/i/tlaplus?color=blue&label=Stable%20Release&style=flat-square)](https://marketplace.visualstudio.com/items?itemName=tlaplus.vscode-ide)

This extension adds support for the [TLA<sup>+</sup> formal specification language](http://research.microsoft.com/en-us/um/people/lamport/tla/tla.html) to VS Code. It also supports running the TLC model checker on TLA<sup>+</sup> specifications.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "tlaplus-lang",
"name": "vscode-ide",
"displayName": "TLA+ (Temporal Logic of Actions)",
"version": "1.7.0",
"description": "TLA+ language support",
"publisher": "tlaplus-lang",
"publisher": "tlaplus",
"license": "MIT",
"author": {
"name": "TLA+ Community"
Expand Down
2 changes: 1 addition & 1 deletion src/tla2tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ToolOutputChannel } from './outputChannels';
import { JavaVersionParser } from './parsers/javaVersion';

// CFG_EXTENSION can be used to fetch all the settings for this extension
const CFG_EXTENSION = '@ext:tlaplus-lang.tlaplus-lang';
const CFG_EXTENSION = '@ext:tlaplus.vscode-ide';

const CFG_JAVA_HOME = 'tlaplus.java.home';
const CFG_JAVA_OPTIONS = 'tlaplus.java.options';
Expand Down

0 comments on commit 7033b8f

Please sign in to comment.