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 4f0e52a commit 859132fCopy full SHA for 859132f
lib/vimparser.js
@@ -4079,8 +4079,10 @@ StringReader.prototype.read_white = function() {
4079
4080
StringReader.prototype.read_nonwhite = function() {
4081
var r = "";
4082
- while (!iswhite(this.peekn(1))) {
+ var ch = this.peekn(1)
4083
+ while (!iswhite(ch) && ch !== '') {
4084
r += this.getn(1);
4085
+ ch = this.peekn(1)
4086
}
4087
return r;
4088
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vim-language-server",
3
- "version": "1.2.6",
+ "version": "1.2.7",
4
"description": "vim language server",
5
"keywords": [
6
"viml",
0 commit comments