@bgforge/mls-server 3.0.1 → 3.2.0

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/README.md CHANGED
@@ -6,10 +6,10 @@ Standalone LSP server for WeiDU languages, Fallout 2 SSL, and transpiled TSSL, T
6
6
 
7
7
  | Language | Extensions | Features |
8
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 |
9
+ | Fallout SSL | `.ssl`, `.h` | Completion, hover, signature, go-to-definition, formatting, symbols, workspace symbols, rename, inlay hints |
10
+ | WeiDU TP2 | `.tp2`, `.tpa`, `.tph`, `.tpp` | Completion, hover, go-to-definition, formatting, symbols, workspace symbols, rename, inlay hints |
11
11
  | WeiDU BAF | `.baf` | Completion, hover, formatting, inlay hints |
12
- | WeiDU D | `.d` | Completion, hover, go-to-definition, formatting, symbols, inlay hints |
12
+ | WeiDU D | `.d` | Completion, hover, go-to-definition, formatting, symbols, rename, JSDoc, inlay hints |
13
13
  | Fallout worldmap | `worldmap.txt` | Completion, hover |
14
14
 
15
15
  Aliases: SCS SSL (`.ssl`) and SLB (`.slb`) are treated as WeiDU BAF.
@@ -31,12 +31,13 @@ bgforge-mls-server --stdio
31
31
  ```
32
32
 
33
33
  [Settings Reference](../docs/settings.md) - All server settings with defaults.
34
+ [LSP API](../docs/lsp-api.md) - Public commands, custom requests, and notifications.
34
35
 
35
- See [USAGE.md](USAGE.md) for editor setup guides and settings reference.
36
+ See [Editor Setup](https://github.com/BGforgeNet/VScode-BGforge-MLS/blob/master/docs/editors/README.md) for editor-specific guides.
36
37
 
37
38
  ## Links
38
39
 
39
40
  - [VSCode extension](https://marketplace.visualstudio.com/items?itemName=BGforge.bgforge-mls) (full-featured client)
40
41
  - [Source code](https://github.com/BGforgeNet/VScode-BGforge-MLS)
41
42
  - [Issue tracker](https://github.com/BGforgeNet/VScode-BGforge-MLS/issues)
42
- - [Architecture](ARCHITECTURE.md) (server internals for contributors)
43
+ - [Server Internals](INTERNALS.md) (provider registry, symbol system, data flow)
@@ -740,7 +740,7 @@
740
740
  "category": "base-functions",
741
741
  "documentation": {
742
742
  "kind": "markdown",
743
- "value": "```fallout-ssl-tooltip\nObjectPtr critter_inven_obj(ObjectPtr who, int where)\n```\nDeprecated. Use `critter_inven_obj2` instead.\n\n---\nReturns a pointer to an object that is in a given spot (NULL if none).\nThe appropriate values for where are: `INVEN_TYPE_WORN`, `INVEN_TYPE_RIGHT_HAND`, and `INVEN_TYPE_LEFT_HAND`."
743
+ "value": "```fallout-ssl-tooltip\nObjectPtr critter_inven_obj(ObjectPtr who, int where)\n```\nReturns a pointer to an object that is in a given spot (NULL if none).\nThe appropriate values for where are: `INVEN_TYPE_WORN`, `INVEN_TYPE_RIGHT_HAND`, and `INVEN_TYPE_LEFT_HAND`.\n\n**Deprecated:** Use `critter_inven_obj2` instead"
744
744
  },
745
745
  "tags": [
746
746
  1
@@ -1043,7 +1043,7 @@
1043
1043
  "category": "base-functions",
1044
1044
  "documentation": {
1045
1045
  "kind": "markdown",
1046
- "value": "```fallout-ssl-tooltip\nint floor(int/float value)\n```\nDeprecated. Use `floor2` instead.\n\n---\nWorks properly for positive values, but for negative ones functions like `ceil` (rounds up instead of down)."
1046
+ "value": "```fallout-ssl-tooltip\nint floor(int/float value)\n```\nWorks properly for positive values, but for negative ones functions like `ceil` (rounds up instead of down).\n\n**Deprecated:** Use `floor2` instead"
1047
1047
  },
1048
1048
  "tags": [
1049
1049
  1