@bgforge/mls-server 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +0 -0
- package/README.md +42 -0
- package/out/completion.fallout-ssl.json +7972 -0
- package/out/completion.fallout-worldmap-txt.json +308 -0
- package/out/completion.weidu-baf.json +7630 -0
- package/out/completion.weidu-d.json +534 -0
- package/out/completion.weidu-tp2.json +6448 -0
- package/out/engine-proc-docs.json +29 -0
- package/out/engine-procedures.json +29 -0
- package/out/hover.fallout-ssl.json +4730 -0
- package/out/hover.fallout-worldmap-txt.json +146 -0
- package/out/hover.weidu-baf.json +4550 -0
- package/out/hover.weidu-d.json +272 -0
- package/out/hover.weidu-tp2.json +3818 -0
- package/out/server.js +30865 -0
- package/out/signature.fallout-ssl.json +32 -0
- package/out/td-plugin.js +1 -0
- package/out/td-runtime.d.ts +314 -0
- package/out/tree-sitter-baf.wasm +0 -0
- package/out/tree-sitter-ssl.wasm +0 -0
- package/out/tree-sitter-weidu_d.wasm +0 -0
- package/out/tree-sitter-weidu_tp2.wasm +0 -0
- package/out/tssl-plugin.js +11 -0
- package/out/web-tree-sitter.wasm +0 -0
- package/package.json +59 -0
package/LICENSE.txt
ADDED
|
File without changes
|
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# @bgforge/mls-server
|
|
2
|
+
|
|
3
|
+
Standalone LSP server for WeiDU languages, Fallout 2 SSL, and transpiled TSSL, TBAF, TD.
|
|
4
|
+
|
|
5
|
+
## Supported Languages
|
|
6
|
+
|
|
7
|
+
| Language | Extensions | Features |
|
|
8
|
+
| ---------------- | ------------------------------ | ---------------------------------------------------------------------------------------- |
|
|
9
|
+
| Fallout SSL | `.ssl`, `.h` | Completion, hover, signature, go-to-definition, formatting, symbols, rename, inlay hints |
|
|
10
|
+
| WeiDU TP2 | `.tp2`, `.tpa`, `.tph`, `.tpp` | Completion, hover, go-to-definition, formatting, symbols, rename, inlay hints |
|
|
11
|
+
| WeiDU BAF | `.baf` | Completion, hover, formatting, inlay hints |
|
|
12
|
+
| WeiDU D | `.d` | Completion, hover, go-to-definition, formatting, symbols, inlay hints |
|
|
13
|
+
| Fallout worldmap | `worldmap.txt` | Completion, hover |
|
|
14
|
+
|
|
15
|
+
Aliases: SCS SSL (`.ssl`) and SLB (`.slb`) are treated as WeiDU BAF.
|
|
16
|
+
|
|
17
|
+
Transpiler support (TypeScript to target language): TSSL, TBAF, TD.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g @bgforge/mls-server
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
The server communicates over stdio:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
bgforge-mls-server --stdio
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
[Settings Reference](../docs/settings.md) - All server settings with defaults.
|
|
34
|
+
|
|
35
|
+
See [USAGE.md](USAGE.md) for editor setup guides and settings reference.
|
|
36
|
+
|
|
37
|
+
## Links
|
|
38
|
+
|
|
39
|
+
- [VSCode extension](https://marketplace.visualstudio.com/items?itemName=BGforge.bgforge-mls) (full-featured client)
|
|
40
|
+
- [Source code](https://github.com/BGforgeNet/VScode-BGforge-MLS)
|
|
41
|
+
- [Issue tracker](https://github.com/BGforgeNet/VScode-BGforge-MLS/issues)
|
|
42
|
+
- [Architecture](ARCHITECTURE.md) (server internals for contributors)
|