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 8f64bed commit 0ef7a71Copy full SHA for 0ef7a71
src/lib/vimparser.js
@@ -1796,7 +1796,7 @@ VimLParser.prototype.parse_cmd_call = function() {
1796
}
1797
node.left = this.parse_expr();
1798
if (node.left.type != NODE_CALL) {
1799
- throw Err("Not an function call", node.left.pos);
+ throw Err("Not a function call", node.left.pos);
1800
1801
this.add_node(node);
1802
@@ -5504,7 +5504,7 @@ RegexpParser.prototype.get_token_backslash_common = function() {
5504
else if (c == "[") {
5505
return this.get_token_sq("\\_[");
5506
5507
- throw Err("E63: invalid use of \\_", epos);
+ throw Err("E63: Invalid use of \\_", epos);
5508
5509
else if (viml_stridx("etrb", c) != -1) {
5510
return ["\\" + c, "\\" + c];
0 commit comments