2020-11-30 VS Code 設定Linux風格
快捷鍵Shift + Alt + F
開啟檔案->首選項->設定
或者快捷鍵Ctrl + ,
搜尋設定clang
如下圖
在上圖中 C_Cpp:Clang_format_style
下面的輸入框中輸入:
{
BasedOnStyle: Google,
UseTab: Never,
IndentWidth: 4,
TabWidth: 4,
AllowShortIfStatementsOnASingleLine: false,
ColumnLimit: 0
}
設定為Google排版方式
//Linux kernel style,Linux 核心排版樣式
{
BasedOnStyle: LLVM,
IndentWidth: 4,
ColumnLimit: 0,
UseTab: Never,
BreakBeforeBraces: Linux,
AllowShortIfStatementsOnASingleLine: false,
IndentCaseLabels: false,
AlignConsecutiveMacros: true
}
{
BasedOnStyle: WebKit,
UseTab: Never,
IndentWidth: 4,
TabWidth: 4,
AllowShortIfStatementsOnASingleLine: false,
ColumnLimit: 0,
DerivePointerAlignment: false,
PointerAlignment: Right,
AlignAfterOpenBracket: Align,
AlignConsecutiveMacros: true
}
參考連結 https://blog.csdn.net/whuer_xiaojie/article/details/105163144
相關文章
- Github Colilot VS Code設定Github
- 在 Visual Studio Code (VS Code) 中設定
- Vs Code Batch-runner 外掛設定BAT
- VS Code使用之基本設定與配置詳解
- VS Code 如何設定大小寫轉換快捷鍵
- 【Swing】UI外觀風格設定UI
- VS Code書寫vue專案配置 eslint+prettier 統一程式碼風格VueEsLint
- vs 2017 vs code
- 使用 VS Code 進行 Python 程式設計Python程式設計
- 我的VS CODE
- Debugging Ruby in VS Code
- vs code 外掛
- VS code on ubuntu 18.04Ubuntu
- Google C++ 程式設計風格指南:命名約定GoC++程式設計
- VS Code 中的增強 code CLI
- 像VS Code一樣,設定"用Cursor開啟" / 為Cursor新增右鍵選單
- UI培訓教程分享:UI設計如何確定設計風格UI
- VS code 簡單配置
- 強大的 VS Code
- VS Code 使用小技巧
- vs code 刪除空行
- VS Code開發TypeScriptTypeScript
- VS Code 1.74 釋出!
- VS Code 1.75 釋出!
- PyQT5之設定視窗控制元件風格QT控制元件
- C 語言程式碼風格之 Linux 核心程式碼風格Linux
- VS Code 提示 '未找到Git.請安裝Git,或在“git.path”設定中配置'Git
- Code Runner for VS Code,下載量突破 3000 萬!
- 部落格設定
- VS Code 快速使用指南
- 今天,VS Code 五歲了。
- VS code 外掛推薦
- VS Code外掛安裝
- 我將從VS Code切換到VS Codium
- 建立 SysV 風格的 linux daemon 程式Linux
- 定製不同風格的App主題APP
- 部落格初始設定
- Visual Studio Code常用設定及快捷鍵