Moving this out of the monorepo for consistency with other editor plugins.
There's no version lock with clangd itself, and we never ran tests with lit.
The first version from the new repo has been published.
Paths
| Differential D78598
[clangd] Remove vscode plugin: now https://github.com/clangd/vscode-clangd ClosedPublic Authored by sammccall on Apr 21 2020, 4:29 PM.
Details Summary Moving this out of the monorepo for consistency with other editor plugins. The first version from the new repo has been published.
Diff Detail
Event TimelineComment Actions Is there an easy way to transplant patches written against the old repo, into the new one? This revision is now accepted and ready to land.Apr 22 2020, 12:05 AM Comment Actions
I don't know whether there is an easy way, I'd just copy the changed file from the old repo to new repo, and regenerate a diff, I think this is not too terrible given that we don't have too much source files in our extension. Comment Actions
If you have a patch file (from git format-patch or downloaded from phab), you should be able to use patch -p cd vscode-clangd # new repo patch -p5 < old.patch Where -p1 strips off the conventional a/ vs b/ diff prefix, and the other 4 is for clang-tools-extra/clangd/clients/clangd-vscode. Closed by commit rG161afc01064b: [clangd] Remove vscode plugin: now https://github.com/clangd/vscode-clangd (authored by sammccall). · Explain WhyApr 22 2020, 2:40 AM This revision was automatically updated to reflect the committed changes. Comment Actions Also, does this mean that patches to vscode-clangd should now be submitted as a Github PR rather than via Phabricator?
Revision Contents
Diff 259214 clang-tools-extra/clangd/clients/clangd-vscode/.gitignore
clang-tools-extra/clangd/clients/clangd-vscode/.vscode/launch.json
clang-tools-extra/clangd/clients/clangd-vscode/.vscode/settings.json
clang-tools-extra/clangd/clients/clangd-vscode/.vscode/tasks.json
clang-tools-extra/clangd/clients/clangd-vscode/.vscodeignore
clang-tools-extra/clangd/clients/clangd-vscode/DEVELOPING.md
clang-tools-extra/clangd/clients/clangd-vscode/LICENSE
clang-tools-extra/clangd/clients/clangd-vscode/README.md
clang-tools-extra/clangd/clients/clangd-vscode/doc-assets/diagnostics.png
clang-tools-extra/clangd/clients/clangd-vscode/doc-assets/symbolsearch.png
clang-tools-extra/clangd/clients/clangd-vscode/package-lock.json
clang-tools-extra/clangd/clients/clangd-vscode/package.json
clang-tools-extra/clangd/clients/clangd-vscode/src/extension.ts
clang-tools-extra/clangd/clients/clangd-vscode/src/semantic-highlighting.ts
clang-tools-extra/clangd/clients/clangd-vscode/test/assets/includeTheme.jsonc
clang-tools-extra/clangd/clients/clangd-vscode/test/assets/simpleTheme.jsonc
clang-tools-extra/clangd/clients/clangd-vscode/test/extension.test.ts
clang-tools-extra/clangd/clients/clangd-vscode/test/index.ts
clang-tools-extra/clangd/clients/clangd-vscode/test/runTest.ts
clang-tools-extra/clangd/clients/clangd-vscode/test/semantic-highlighting.test.ts
clang-tools-extra/clangd/clients/clangd-vscode/tsconfig.json
|