Skip to content

Commit c3f0ce8

Browse files
committed
general: remove mention of the lsp and vscode
1 parent 9d8c2d3 commit c3f0ce8

6 files changed

Lines changed: 11 additions & 17 deletions

File tree

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ body:
1919
attributes:
2020
label: "Project"
2121
description: "Which subproject or area"
22-
placeholder: "core | compiler | vscode | book | tests | other"
22+
placeholder: "core | compiler | book | tests | other"
2323
validations:
2424
required: true
2525
- type: textarea

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ body:
99
attributes:
1010
label: "Project"
1111
description: "Which subproject or area"
12-
placeholder: "core | compiler | vscode | book | tests | other"
12+
placeholder: "core | compiler | book | tests | other"
1313
validations:
1414
required: true
1515
- type: textarea

.gitignore

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,8 @@ target/
1313
.idea
1414
*.iml
1515

16-
# Vscode project files
17-
.vscode
18-
1916
# mdbook HTML output dir
2017
book/book/
2118

22-
# Node.js modules
23-
node_modules/
24-
25-
# VSCode extension package
26-
*.vsix
27-
2819
# macOS
2920
.DS_Store

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ check out the following resources:
99
* Our in-browser playground: https://ide.simplicity-lang.org/
1010

1111
This project defines and implements the SimplicityHL language, and provides
12-
a compiler binary and language server protocol (LSP) implementation. We
13-
welcome contributions across a wide spectrum of tasks. For example,
12+
a compiler binary. We welcome contributions across a wide spectrum of tasks.
13+
For example,
1414

15-
* Improving tooling: compiler command-line interface or LSP
15+
* Improving tooling: compiler command-line interface
1616
* Documentation: this repository can always use more documentation; for
1717
documentation about Simplicity and SimplicityHL it may make more sense
1818
to contribute to https://github.com/BlockstreamResearch/simplicity-lang-org/

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ getrandom = { version = "0.2", features = ["js"] }
4949

5050
[workspace]
5151
members = ["codegen", "fuzz"]
52-
exclude = ["bitcoind-tests", "lsp"]
52+
exclude = ["bitcoind-tests"]
5353

5454
[workspace.metadata.rbmt.toolchains]
5555
nightly = "nightly-2025-08-23"

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ Produce JSON output with the `--json` flag.
7171
./target/debug/simc examples/p2pkh.simf -w examples/p2pkh.wit --json
7272
```
7373

74-
### VSCode extension
74+
### Editor tooling
7575

76-
See the installation [instructions](./vscode/README.md).
76+
The language server and VS Code extension are maintained in separate repositories:
77+
78+
* [simplicityhl-lsp](https://github.com/BlockstreamResearch/simplicityhl-lsp)
79+
* [simplicityhl-vscode](https://github.com/BlockstreamResearch/simplicityhl-vscode)

0 commit comments

Comments
 (0)