Skip to content

Commit 34a22de

Browse files
Esbonio VSCode Extension Release v0.10.6
1 parent 80ad26b commit 34a22de

File tree

6 files changed

+35
-22
lines changed

6 files changed

+35
-22
lines changed

code/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.10.5
2+
current_version = 0.10.6
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-dev(?P<dev>\d+))?

code/CHANGES.rst

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
v0.10.6 - 2023-02-04
2+
--------------------
3+
4+
Enhancements
5+
^^^^^^^^^^^^
6+
7+
- Add ``esbonio.server.completion.preferredInsertBehavior`` option.
8+
Controls how completions behave when accepted, the following values are supported.
9+
10+
- ``replace`` (default)
11+
12+
Accepted completions will replace existing text, allowing the server to rewrite the current line in place.
13+
This allows the server to return all possible completions within the current context.
14+
In this mode the server will set the ``textEdit`` field of a ``CompletionItem``.
15+
16+
- ``insert``
17+
18+
Accepted completions will append to existing text rather than replacing it.
19+
Since rewriting is not possible, only the completions that are compatible with any existing text will be returned.
20+
In this mode the server will set the ``insertText`` field of a ``CompletionItem`` which should work better with editors that do no support ``textEdits``. (`#471 <https://github.com/swyddfa/esbonio/issues/471>`_)
21+
- Add ``esbonio.server.enableDevTools`` option.
22+
23+
This new flag indended for developers, when enabled, will wrap the language server in the `lsp-devtools <https://github.com/swyddfa/lsp-devtools>`__ agent, enabling the use of some extra tooling.
24+
25+
It is on the developer to ensure the required dependencies are installed. (`#532 <https://github.com/swyddfa/esbonio/issues/532>`_)
26+
27+
28+
Misc
29+
^^^^
30+
31+
- Bump ``vscode-languageclient`` to 8.x (`#485 <https://github.com/swyddfa/esbonio/issues/485>`_)
32+
33+
134
v0.10.5 - 2022-11-05
235
--------------------
336

code/changes/471.enhancement.rst

Lines changed: 0 additions & 14 deletions
This file was deleted.

code/changes/485.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

code/changes/532.enhancement.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author": "Swyddfa Developers",
99
"publisher": "swyddfa",
1010
"license": "MIT",
11-
"version": "0.10.5",
11+
"version": "0.10.6",
1212
"keywords": [
1313
"sphinx",
1414
"documentation"

0 commit comments

Comments
 (0)