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

pull/720/head
Blaž Hrastnik 2021-09-06 15:25:08 +09:00
parent 3cb95be452
commit fe17b99ab3
1 changed files with 1 additions and 1 deletions

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;