[fix] symbols
This commit is contained in:
parent
80d5ceea19
commit
d7238f5d69
3 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
# BaseX Tools for Visual Studio Code
|
||||
This project provides tools to support use of XQuery in BaseX
|
||||
This project was originally a fork of https://github.com/DotJoshJohnson/vscode-xml
|
||||
|
||||
This extension adds features to support BaseX development on VSCode.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-basex",
|
||||
"displayName": "BaseX tools",
|
||||
"description": "BaseX tools: XQuery, XML, XPath Tools for Visual Studio Code",
|
||||
"version": "0.0.52",
|
||||
"version": "0.0.53",
|
||||
"preview": true,
|
||||
"publisher": "quodatum",
|
||||
"author": "Andy Bunce (https://github.com/Quodatum)",
|
||||
|
@ -15,7 +15,7 @@
|
|||
"homepage": "https://github.com/Quodatum/vscode-basex",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Quodatum/vscode-basex.git"
|
||||
"url": "https://github.com/Quodatum/vscode-basex.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/Quodatum/vscode-basex/issues"
|
||||
|
|
|
@ -42,7 +42,7 @@ export class Symbols implements DocumentSymbolProvider {
|
|||
vars.children.push(info);
|
||||
});
|
||||
|
||||
const funs=makeSymbol("Variables", "", SymbolKind.Function, prolog)
|
||||
const funs=makeSymbol("Functions", "", SymbolKind.Function, prolog)
|
||||
funs.children=[]
|
||||
xqdoc.functions.forEach(v => {
|
||||
const name = v.name +"#" + v.params.length;
|
||||
|
|
Loading…
Add table
Reference in a new issue