qlue-ls 0.12.1 → 0.12.3

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
@@ -14,57 +14,55 @@
14
14
  </a>
15
15
  </div>
16
16
 
17
- ⚡Qlue-ls (pronounced "clueless") is a *blazingly fast* [language server](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification) for [SPARQL](https://de.wikipedia.org/wiki/SPARQL), written in Rust 🦀, build for the web.
17
+ ⚡Qlue-ls (pronounced "clueless") is a *blazingly fast* [language server](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification) for [SPARQL](https://de.wikipedia.org/wiki/SPARQL),
18
+ written in Rust 🦀, build for the web.
18
19
 
19
- If you want to use Qlue-ls, check out the [documentation](https://docs.qlue-ls.com).
20
- To learn more about the origin story of this project, read the [blog post](https://ad-blog.cs.uni-freiburg.de/post/qlue-ls-a-sparql-language-server/).
20
+ 📚 [Documentation](https://docs.qlue-ls.com)
21
+ 📝 [Project Blog Post](https://ad-blog.cs.uni-freiburg.de/post/qlue-ls-a-sparql-language-server/)
21
22
 
22
23
  # 🚀 Capabilities
23
24
 
24
- Here is a quick overview what Qlue-ls can do.
25
- A more detailed list can be found in the [documentation](https://docs.qlue-ls.com/03_capabilities/).
25
+ Qlue-ls offers a wide range of LSP features tailored to SPARQL development. For a complete overview, see the [capabilities section](https://docs.qlue-ls.com/03_capabilities/).
26
26
 
27
27
  ## 📐 Formatting
28
28
 
29
- Formats SPARQL queries to ensure consistent and readable syntax.
30
- Customizable options to align with preferred query styles are also implemented.
29
+ - Auto-formats SPARQL queries for consistency and readability
30
+ - Fully customizable to match your preferred coding style
31
31
 
32
32
  ## 🩺 Diagnostics
33
33
 
34
- Diagnostics provide feedback on the query. Diagnostics come in severity: error, warning and info
34
+ - Real-time feedback with severity levels: error, warning, and info
35
+ - Helps catch syntax issues and common mistakes
35
36
 
36
37
  ## ✨ Completion
37
38
 
38
- Completion provides suggestions how the query could continue.
39
-
40
- For completion of subjects, predicates or objects the language server sends completion-queries to the backend and gets the completions from the knowledge-graph.
41
-
42
- **These completion queries have to be configured for each knowledge-graph.**
39
+ - Suggests valid continuations while typing SPARQL queries
40
+ - Backend-powered suggestions for subjects, predicates, and objects
41
+ - **Note:** Completion queries must be configured for each knowledge graph
43
42
 
44
43
  ## 🛠️ Code Actions
45
44
 
46
- Code action suggest complex changes to your input.
47
- Often in the form of a *quickfix*, to fix a diagnostic.
45
+ - Provides smart quick-fixes for diagnostics
46
+ - Offers suggested improvements and automated edits
48
47
 
49
48
  ## ℹ️ Hover
50
49
 
51
- Get information about a token on hover.
50
+ - View contextual information by hovering over tokens
52
51
 
53
52
  ## 🕳 Jump
54
53
 
55
- Quickly jump to the next or previous important location in the query.
54
+ - Navigate quickly between key locations in a query
56
55
 
57
56
  ## ❓ operation identification
58
57
 
59
- Determine if a operation is a query or update.
58
+ - Detects whether a SPARQL operation is a `query` or an `update`
60
59
 
61
60
  # ⚙️ Configuration
62
61
 
63
- Qlue-ls can be configured through a `qlue-ls.toml` or `qlue-ls.yml` file.
64
-
65
- Detailed exmplanations can be found in the [documentation](https://docs.qlue-ls.com/04_configuration/).
62
+ Qlue-ls is configured via a qlue-ls.toml or qlue-ls.yml file.
63
+ Full configuration options are explained in the [documentation](https://docs.qlue-ls.com/04_configuration/).
66
64
 
67
- Here is the full default configuration
65
+ ## Default Configuration
68
66
 
69
67
  ```toml
70
68
  [format]
@@ -86,8 +84,7 @@ add_missing = true
86
84
  remove_unused = false
87
85
  ```
88
86
 
89
- # 🙏 Special Thanks
87
+ # 🙏 Acknowledgements
90
88
 
91
- * [TJ DeVries](https://github.com/tjdevries) for the inspiration and great tutorials
92
- * [Chris Biscardi](https://github.com/christopherbiscardi) for teaching me Rust
93
- * [Hannah Bast](https://ad.informatik.uni-freiburg.de/staff/bast) for the guidance.
89
+ * [TJ DeVries](https://github.com/tjdevries) - for the inspiration and fantastic tutorials
90
+ * [Hannah Bast](https://ad.informatik.uni-freiburg.de/staff/bast) - for mentorship and guidance.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Ioannis Nezis <ioannis@nezis.de>"
6
6
  ],
7
7
  "description": "A language server for SPARQL",
8
- "version": "0.12.1",
8
+ "version": "0.12.3",
9
9
  "license": "SEE LICENSE IN LICENSE",
10
10
  "repository": {
11
11
  "type": "git",
package/qlue_ls.d.ts CHANGED
@@ -12,9 +12,9 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
12
12
 
13
13
  export interface InitOutput {
14
14
  readonly memory: WebAssembly.Memory;
15
- readonly __wbg_server_free: (a: number, b: number) => void;
16
15
  readonly init_language_server: (a: any) => number;
17
16
  readonly listen: (a: number, b: any) => any;
17
+ readonly __wbg_server_free: (a: number, b: number) => void;
18
18
  readonly get_parse_tree: (a: number, b: number, c: number) => any;
19
19
  readonly __wbindgen_exn_store: (a: number) => void;
20
20
  readonly __externref_table_alloc: () => number;
@@ -23,8 +23,8 @@ export interface InitOutput {
23
23
  readonly __wbindgen_malloc: (a: number, b: number) => number;
24
24
  readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
25
25
  readonly __wbindgen_export_6: WebAssembly.Table;
26
- readonly closure1222_externref_shim: (a: number, b: number, c: any) => void;
27
- readonly closure1592_externref_shim: (a: number, b: number, c: any, d: any) => void;
26
+ readonly closure1221_externref_shim: (a: number, b: number, c: any) => void;
27
+ readonly closure1591_externref_shim: (a: number, b: number, c: any, d: any) => void;
28
28
  readonly __wbindgen_start: () => void;
29
29
  }
30
30
 
package/qlue_ls.js CHANGED
@@ -236,11 +236,11 @@ export function get_parse_tree(input, offset) {
236
236
  }
237
237
 
238
238
  function __wbg_adapter_24(arg0, arg1, arg2) {
239
- wasm.closure1222_externref_shim(arg0, arg1, arg2);
239
+ wasm.closure1221_externref_shim(arg0, arg1, arg2);
240
240
  }
241
241
 
242
242
  function __wbg_adapter_98(arg0, arg1, arg2, arg3) {
243
- wasm.closure1592_externref_shim(arg0, arg1, arg2, arg3);
243
+ wasm.closure1591_externref_shim(arg0, arg1, arg2, arg3);
244
244
  }
245
245
 
246
246
  const __wbindgen_enum_RequestMode = ["same-origin", "no-cors", "cors", "navigate"];
@@ -521,8 +521,8 @@ function __wbg_get_imports() {
521
521
  const ret = false;
522
522
  return ret;
523
523
  };
524
- imports.wbg.__wbindgen_closure_wrapper5519 = function(arg0, arg1, arg2) {
525
- const ret = makeMutClosure(arg0, arg1, 1223, __wbg_adapter_24);
524
+ imports.wbg.__wbindgen_closure_wrapper5536 = function(arg0, arg1, arg2) {
525
+ const ret = makeMutClosure(arg0, arg1, 1222, __wbg_adapter_24);
526
526
  return ret;
527
527
  };
528
528
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
package/qlue_ls_bg.wasm CHANGED
Binary file