This is an archive of the discontinued LLVM Phabricator instance.

[clangd-vscode] NFC; Improve wording in documentation and update VSCode tasks
ClosedPublic

Authored by kbobyrev on Mar 23 2020, 2:03 AM.

Details

Summary

VSCode tasks are updated to the latest supported versions: deprecated
values are removed and replaced by their new counterparts.

Diff Detail

Event Timeline

kbobyrev created this revision.Mar 23 2020, 2:03 AM
Herald added a project: Restricted Project. · View Herald TranscriptMar 23 2020, 2:03 AM

thanks. regarding files in .vscode, I think they are just local configs in VSCode, we can probably remove the whole directory from git since we already ignore them in the llvm/.gitignore.

thanks. regarding files in .vscode, I think they are just local configs in VSCode, we can probably remove the whole directory from git since we already ignore them in the llvm/.gitignore.

I think those are hand-written VSCode tasks and removing those would result in the absence of compiling and debugging actions in VSCode. llvm/.gitignore is intended to ignore the configs, but I'm not sure it is a "config file" in traditional sensee. Am I missing something?

hokein accepted this revision.Mar 25 2020, 1:12 AM

thanks. regarding files in .vscode, I think they are just local configs in VSCode, we can probably remove the whole directory from git since we already ignore them in the llvm/.gitignore.

I think those are hand-written VSCode tasks and removing those would result in the absence of compiling and debugging actions in VSCode. llvm/.gitignore is intended to ignore the configs, but I'm not sure it is a "config file" in traditional sensee. Am I missing something?

ah, I see. If removing these would cause troubles, then let's keep it (I thought these files are generated by VSCode as well).

This revision is now accepted and ready to land.Mar 25 2020, 1:12 AM
This revision was automatically updated to reflect the committed changes.