We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d0350 commit 3ca4f9cCopy full SHA for 3ca4f9c
src/lsap_schema/draft/completion.py
@@ -46,10 +46,17 @@ class CompletionRequest(LocateRequest, PaginatedRequest):
46
{{ items[0].documentation }}
47
{% endif %}
48
49
-| Symbol | Kind | Detail |
50
-| :--- | :--- | :--- |
51
{%- for item in items %}
52
-| `{{ item.label }}` | {{ item.kind }} | {{ item.detail | default: "" }} |
+### {{ forloop.index }}. `{{ item.label }}` ({{ item.kind }})
+{%- if item.detail %}
+- Detail: {{ item.detail }}
53
+{%- endif %}
54
+{%- if item.insert_text and item.insert_text != item.label %}
55
+- Insert: `{{ item.insert_text }}`
56
57
+{%- if item.documentation %}
58
+- Doc: {{ item.documentation | truncate: 300 }}
59
60
{%- endfor %}
61
62
{% if has_more -%}
0 commit comments