增加 clang 配置问价说明。

Signed-off-by: rick.chan <cy@haoan119.com>
This commit is contained in:
rick.chan 2024-06-06 09:51:05 +08:00
parent f93ecfb738
commit 002d2b5282
1 changed files with 6 additions and 2 deletions

View File

@ -9,13 +9,15 @@ Clangd 是一个基于 Clang 的语言服务器,它提供了代码智能感知
需要代码分析和跳转的话要安装 clangd需要代码格式化则需要安装 clang-format并能够在系统 PATH 种找到它们。
在 VSCode 中使用 Clangd 需要先安装 clangd (LLVM) 插件,然后使用 .clangd 或 .vscode/settings.json 进行项目配置。
在 VSCode 中使用 Clangd 需要先安装 clangd (LLVM) 插件,然后使用源码目录下的 .clang-format.clangd 或 .vscode/settings.json 进行项目配置。
## 1. 基本使用配置
### 1.1. 使用 .clangd 文件方式
通过:
clangd 的配置文件为源码路径下的 .clangd 文件。
可通过:
```bash
Ctrl+Shift+P -> clangd: open project configuration file
@ -82,6 +84,8 @@ CompileFlags:
使用代码格式化功能需要在 VSCode User Setting 中使能 Text Editor->Formatting->Formate On Type。
clang-format 的配置文件为源码路径下的 .clang-format 文件,几个配置参考如下:
```clang-format
BasedOnStyle: LLVM
UseTab: Never