Skip to content

Commit

Permalink
Typo causing Jedi errors not appear in diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
muffinmad committed Apr 2, 2021
1 parent db3dd2c commit 2e01697
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# NEWS

## 1.14

- Fix typo causing Jedi errors not appear in diagnostics

## 1.13

- Use pygls 0.10.2
Expand Down
2 changes: 1 addition & 1 deletion anakinls/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def _validate(ls: LanguageServer, uri: str, script: Script = None):
starts=types.Position(line=x.line - 1,
character=x.column),
end=types.Position(line=x.until_line - 1,
charecter=x.until_column)
character=x.until_column)
),
message=x.get_message(),
severity=types.DiagnosticSeverity.Error,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='anakin-language-server',
version='1.13',
version='1.14',
author='Andrii Kolomoiets',
author_email='andreyk.mad@gmail.com',
description='Yet another Jedi Python language server',
Expand Down

0 comments on commit 2e01697

Please sign in to comment.