neovim:.ts: typo in log (#2451)

This commit is contained in:
Danish Prakash 2018-03-23 11:47:31 +05:30 committed by Jason Poon
parent 4bb8f06219
commit 20be4bc7c7

View File

@ -109,7 +109,7 @@ export class Neovim implements vscode.Disposable {
fixedLines.join('\n')
);
console.log(`${lines.length} lines in nvime but ${TextEditor.getLineCount()} in editor.`);
console.log(`${lines.length} lines in nvim but ${TextEditor.getLineCount()} in editor.`);
let [row, character] = ((await this.nvim.callFunction('getpos', ['.'])) as Array<number>).slice(
1,