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 55f6eab commit 89f6211Copy full SHA for 89f6211
pylsp/_utils.py
@@ -14,7 +14,7 @@
14
JEDI_VERSION = jedi.__version__
15
16
# Eol chars accepted by the LSP protocol
17
-EOL_CHARS = ['\r\n', '\r', '\n']
+EOL_CHARS = ['\n', '\r\n', '\r']
18
EOL_REGEX = re.compile(f'({"|".join(EOL_CHARS)})')
19
20
log = logging.getLogger(__name__)
0 commit comments