You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2021/12/10 14:13:46 UTC

[sling-whiteboard] branch master updated (3953050 -> e27d229)

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git.


    from 3953050  jbang/jvmVersion
     add d3c8609  Initial prototype - static autocompletion using the html extension points
     add fc1bd87  Started work on dynamic completions
     add bc58f8b  Dynamic completions for data-sly-repeat
     add 30fb7a4  Remove unused code
     add ea71cc4  Move global completions to a JSON file, add some more of them.
     add 97bda15  Completions: supported nested completions
     add 80cbb13  completions: simplify completion generation
     add c60c28a  completions: remove debug logging
     add 78ecba6  completions: tweak test name
     add dfe8fe5  completions: don't suggest anything for unknown properties
     add e282df8  completions: better descriptions
     add 4580eb1  Remove unused import
     add 44d5b07  Completions: support completion for itemList within data-sly-{list,repeat}
     add 5926737  Completions: support completions based on data-sly-list
     add 79c3311  Cleanups: remove sample actions, rename to vscode-htl
     add e60680c  Packaging: tweaks
     add 52259d1  Add an editor screenshot
     add 3426dcf  Update package-lock.json with license
     add e27d229  Merge pull request #76 from apache/feature/vscode-htl

No new revisions were added by this update.

Summary of changes:
 vscode-htl/.eslintrc.json                          |   24 +
 vscode-htl/.gitignore                              |    5 +
 vscode-htl/.vscode/extensions.json                 |    7 +
 vscode-htl/.vscode/launch.json                     |   34 +
 vscode-htl/.vscode/settings.json                   |   11 +
 vscode-htl/.vscode/tasks.json                      |   20 +
 vscode-htl/.vscodeignore                           |   10 +
 vscode-htl/CHANGELOG.md                            |    5 +
 {upgrade => vscode-htl}/LICENSE                    |    0
 vscode-htl/README.md                               |   13 +
 vscode-htl/data/completions-sling.json             |  254 ++
 vscode-htl/data/htl.json                           |   61 +
 .../images/editor-completion-data-sly-repeat.png   |  Bin 0 -> 72184 bytes
 vscode-htl/images/sightly.png                      |  Bin 0 -> 1972 bytes
 vscode-htl/package-lock.json                       | 4346 ++++++++++++++++++++
 vscode-htl/package.json                            |   50 +
 vscode-htl/src/completionData.ts                   |   55 +
 vscode-htl/src/extension.ts                        |   15 +
 vscode-htl/src/htlCompletionItemProvider.ts        |  103 +
 vscode-htl/src/test/runTest.ts                     |   23 +
 vscode-htl/src/test/suite/extension.test.ts        |  140 +
 vscode-htl/src/test/suite/index.ts                 |   38 +
 vscode-htl/tsconfig.json                           |   21 +
 vscode-htl/vsc-extension-quickstart.md             |   42 +
 24 files changed, 5277 insertions(+)
 create mode 100644 vscode-htl/.eslintrc.json
 create mode 100644 vscode-htl/.gitignore
 create mode 100644 vscode-htl/.vscode/extensions.json
 create mode 100644 vscode-htl/.vscode/launch.json
 create mode 100644 vscode-htl/.vscode/settings.json
 create mode 100644 vscode-htl/.vscode/tasks.json
 create mode 100644 vscode-htl/.vscodeignore
 create mode 100644 vscode-htl/CHANGELOG.md
 copy {upgrade => vscode-htl}/LICENSE (100%)
 create mode 100644 vscode-htl/README.md
 create mode 100644 vscode-htl/data/completions-sling.json
 create mode 100644 vscode-htl/data/htl.json
 create mode 100644 vscode-htl/images/editor-completion-data-sly-repeat.png
 create mode 100644 vscode-htl/images/sightly.png
 create mode 100644 vscode-htl/package-lock.json
 create mode 100644 vscode-htl/package.json
 create mode 100644 vscode-htl/src/completionData.ts
 create mode 100644 vscode-htl/src/extension.ts
 create mode 100644 vscode-htl/src/htlCompletionItemProvider.ts
 create mode 100644 vscode-htl/src/test/runTest.ts
 create mode 100644 vscode-htl/src/test/suite/extension.test.ts
 create mode 100644 vscode-htl/src/test/suite/index.ts
 create mode 100644 vscode-htl/tsconfig.json
 create mode 100644 vscode-htl/vsc-extension-quickstart.md