-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete migration from betawaffle to cue-sh (#8)
* Simplify installation instructions * Change module path (will make gen-syntax command internal in a later PR) * Add credits to betawaffle
- Loading branch information
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
## What it's for | ||
|
||
CUE - Configure, Unify, Execute - is a language designed for designing, | ||
CUE - Configure, Unify, Execute - is a language designed for designing, | ||
generating, and validating data. Read more about it on [the official site, cuelang.org](https://cuelang.org). | ||
|
||
## Why this extension is useful | ||
|
@@ -17,8 +17,12 @@ Unfortunately, the `.cue` extension which CUE uses is squatted on in the "offici | |
So for the moment, manual installation is required. This is quite simple though. Once you have VSCode installed, simply clone this repo into its extension location: | ||
|
||
```shell | ||
cd ~/.vscode/extensions | ||
git clone [email protected]:betawaffle/vscode-cue.git | ||
git clone https://github.com/cue-sh/vscode-cue ~/.vscode/extensions/vscode-cue | ||
``` | ||
|
||
Restart VSCode and you should have syntax highlighting for any `.cue` files you load. | ||
|
||
## Credits | ||
|
||
This project was started by [betawaffle](https://github.com/betawaffle) who graciously permitted that it be moved | ||
to a more general home in the [cue-sh](https://github.com/cue-sh) organisation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module github.com/betawaffle/vscode-cue | ||
module github.com/cue-sh/vscode-cue | ||
|
||
go 1.12 |