-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from Quodatum/dev
0.2.7
- Loading branch information
Showing
64 changed files
with
29,833 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
{ | ||
"version": "0.1.0", | ||
"configurations": [ | ||
|
||
|
||
{ | ||
"name": "Extension", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: History | ||
summary: The release history of the vscode-basex extension | ||
authors: | ||
- Andy Bunce | ||
date: 2023-07-23 | ||
--- | ||
|
||
Versions... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: XQuery errors | ||
summary: Error markers generated by XQlint. | ||
authors: | ||
- Andy Bunce | ||
date: 2023-09-11 | ||
--- | ||
TODO A LIST |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"new basex script": { | ||
"isFileTemplate": true, | ||
"prefix": "BXS (cmd) Script", | ||
"body": [ | ||
"# A BaseX script https://docs.basex.org/wiki/Commands#Command_Scripts", | ||
"" | ||
], | ||
"description": "New BXS (cmd)" | ||
}, | ||
"create db":{ | ||
"prefix":"create", | ||
"body": "CREATE DB ${1:name} ([input])", | ||
"description": "create a database" | ||
}, | ||
"open db":{ | ||
"prefix":"open", | ||
"body": "OPEN ${1:name}", | ||
"description": "open a database" | ||
}, | ||
"check db":{ | ||
"prefix":"check", | ||
"body": "CHECK ${1:name}", | ||
"description": "open or create a database" | ||
}, | ||
"close db":{ | ||
"prefix":"close", | ||
"body": "CLOSE", | ||
"description": "close database" | ||
}, | ||
"list":{ | ||
"prefix":"list", | ||
"body": "LIST ${1:name}", | ||
"description": "Lists all available databases. If name is specified, the resources of a database are listed. The output can be further restricted to the resources matching the specified path. If database resources are listed, the size is either the number of nodes (for XML resources) or the number of bytes (for binary resources)." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"new basex script": { | ||
"isFileTemplate": true, | ||
"prefix": "BXS (XML) Script commands", | ||
"body": [ | ||
"<!-- A BaseX script https://docs.basex.org/wiki/Commands#Command_Scripts -->", | ||
"<commands>", | ||
"${1}", | ||
"</commands>" | ||
], | ||
"description": "New BXS (xml)" | ||
}, | ||
"create db":{ | ||
"prefix":"<create", | ||
"body": "<create-db name='${1:name}'/>", | ||
"description": "create a database" | ||
}, | ||
"open db":{ | ||
"prefix":"<open", | ||
"body": "<open name='${1:name}'/>", | ||
"description": "open a database" | ||
}, | ||
"list":{ | ||
"prefix":"<list", | ||
"body": "<list name='${1:name}' path='${2:path}' />", | ||
"description": "list database content" | ||
} | ||
|
||
} |
Oops, something went wrong.