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 10a9ae9 commit cea7eedCopy full SHA for cea7eed
src/server/builtin.ts
@@ -124,7 +124,7 @@ class Builtin {
124
signatures: [{
125
label: `${name}(${params[0]})${params[1] ? `: ${params[1]}` : ""}`,
126
documentation: this.formatVimDocument(this.vimBuiltFunctionDocuments[name]),
127
- parameters: params[0].split("[")[0].split(",").map((param) => {
+ parameters: params[0].replace(/[\[\]]/g, "").split(",").map((param) => {
128
return {
129
label: param.trim(),
130
};
0 commit comments