fix: lsp: Don't consume \n\n as a single newline

This commit is contained in:
Blaž Hrastnik 2021-09-06 15:25:08 +09:00
parent 3cb95be452
commit fe17b99ab3

View file

@ -368,7 +368,7 @@ impl Client {
// LSP only considers \n, \r or \r\n as line endings
if ch == '\n' || ch == '\r' {
// consume a \r\n
if chars.peek() == Some(&'\n') {
if ch == '\r' && chars.peek() == Some(&'\n') {
chars.next();
}
line += 1;