Skip to content

Commit

Permalink
don't add an extra \n when completing buildout:parts
Browse files Browse the repository at this point in the history
  • Loading branch information
perrinjerome committed Jul 4, 2024
1 parent 707f3b2 commit 3fde401
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning][semver].
- hover: improve hover of known recipes
- Add support for plone.recipe.zope2instance

### Fixed

- completions: don't add an extra newline when completing `${buildout:parts}`


## [0.12.0] - 2023-10-08

- support python 3.12
Expand Down
2 changes: 1 addition & 1 deletion server/buildoutls/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def getDefaultTextEdit(
text_edit=getDefaultTextEdit(
doc,
params.position,
section + "\n",
section,
),
kind=CompletionItemKind.Function,
)
Expand Down

0 comments on commit 3fde401

Please sign in to comment.